|
|
Browse by Tags
All Tags » VB.NET (RSS)
Showing page 1 of 2 (27 total posts)
-
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 ...
-
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 ...
-
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 ...
-
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 ...
-
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 ...
-
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 ...
-
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 ...
-
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 ...
-
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 ...
-
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 ...
-
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 ...
-
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 ...
-
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 ...
-
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 ...
-
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 ...
-
Post Comments under the respective category.
-
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
-
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?
-
Can I store my session state in a database other than tempdb, In SqlServer mode?
1
|
|
|