Feeds:
Posts
Comments

Archive for the ‘ASP.NET’ Category

Emails are the important part of any web application to make an interaction between website and end users. I got many queries from my friends for “How to send emails in ASP.NET”, so I have created a sample email sending application in asp.net to give you an idea about email sending in asp.net. So take [...]

Read Full Post »

ASP.NET – Connecting asp.net to mysql database

This article wil tell you how to create a sample database in mysql and how to connect that database to an ASP.NET application……
read more | digg story

Read Full Post »

IntroductionHi, in this article I am going to explain you about the use of “radio button” control inside an “ASP.NET Grid View” control. This sounds that it’s easy to put the radio button inside a grid view control, but you are wrong it’s not easy as it sounds. There are many factors which makes this [...]

Read Full Post »

Introduction Hi, after a long time I am here with a new article. This article will tell you about the concept of Auto-complete in ASP.NET.

[...]

Read Full Post »

Introduction
Difference between Server.Transfer and Server.Execute.

Server.Transfer v/s Server.Execute

Both Server.Transfer and Server.Execute were introduced in Classic ASP 3.0 (and still work in ASP.NET).
When Server.Execute is used, a URL is passed to it as a parameter, and the control moves to this new page. Execution of code happens on the new page. Once code execution gets over, the [...]

Read Full Post »

Introduction
This article tell you the difference between Server.Transfer and Response.Redirect.

Server.Transfer v/s Response.Redirect
Both “Server” and “Response” are objects of ASP.NET. Server.Transfer and Response.Redirect both are used to transfer a user from one page to another page. Both are used for the same purpose but still there are some differences are there between both that are as [...]

Read Full Post »