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   (RSS)
Showing page 1 of 2 (27 total posts)
  • 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
  • Building Site Navigation Menu using ASP.NET 2.0 and VB.NET

    This tutorial will show you how to use SiteMapPath with the Menu control to build up site navigation menu by using ASP.NET 2.0 and VB.NET. The controls of Menu, SiteMapPath and SiteMapDataSource can generate navigation UI based on navigation data. This data can be stored in XML files, or it can be stored using the provider-based storage ...
    Posted to ADO.Net (Weblog) by admin on February 2, 2008
  • How to use URL mapping in ASP.NET 2.0 and VB.NET

    This tutorial will show you how to use URL mapping technology in ASP.NET 2.0 and VB.NET. The URL mapping feature uses configuration information stored in web.config to remap incoming requests to a different URL. The remapping occurs prior to any other processing for the inbound request. Although the sample below demonstrates remapping a page ...
    Posted to ADO.Net (Weblog) by admin on February 2, 2008
  • A RSS Reader using ASP.NET 2.0 and VB.NET

    RSS Feed is very popular in Internet. This tutorial will show you how to create a RSS Reader using ASP.NET 2.0 and VB.NET. At first, import the namespace of System.Net, System.IO, and System.XmlImports System.Net Imports System.IO Imports System.Xml In this sample, we created a simple function to process the RSS feed from a sample URL. This ...
    Posted to ADO.Net (Weblog) by admin on February 2, 2008
  • Calculate average of data from XML using ASP.NET 2.0 and VB

    This tutorial will show you how to calculate average of data from XML using ASP.NET 2.0 and VB. This tutorial will show you how to calculate average of data from XML using ASP.NET 2.0 and C#. The System.Xml.XPath namespace contains the classes that define a cursor model for navigating and editing XML information items as instances of the XPath ...
    Posted to ADO.Net (Weblog) by admin on February 2, 2008
  • How to Send Email using ASP.NET 2.0 and VB.NET

    This tutorial will show you how to send a simple email message using ASP.NET 2.0 and VB.NET Sending a email using ASP.NET 2.0 and VB.NET is actually very simple. First, you will need to import the System.Net.Mail namespace. The System.Net.Mail namespace contains the SmtpClient and MailMessage Classes that we need in order to send the ...
    Posted to ADO.Net (Weblog) by admin on February 2, 2008
  • How to Send Email with Attachment using ASP.NET 2.0 and VB.NET

    This tutorial will show you how to send a simple email message with an attachment using ASP.NET 2.0 and VB.NET Sending a email with an attachment using ASP.NET 2.0 and VB.NET is actually very simple. First, you will need to import the System.Net.Mail namespace. The System.Net.Mail namespace contains the SmtpClient and MailMessage Classes that ...
    Posted to ADO.Net (Weblog) by admin on February 2, 2008
  • How to Send Email with CCs and BCCs using ASP.NET 2.0 and VB.NET

    This tutorial will show you how to send a simple email message with CCs and BCCs using ASP.NET 2.0 and VB.NET Sending a email with CCs and BCCs using ASP.NET 2.0 and VB.NET is actually very simple. First, you will need to import the System.Net.Mail namespace. The System.Net.Mail namespace contains the SmtpClient and MailMessage Classes that ...
    Posted to ADO.Net (Weblog) by admin on February 2, 2008
  • How to Send Email with Priorities using ASP.NET 2.0 and VB.NET

    This tutorial will show you how to send a simple email message with priorities using ASP.NET 2.0 and VB.NET Sending a email with Priorities using ASP.NET 2.0 and VB.NET is actually very simple. First, you will need to import the System.Net.Mail namespace. The System.Net.Mail namespace contains the SmtpClient and MailMessage Classes that we ...
    Posted to ADO.Net (Weblog) by admin on February 2, 2008
  • How to Send Email with Authentication using ASP.NET 2.0 and VB.NET

    This tutorial will show you how to send a simple email message with authentication using ASP.NET 2.0 and VB.NET Sending a email with Priorities using ASP.NET 2.0 and VB.NET is actually very simple. First, you will need to import the System.Net.Mail namespace. The System.Net.Mail namespace contains the SmtpClient and MailMessage Classes that ...
    Posted to ADO.Net (Weblog) by admin on February 2, 2008
  • How To Display Data using ASP.NET 2.0 and VB.NET

    This tutorial will show you how to display data using ASP.NET 2.0, a repeater control and VB.NET The Repeater control is a powerful tool and is easy to use. First, you will need to import the System.Data.SqlClient namespace. The System.Data.SqlClient namespace contains the SqlCommand and SqlConnection classes that we need in order to connect to ...
    Posted to ADO.Net (Weblog) by admin on February 2, 2008
  • A sample of operating XML data in ASP.NET 2.0(VB.NET)

    Microsoft .NET introduces a new suite of XML APIs built on industry standards such as DOM, XPath, XSD, and XSLT. The .NET Framework XML classes also offer convenience, better performance, and a more familiar programming model, tightly coupled with the new .NET data access APIs—ADO .NET. XmlWriter, XmlReader, and XmlNavigator classes and ...
    Posted to ADO.Net (Weblog) by admin on February 2, 2008
  • How to Save image to database in ASP.NET 2.0(C#)

    This tutorial will show you how to save image to a SQL database using ASP.NET and C#. This tutorial need the sample database provided by MS SQL. Database:Northwind  Table:Categories Please modify the connectionstring based on the environment of your computer. The sample as below: string strConnectionString = "Data ...
    Posted to ADO.Net (Weblog) by admin on February 2, 2008
  • 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
  • General Comments

    Post Comments under the respective category.
    Posted to asp.net Faqs (Forum) by admin on September 10, 2006
  • retrive values in datagrid if checkbox is selected

    check box is embed in the datagrid. if i selected the checkbox in one or two pages.after that i going to previous page which i was selected thecheckbox. but that time checkbox isd not selected. please give solutions
    Posted to Asp.Net General (Forum) by sugu on September 5, 2006
  • application domain?

    What is an application domain?
  • In VB.NET how do I access the runtime type object of a specified type from it's type name?

    In VB.NET how do I access the runtime type object of a specified type from it's type name?
    Posted to Framework Tips General (Forum) by Webdeveloper on August 31, 2006
  • Can I store my session state in a database other than tempdb, In SqlServer mode?

     Can I store my session state in a database other than tempdb, In SqlServer mode?
    Posted to Asp.net Session (Forum) by Webdeveloper on August 24, 2006
1 2 Next >
Powered by Community Server, by Telligent Systems