where does the datagrid output go?

  • Thread starter Thread starter dwight0
  • Start date Start date
D

dwight0

I have various ASP.net forms and on most forms, on IE I can go to
"view source" and I can see the output of the data grid. However I
have a few different pages where I have a large amount of output and I
don't see any output in the view source. At first I thought it was
being truncated because it was too much data, but I do see the ending
body and html tags. I can see this data just fine in mozilla; I suppose
it's rendered differently for that browser. Does anyone know how the
info gets to the browser? I'm also using Smart Navigation.
 
I'm also using Smart Navigation.

And in there is the answere. When using smartnavigation asp.net uses an
iframe to render the page. So you are only seeing the main frame and not the
iframe with your datagridcontents.

Anders
 
Back
Top