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 [...]
Archive for the ‘ASP.NET’ Category
ASP.NET – How to send email in asp.net 2.0
Posted in ASP.NET, tagged asp.net, asp.net 2.0, asp.net mail, send email, system.net on June 20, 2009 | 3 Comments »
ASP.NET – Connecting asp.net to mysql database
Posted in ASP.NET on September 13, 2008 | Comments Off
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
ASP.NET – Using "radio button" inside grid view
Posted in ASP.NET on April 1, 2008 | 34 Comments »
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 [...]
ASP.NET – Concept of Auto-Complete in Asp.Net
Posted in ASP.NET on November 5, 2007 | 17 Comments »
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.
[...]
ASP.NET – Server.Transfer v/s Server.Execute
Posted in ASP.NET on October 14, 2007 | 20 Comments »
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 [...]
ASP.NET – Server.Transfer v/s Response.Redirect
Posted in ASP.NET on October 14, 2007 | 95 Comments »
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 [...]
