|
|
Browse by Tags
All Tags » ASP.NET (RSS)
Showing page 1 of 2 (27 total posts)
-
pragya_chaubisa:hi, can anyone tell me about session variable
and its use with example
You can save data in session variable for as long as the session is active. to add a value to session variable you can use Session.Add("SOMETHING","somevalue")
or you can also add it like
Session("Stocks") = "MSFT; ...
-
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 cut string using ASP.NET 2.0 and VB.NET 2005.
The tutorial use default namespace. The sampe will show you how to intercept the character string and restrict the character length. Moreover, it will automatically turn to the newline. In order to run the example, we will use the btn_cut_Click to trigger the ...
-
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 ...
-
This tutorial will show you how to navigate XML information items in ASP.NET 2.0 using C#. First, import the namespace of System.XML and System.XML.XPath
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 2.0 Data Model. In this sample, we will ...
-
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 ...
-
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 ...
-
AJAX, short for Asynchronous JavaScript And XML, isn't a technology but rather a grouping of technologies. AJAX uses a communication technology (typically SOAP and XML) to send and receive an asynchronous request/response to the server, and then leverages presentation technologies (JavaScript, DOM, HTML, and CSS) to process the response. ...
-
AJAX, short for Asynchronous JavaScript And XML, isn't a technology but rather a grouping of technologies. AJAX uses a communication technology (typically SOAP and XML) to send and receive an asynchronous request/response to the server, and then leverages presentation technologies (JavaScript, DOM, HTML, and CSS) to process the response. ...
-
With the XMLHttpRequest object, Microsoft Internet Explorer clients can retrieve and submit XML data directly to a Web server without reloading the page. To convert XML data into renderable HTML content, use the client-side XML DOM or Extensible Stylesheet Language Transformations (XSLT) to compose HTML elements for presentation.
This tutorial ...
-
the scenario is like that....
Normal asp.net application can fetch data of 9MB from server to client....and i wish to fetch data of 20 MB i.e. image folder...to dispaly crystal report.
so it gives the Server is unavailable Error....
-
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
|
|
|