Here, in the page load even of a blank page, put this in (C#):
LiteralControl lc = new LiteralControl("Hello");
this.Controls.Add(lc);
Or VB.Net (might not be exact on the dim statement):
Dim lc As LiteralControl = New LiteralControl("Hello")
Me.Controls.Add(lc)




Reply With Quote