CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: boobface2009

Search: Search took 0.02 seconds.

  1. Replies
    2
    Views
    7,575

    Re: Save real-time data in client PC

    you already have the data saved on the client machine in the textbox where it is displayed... all you need to do is make sure it doesnt reload for 10 seconds... like this:

    call "ReloadTextVal()"...
  2. Re: IE window.onload firing too early!! before page completely loads

    Just so everyone knows, if you want to run local tests on your own all the script, css & image references contain the full virtual path so you can view the source and save it as html file on your...
  3. Re: IE window.onload firing too early!! before page completely loads

    well window.addEventListener only works in FireFox and my problem is with the IE browser.

    right now I already am attaching to the onload event with window.onload (IEs event subscription...
  4. Re: IE window.onload firing too early!! before page completely loads

    Hey Danny, thanks for the reply. My problem is that the window.onload event is supposed to fire after the document, its images, scripts, styles, and all other refrenced files are completely loaded on...
  5. Re: IE window.onload firing too early!! before page completely loads

    I hope everyone is aware that you must have the show javascript errors option enabled in the internet options window to see this error message in Inernet Explorer...
  6. Re: How to Refresh the UserControl not the Whole Page In ASP.net

    As far as I know there is no way to reload a particular part of any page without using some type of independent HTTP request such as Ajax or a Web Service. If you post back it will always reload the...
  7. Replies
    2
    Views
    8,994

    Re: Ajax - Fetching Records from DB

    Another great part about this is that the grid retrieved via ajax will interact with the server side code running on the page the original grid is embeded as long as both grids are give the ID...
  8. Replies
    1
    Views
    6,759

    Re: ajax pc mobile

    You could do something like this - atleast pass the names of the files to be syncronized via ajax from one machine to the other and then innitiate a typical download. It seems pretty elaborate to me...
  9. Replies
    2
    Views
    8,994

    Re: Ajax - Fetching Records from DB

    I'm not sure how to bind to a datagrid that's already rendered on the page through AJAX. I do have a similar alternative to propose

    You could:
    Replace the entire rendered grid control with an...
  10. IE window.onload firing too early!! before page completely loads

    There wasn't a plain javascript forums so I figured this to be the most appropriate place for this thread.

    I have a page that runs a script on the window.onload event. My problem is that when the...
Results 1 to 10 of 10





Click Here to Expand Forum to Full Width

Featured