I think we have a problem..
I did a s you said, sure enough, I got the text but
no data grid. So we got some system bug?
Tom
Re: I think we have a problem..
Quote:
Originally posted by Tom Yasnowski
I did a s you said, sure enough, I got the text but
no data grid. So we got some system bug?
Tom
The same error as before ??
"components to debug are not on the server " ??
This sample is as simple as it gets. After this, I would say your setup on the server is hosed in some way.(again, copy to a single file with a ASPX extension)
If this doesn't work, take any error message and search at
MSDN at Micorsoft.com
<html>
<body>
<h3><font face="Verdana">Declaring Server Controls</font></h3>
This sample demonstrates how to declare the <asp:label> server control and
manipulate its properties within a page.
<p>
<hr>
<asp:label id="Message1" font-size="16" font-bold="true" forecolor="red" runat=server>This is Message One</asp:label>
<br>
<asp:label id="Message2" font-size="20" font-italic="true" forecolor="blue" runat=server>This is Message Two</asp:label>
<br>
<asp:label id="Message3" font-size="24" font-underline="true" forecolor="green" runat=server>This is Message Three</asp:label>
</body>
</html>