|
|
Browse by Tags
All Tags » VB.NET » XML (RSS)
-
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 ...
-
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
-
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?
-
Can two different programming languages be mixed in a single ASPX file?
|
|
|