 |
What is an application domain?
In classic ASP there is no concept like Application domain .Application domain is a new security boundary concept in Dot Net. Process can be divided into multiple application domains. We know process level isolation that means if one process crash that will...
By sanjitsil
Last Message By shabbir
|
1 3,094 |
 |
The complexity of web sites has rapidly gone up from the past couple of years. Started as static web pages a decade ago, web pages today are data driven and data intensive monsters that require a lot of flexibility and processing power. If the same old methods have been used for writing today’s...
By coderzone
Last Message By shabbir
|
1 4,946 |
 |
What is Partial Page Rendering?
Partial page rendering is a concept of rendering only a portion of web a page instead of whole page and thus improve user experience and makes the response time quicker. It can be achieved using Ajax.
What is Ajax?
Ajax means "Asynchronous Javascript and...
By sanjitsil
Last Message By shabbir
|
2 5,060 |
 |
Introduction
A very common and extremely useful functionality in Web Developement is sending emails from a Web Application. Some of the very common purposes of sending emails from a web application are, to send feedback to the webmaster of a site or informing a forum member of new post in a...
By decodec
Last Message By haileyjonathan
|
2 8,445 |
 |
Uploading of File
When we are talking about uploading of file, we mean to say upload file physically and save into a particular location in server. We can also upload file that means save file into database. Let us first examine how we can upload file physically in a particular location in...
By sanjitsil
Last Message By shabbir
|
3 15,458 |
 |
Microsoft ASP.NET 3.5 and Visual Studio 2008 have given us a lot of new features in Web development and design. They include ASP.NET AJAX controls, new web controls, LINQ and improvement of Nested master page, CSS, JavaScript, addition of WPF,WCF and others which makes Web development easier and...
By sanjitsil
Last Message By shabbir
|
1 6,631 |
 |
What Is A Cookie
A cookie is a small text file sent to a web user's computer by a website. A cookie can be used to identify that user to the website on their next visit. Common uses include remembering login data, user preferences, and providing favorites lists.
How Does A Cookie Work
...
By pradeep
Last Message By zaanrider
|
2 13,834 |
 |
Everything you need comes with the .NET Framework. When you say you are trying to connect to SQL Server, you need to know a bit more than how to create a connection, but also how to return data and display it. Firstly, there are actually many ways to do this in .NET - some in code, some through...
By pradeep
Last Message By Mr Download
|
1 25,527 |
 |
This is an example of Server.Transfer and Context Handler. Through this we can get the multiple values of previous form.
In this page we are displaying data from previous form. We can use this technique for multiple form registration form.
Code (ContextParent.aspx.cs): -
private void...
By hanusoft
Last Message By narayan
|
3 18,729 |
 |
/// <summary>
/// This method retrieve the string to encrypt from the Presentation Layer
/// And return the Encrypted String
/// </summary>
/// <param name="str">
/// <returns>
public string encryptPassword(string strText)
{
return Encrypt(strText, "&%#@?,:*");
}
By hanusoftware
|
0 10,739 |
 |
Introduction
In this article we will examine how to parse an RSS feed via an ASP.NET Web page using DataGrid. You can read more about RSS Feeds
Getting the Remote XML Data Into a DataGrid
In order to display the data from the ASPMessageboard.com RSS feed, the first thing we...
By pradeep
Last Message By clocking
|
5 12,995 |
 |
This code has been used to encrypt and decrypt query string .No matter what the length of the url is ,this code will encrypt the key and the value the query string into 25 digit
using System;
using System.Collections.Generic;
using System.Text;
using System.Collections.Specialized;
using...
By hanusoftware
Last Message By pradeep
|
1 15,917 |
 |
Strings are integral to most app dev projects, so it is imperative that they don't impair performance. The .NET StringBuilder class streamlines string values processing. It's hard to find an application that doesn’t deal with text in some way. As a result, developers are faced with a variety of...
By coderzone
|
0 37,719 |
 |
The most glaring difference between Web and stand-alone applications is the disconnected nature of the Web. That is, a Web application isn't constantly connected (to a database server, application server, etc.), and a stand-alone application is. The constant server calls by the Web application can...
By coderzone
|
0 5,897 |
 |
Introduction
An error is an event; an exception is the object that the event creates. When the program flow is blocked by an error, then there should be a solution to overcome that which we could call as exception. These exceptions are classified as structured and unstructured exceptions. Error...
By Sanskruti
|
0 18,520 |