ASP.NET 3.5 C#
I very simply want to place the contents of a database field anywhere on a page without adding a bulky gridview, listview, formview, etc on a page? Is this possible? With classic asp you could just do this...
I very simply want to place the contents of a database field anywhere on a page without adding a bulky gridview, listview, formview, etc on a page? Is this possible? With classic asp you could just do this...
Code:
<%=(recordsetname.Fields.Item("databasefield").Value)%>
Comment