Asp.net, vb.net, C#.net Resources

Welcome to Asp.net, vb.net, C#.net Resources Sign in | Join | Help
in Search

Browse by Tags

All Tags » VB.NET » C#   (RSS)
  • Sharing Code Between Pages using ASP.NET 2.0 and VB.NET

    This tutorial will show you how to share code between pages using ASP.NET 2.0 and VB.NET. Although you can place code inside each page within your site (using the inline or code-behind separation models described in the previous section), there are times when you will want to share code across several pages in your site. It would be inefficient ...
    Posted to ADO.Net (Weblog) by admin on February 2, 2008
  • Re: How to read data from the XML file using FileStream?

    How to read data from an XML file and display it in a DataGrid? VB.NET dim ds as new DataSet() ds.ReadXml (Server.MapPath ("products.xml")) DataGrid1.DataSource =ds DataGrid1.DataBind() C# DataSet ds= new DataSet (); ds.ReadXml (Server.MapPath ("products.xml")); DataGrid1.DataSource =ds; DataGrid1.DataBind(); How ...
    Posted to XML and the .NET Framework (Forum) by admin on September 13, 2006
Powered by Community Server, by Telligent Systems