aspx form not loading.

  • Thread starter Thread starter DrNoose
  • Start date Start date
D

DrNoose

What would keep a aspx page that has been added to a local root
directory from not displaying with the rest of the web page. I have a
form that has a small "states" database and it won't display when I
click on the link to the page.

Any suggestions?

Thanks!
 
The first thing I would do is turn on tracing or write some context in the
page_load to see there is some exception in the page load.

--
Regards,
Alvin Bruney
------------------------------------------------------
Shameless author plug
Excel Services for .NET is coming...
OWC Black book on Amazon and
www.lulu.com/owc
Professional VSTO 2005 - Wrox/Wiley
 
Alvin said:
The first thing I would do is turn on tracing or write some context in the
page_load to see there is some exception in the page load.
As I said, I'm very new to this. How do I turn on tracing? I'm not sure
that there is anything in the page load. I have code for the submit &
reset buttons, but I believe they are under the vb portion of the code.

Please forgive my ignorance!

Thanks!
 
Alvin,
To turn on tracing at the page level add the following in your Page tag:

<%@ Page ... Trace="true" %>
 
Back
Top