Click here to Skip to main content
15,894,017 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: Mail in spam box Pin
iamdking13-Jan-10 0:47
iamdking13-Jan-10 0:47 
AnswerRe: Mail in spam box Pin
elizas13-Jan-10 0:58
elizas13-Jan-10 0:58 
QuestionHandling ADO Pin
Mohamed Asane12-Jan-10 22:57
Mohamed Asane12-Jan-10 22:57 
AnswerMessage Removed Pin
12-Jan-10 23:36
professionalPranay Rana12-Jan-10 23:36 
GeneralRe: Handling ADO Pin
Mohamed Asane12-Jan-10 23:55
Mohamed Asane12-Jan-10 23:55 
AnswerRe: Handling ADO Pin
Abhishek Sur12-Jan-10 23:57
professionalAbhishek Sur12-Jan-10 23:57 
GeneralRe: Handling ADO Pin
Mohamed Asane13-Jan-10 0:08
Mohamed Asane13-Jan-10 0:08 
AnswerRe: Handling ADO Pin
Pranay Rana13-Jan-10 0:02
professionalPranay Rana13-Jan-10 0:02 
i think its better to close connection as your task of fetching record is completed because its feature of ado.net disconnected framework

for that below code is better tech.


the best way is use of using block

using(connectionobject)
{
// perform database related transaction here
}

its close your connection once it get executed successfully

or

use

try
{
}
finally
{
connectionobj.close();
}
GeneralRe: Handling ADO Pin
Mohamed Asane13-Jan-10 0:07
Mohamed Asane13-Jan-10 0:07 
QuestionPost back in asp button Pin
Hema Bairavan12-Jan-10 22:48
Hema Bairavan12-Jan-10 22:48 
AnswerRe: Post back in asp button Pin
Brij12-Jan-10 23:11
mentorBrij12-Jan-10 23:11 
GeneralRe: Post back in asp button [modified] Pin
Hema Bairavan12-Jan-10 23:17
Hema Bairavan12-Jan-10 23:17 
GeneralRe: Post back in asp button Pin
Brij12-Jan-10 23:49
mentorBrij12-Jan-10 23:49 
AnswerRe: Post back in asp button Pin
Pranay Rana12-Jan-10 23:30
professionalPranay Rana12-Jan-10 23:30 
AnswerRe: Post back in asp button Pin
April Fans18-Jan-10 15:14
April Fans18-Jan-10 15:14 
QuestionSilverlight error in asp.net aplication Pin
Amit Patel198512-Jan-10 22:36
Amit Patel198512-Jan-10 22:36 
Questionretrieve current row values from sqldatasource Pin
mary_sa12-Jan-10 22:30
mary_sa12-Jan-10 22:30 
AnswerRe: retrieve current row values from sqldatasource Pin
Herman<T>.Instance13-Jan-10 1:57
Herman<T>.Instance13-Jan-10 1:57 
GeneralRe: retrieve current row values from sqldatasource Pin
mary_sa13-Jan-10 7:42
mary_sa13-Jan-10 7:42 
QuestionHow to show Last,Current and Next monts on a calendar control Pin
Vinay Babu12-Jan-10 22:05
Vinay Babu12-Jan-10 22:05 
AnswerRe: How to show Last,Current and Next monts on a calendar control Pin
Brij12-Jan-10 22:57
mentorBrij12-Jan-10 22:57 
QuestionSending SMS using ASP.net C# Pin
veon cheng12-Jan-10 20:52
veon cheng12-Jan-10 20:52 
AnswerRe: Sending SMS using ASP.net C# Pin
Samarjeet Singh@india12-Jan-10 21:00
Samarjeet Singh@india12-Jan-10 21:00 
GeneralRe: Sending SMS using ASP.net C# Pin
veon cheng12-Jan-10 21:17
veon cheng12-Jan-10 21:17 
GeneralRe: Sending SMS using ASP.net C# Pin
gml080312-Jan-10 21:21
gml080312-Jan-10 21:21 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.