Click here to Skip to main content
15,906,626 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: Displaying a list of files in a directory with clickable link Pin
Not Active8-Jan-07 2:39
mentorNot Active8-Jan-07 2:39 
GeneralRe: Displaying a list of files in a directory with clickable link Pin
Omkar Ghaisas8-Jan-07 2:42
Omkar Ghaisas8-Jan-07 2:42 
GeneralRe: Displaying a list of files in a directory with clickable link Pin
Not Active8-Jan-07 3:04
mentorNot Active8-Jan-07 3:04 
Questionasp 2.0 wizard control Pin
P.P.K.Reddy8-Jan-07 0:52
P.P.K.Reddy8-Jan-07 0:52 
AnswerRe: asp 2.0 wizard control Pin
minhpc_bk8-Jan-07 8:59
minhpc_bk8-Jan-07 8:59 
QuestionSearch button Pin
nclauder8-Jan-07 0:25
nclauder8-Jan-07 0:25 
AnswerRe: Search button Pin
minhpc_bk8-Jan-07 8:38
minhpc_bk8-Jan-07 8:38 
GeneralRe: Search button Pin
nclauder8-Jan-07 18:54
nclauder8-Jan-07 18:54 
Thanks a lot,
What I was trying to say is that The datagrid updates very well, the text box and button I created them separetly not on the datagrid so that when the user writes the id the row that corresponds with the id in the textbox would be selected. I tryed this but it's not working do you think I'm on the write truck.

private void bttok_click(object sender, System.EventArgs e)
{
SqlCommand myCommand = new SqlCommand("select * from employee where txtname.text=id",con);
SqlDataAdapter myAdapter=new SqlDataAdapter(myCommand);
DataSet ds = new DataSet();
myAdapter.Fill(ds);
con.Open();
myCommand.ExecuteNonQuery();
datagrid1.DataSource=ds;
datagrid1.DataBind();
con.Close();
}
Thanks.
QuestionMe.IsValid Pin
Dayekh7-Jan-07 23:58
Dayekh7-Jan-07 23:58 
AnswerRe: Me.IsValid Pin
Electronic Screw8-Jan-07 0:22
Electronic Screw8-Jan-07 0:22 
GeneralRe: Me.IsValid Pin
Dayekh8-Jan-07 0:40
Dayekh8-Jan-07 0:40 
GeneralRe: Me.IsValid Pin
Haissam8-Jan-07 0:46
Haissam8-Jan-07 0:46 
GeneralRe: Me.IsValid Pin
Dayekh8-Jan-07 1:34
Dayekh8-Jan-07 1:34 
GeneralRe: Me.IsValid Pin
Dayekh8-Jan-07 4:16
Dayekh8-Jan-07 4:16 
QuestionStart ASP.NET State Service Programmatically Pin
John Gathogo7-Jan-07 23:00
John Gathogo7-Jan-07 23:00 
AnswerRe: Start ASP.NET State Service Programmatically Pin
seee sharp7-Jan-07 23:09
seee sharp7-Jan-07 23:09 
AnswerRe: Start ASP.NET State Service Programmatically Pin
enjoycrack7-Jan-07 23:50
enjoycrack7-Jan-07 23:50 
GeneralRe: Start ASP.NET State Service Programmatically Pin
John Gathogo8-Jan-07 0:16
John Gathogo8-Jan-07 0:16 
GeneralRe: Start ASP.NET State Service Programmatically Pin
RSArockiam8-Jan-07 1:24
RSArockiam8-Jan-07 1:24 
GeneralRe: Start ASP.NET State Service Programmatically Pin
John Gathogo8-Jan-07 2:08
John Gathogo8-Jan-07 2:08 
AnswerRe: Problem in Excel.Application Pin
deepaks38-Jan-07 7:43
deepaks38-Jan-07 7:43 
QuestionVisual Studio Setup and Deployment Projects Pin
John Gathogo7-Jan-07 22:49
John Gathogo7-Jan-07 22:49 
AnswerRe: Visual Studio Setup and Deployment Projects Pin
minhpc_bk8-Jan-07 8:34
minhpc_bk8-Jan-07 8:34 
AnswerRe: Excel in ASP Pin
Pete O'Hanlon7-Jan-07 22:52
mvePete O'Hanlon7-Jan-07 22:52 
QuestionTextBox Color Pin
varshavmane7-Jan-07 22:36
varshavmane7-Jan-07 22:36 

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.