Click here to Skip to main content
15,919,341 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: Generated RSS Feed and firefox Pin
ednrgc10-Jan-07 1:42
ednrgc10-Jan-07 1:42 
GeneralRe: Generated RSS Feed and firefox Pin
WillemM10-Jan-07 2:39
WillemM10-Jan-07 2:39 
AnswerOT Pin
Jon Sagara10-Jan-07 4:30
Jon Sagara10-Jan-07 4:30 
GeneralRe: OT Pin
WillemM10-Jan-07 4:32
WillemM10-Jan-07 4:32 
GeneralRe: OT Pin
Jon Sagara11-Jan-07 12:27
Jon Sagara11-Jan-07 12:27 
Questionselecting one row from datagrid Pin
nclauder10-Jan-07 0:07
nclauder10-Jan-07 0:07 
AnswerRe: selecting one row from datagrid Pin
Guffa10-Jan-07 0:32
Guffa10-Jan-07 0:32 
GeneralRe: selecting one row from datagrid Pin
nclauder10-Jan-07 0:41
nclauder10-Jan-07 0:41 
thanks Guffa,
I have the code for cthin the Error. actually the whole code is here below.

try
{
con.Open();
SqlCommand myCommand = new SqlCommand("SELECT * from employee where fullname Like %+txtname+%" ,con);

SqlDataAdapter myAdapter=new SqlDataAdapter(myCommand);
DataSet ds = new DataSet();
myAdapter.Fill(ds,"isp_email.staff");
con.Open();
myCommand.ExecuteNonQuery();
dgupdate.DataSource=ds;
dgupdate.DataBind();
con.Close();

}
catch(Exception err)
{
Console.WriteLine(err.Message);
}
finally
{
con.Close();
}
Thanks
QuestionOutputCache a WebControl Pin
theJazzyBrain9-Jan-07 23:53
theJazzyBrain9-Jan-07 23:53 
AnswerRe: OutputCache a WebControl Pin
minhpc_bk10-Jan-07 1:07
minhpc_bk10-Jan-07 1:07 
Questionhow to increase the speed of image in asp.net? Pin
sathyan_82949-Jan-07 22:51
sathyan_82949-Jan-07 22:51 
AnswerRe: how to increase the speed of image in asp.net? Pin
enjoycrack9-Jan-07 22:59
enjoycrack9-Jan-07 22:59 
AnswerRe: how to increase the speed of image in asp.net? Pin
ednrgc10-Jan-07 1:44
ednrgc10-Jan-07 1:44 
QuestionDIV onclick postback - how to identify on the server side? Pin
Chris Buckett9-Jan-07 22:40
Chris Buckett9-Jan-07 22:40 
AnswerRe: DIV onclick postback - how to identify on the server side? Pin
enjoycrack9-Jan-07 23:02
enjoycrack9-Jan-07 23:02 
AnswerRe: DIV onclick postback - how to identify on the server side? Pin
minhpc_bk9-Jan-07 23:53
minhpc_bk9-Jan-07 23:53 
GeneralRe: DIV onclick postback - how to identify on the server side? Pin
Chris Buckett9-Jan-07 23:59
Chris Buckett9-Jan-07 23:59 
QuestionValidation expression Pin
gonmor9-Jan-07 22:20
gonmor9-Jan-07 22:20 
AnswerRe: Validation expression Pin
_mubashir10-Jan-07 0:24
_mubashir10-Jan-07 0:24 
GeneralRe: Validation expression Pin
gonmor10-Jan-07 0:31
gonmor10-Jan-07 0:31 
GeneralRe: Validation expression Pin
minhpc_bk10-Jan-07 1:00
minhpc_bk10-Jan-07 1:00 
AnswerRe: Validation expression Pin
varuni6510-Jan-07 1:24
varuni6510-Jan-07 1:24 
GeneralRe: Validation expression Pin
gonmor11-Jan-07 23:08
gonmor11-Jan-07 23:08 
Questionsend email and also Message on mobile no through ASP.NET webapplication Pin
Abdul Manan9-Jan-07 22:09
Abdul Manan9-Jan-07 22:09 
AnswerRe: send email and also Message on mobile no through ASP.NET webapplication Pin
enjoycrack9-Jan-07 23:06
enjoycrack9-Jan-07 23:06 

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.