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 » .Net 1.1   (RSS)
  • Making SQL transaction in DB using ASP.NET 2.0 and VB

    In this tutorial, we will show you how to make a Transact-SQL transaction in a SQL Server database. We will use ASP.NET 2.0 and VB.NET in the sample. First, import the namespace of System.Data.SqlClient. The System.Data.SqlClient namespace is the.NET Framework Data Provider for SQL Server. The.NET Framework Data Provider for SQL Server describes a ...
    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