Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Andrzejek on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. Denster

    Creating patch with wix installer

    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...
  2. Denster

    IE10 server side rendering issues

    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...
  3. Denster

    IE10 server side rendering issues

    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...
  4. Denster

    Setting up dynamic class to change properties

    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)...
  5. Denster

    IE10 server side rendering issues

    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...
  6. Denster

    Embedded word doc in widows form

    Ok thanks - You would think over the years Microsoft would want to make things easier for developers, not harder!
  7. Denster

    Embedded word doc in widows form

    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...
  8. Denster

    Set data in jquery plugin

    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...
  9. Denster

    Clear cache on code changes

    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.
  10. Denster

    Clear cache on code changes

    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...
  11. Denster

    Update column in gridview using javascript

    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...
  12. Denster

    Invoke a button click event?

    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
  13. Denster

    file upload control

    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...
  14. Denster

    FileUpload control resending

    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...
  15. Denster

    FileUpload control resending

    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...
  16. Denster

    Drop down list does not fire selectedindexchanged

    Do you have a page load event perhaps that is resetting the combo box on postback?
  17. Denster

    Help converting .asp page to .aspx.

    Are you using visual studio to build the aspx pages?
  18. Denster

    Ajax calender control extender displaying year format

    Its part of the standard ajax control toolkit from microsoft - http://www.asp.net/ajax. Already tried their site but no joy.
  19. Denster

    Ajax calender control extender displaying year format

    Theres a clue in the title AJAX CALENDER CONTROL
  20. Denster

    Ajax calender control extender displaying year format

    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...

Part and Inventory Search

Back
Top