Page render

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

HI All,

Iam using Visual Studio 2005 VB.net to develop a web application. I am
having some issues with the page display. I have to actually move the mouse
to get the web page to display . If I dont move the mouse I dont see anything
displayed.
I am not sure why this is happening. At first I thought it might be because
of amount of data that gets stored in viewstate. I set the enabled viewstate
to false and still the page is not displaying without moving the mouse . I am
not able to find help online . I did read couple of forums where this issue
was mentioned.

Any ideas?

Thanks in advance
 
You should look at using Ajax Pro for .NET (free) with plenty of examples on
the howto(s) out on Google or Dogpile.com for VB and C#, Javascript and HTML
controls.

The thing now in .Net Web developemnt is to move away from using ASP.Net
controls on the ASP.aspx -- no Postback. You use the Code Behind File that
executes functions, like data access, object manipulation, etc, which are
called by Ajax using Javascript.

HTML controls, Ajax Pro for .Net and Javascript are used with no controls on
the aspx. The aspx and the Code Behind File are only used for backend
processing.

Duane :)
 
Back
Top