Not sure if this is the right place to put this, but struggling to find any support for the wix installer.
Iv followed the tutorials from start to finish and can successfully create patches in the main application.
However the problem comes when I need to create a patch in a dependant dll and...
Major breakthrough! found this link that describes my problem perfectly http://www.hanselman.com/blog/BugAndFixASPNETFailsToDetectIE10CausingDoPostBackIsUndefinedJavaScriptErrorOrMaintainFF5ScrollbarPosition.aspx.
You can get to the hotfix from here as well, it does say it isnt a fully tested...
Thanks for the link, I'v had a quick look - theres a lot to try. I do have a lot of conditional comments in the markup for browser compatibility, could this realy make that much difference. Anyway I'll keep trying, I did find out by putting - ClientTarget="uplevel" - in the @page directive cures...
Not sure I fully understand but couldnt you just do a GetType on the variable passed in to the property then have a separate function within for each type - this is vb code but you get the gist
eg:
Select Case VariableName.GetType
Case GetType(Integer)...
I am having major .NET rendering issues when veiwing the website in IE10.
The wierd thing is the website works fine when publishing localy but get different results when uploaded to the server - but only in IE10! The most obvious problem is that it seems to remove any inline css : if you go to...
After much trial and error trying to get all the functionality of word into a windows form, decided the best approach is the api calls and parenting an instance of word to a panel control. Its more or less working but getting weird redraw issues and also having to close and reopen the active...
I'm writing a jquery plugin that manipulates data passed to it. Is there any way of setting the data on the calling element. For example my calling method would be
$('#elementID').myplugin({formData:data})
Then within the plugin I want to do something like this
$(this).data('result','value I...
Ah yes - never thought of that. Suppose thats why the jquery core files have the version number at the end. I do have some javasript at the top of the actual page but looks like I need to strip this out and keep it separate. Thanks for the solution.
What is considered the norm when changing javascript/jquery code on a live site? Obviously the changes wont be noticable to previous visitors until they clear their cache. Iv had big problems in the past where entire pages have crashed becuase Im inserting markup in the code behind, but the...
I have a gridview displaying various items, one of these being a drop down box for the user to select something. I want to display an icon next to combo box depending on the selected value. I can do this in the code behind on the grids click event but this messes up the tab order of the rows. I...
You can also have multiple handlers and separate with commas!
Private Sub Button1_Click(obj As Sender, e As EventArgs) Handles Button1.Click, Button2.Click
Call DoSomething
End Sub
Private Sub DoSomething()
'Do Something here
End Sub
Is it me or is the file upload control really unfriendly. I need a way of just displaying the button to throw up a dialog box then redirect to another page if something is selected. So far I have managed to slap an image over the fileupload control using css which triggers the dialog box. After...
To get round this I thought it might be a good idea to popup a separate window with the javascript function - window.open(). This all works fine but to close it I use the self.close function, how on earth can I refresh the original page to show the file I've just uploaded. This is causing me so...
Does anyone know how to avoid this problem using the file upload control. Everything works fine and uploads as it should, however if a link is clicked to navigate away from the page then click the back button on the browser I get a page expired and a retry message box. If I click OK the file...
I have an Ajax control on the page that is working ok. However when I want to select the previous or next month using the small arrows it display the year grid. Its as though the year in the top row is too wide and is overlapping the arrows so it looks like I'm clicking the arrows but the year...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.