Click here to Skip to main content
15,888,287 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: data grid ..edit n update !! Pin
Michael Sync9-Nov-07 20:24
Michael Sync9-Nov-07 20:24 
GeneralRe: data grid ..edit n update !! Pin
rocky81114-Nov-07 5:50
rocky81114-Nov-07 5:50 
GeneralRe: data grid ..edit n update !! Pin
Michael Sync14-Nov-07 15:33
Michael Sync14-Nov-07 15:33 
Question"Operation could not be completed" error on save Pin
Kevin McFarlane9-Nov-07 5:41
Kevin McFarlane9-Nov-07 5:41 
QuestionHow to control the list shown under a textbox ? Pin
Big Ralph9-Nov-07 4:12
Big Ralph9-Nov-07 4:12 
AnswerRe: How to control the list shown under a textbox ? Pin
Michael Sync11-Nov-07 0:13
Michael Sync11-Nov-07 0:13 
QuestionGridView Edit.. Pin
Dio229-Nov-07 4:03
Dio229-Nov-07 4:03 
AnswerRe: GridView Edit.. Pin
Dio229-Nov-07 4:19
Dio229-Nov-07 4:19 
Nevermind. Smile | :) This is how I did it. If someone knows a better way, lemme know.
I created a button commandField with command "EditRow" and hooked up the RowCommand event.

<code>
protected void MainGrid_RowCommand(object sender, GridViewCommandEventArgs e)
{
   if (e.CommandName == "EditRow")
   {
    DataKey mykey = MainGrid.DataKeys[Convert.ToInt32(e.CommandArgument)];
    String mystring = Convert.ToString(mykey.Value);
    Page.Response.Redirect("Insert.aspx?key=" + mystring);
    }
}
</code>

Questionasp.net project info. Pin
i gr89-Nov-07 1:33
i gr89-Nov-07 1:33 
AnswerRe: asp.net project info. Pin
Paddy Boyd9-Nov-07 4:17
Paddy Boyd9-Nov-07 4:17 
AnswerRe: asp.net project info. Pin
Saksida Bojan9-Nov-07 6:50
Saksida Bojan9-Nov-07 6:50 
QuestionASP Email Script Not Working Pin
MelDrop9-Nov-07 1:18
MelDrop9-Nov-07 1:18 
AnswerWrong forum Pin
pmarfleet9-Nov-07 4:19
pmarfleet9-Nov-07 4:19 
QuestionError while replacing a file in use Pin
tonymathewt9-Nov-07 0:53
professionaltonymathewt9-Nov-07 0:53 
QuestionEmail in Asp.Net 2.0 Pin
freshonlineMax9-Nov-07 0:28
freshonlineMax9-Nov-07 0:28 
AnswerRe: Email in Asp.Net 2.0 Pin
Michael Sync9-Nov-07 0:33
Michael Sync9-Nov-07 0:33 
GeneralRe: Email in Asp.Net 2.0 Pin
freshonlineMax9-Nov-07 0:49
freshonlineMax9-Nov-07 0:49 
GeneralRe: Email in Asp.Net 2.0 Pin
Michael Sync9-Nov-07 1:10
Michael Sync9-Nov-07 1:10 
GeneralRe: Email in Asp.Net 2.0 Pin
freshonlineMax10-Nov-07 23:33
freshonlineMax10-Nov-07 23:33 
GeneralRe: Email in Asp.Net 2.0 Pin
Michael Sync11-Nov-07 0:05
Michael Sync11-Nov-07 0:05 
AnswerRe: Email in Asp.Net 2.0 Pin
Vasudevan Deepak Kumar9-Nov-07 0:45
Vasudevan Deepak Kumar9-Nov-07 0:45 
QuestionUncheck ASP.Net TreeView Checkboxes Pin
khuzwayom8-Nov-07 23:30
khuzwayom8-Nov-07 23:30 
AnswerRe: Uncheck ASP.Net TreeView Checkboxes Pin
Vasudevan Deepak Kumar9-Nov-07 0:43
Vasudevan Deepak Kumar9-Nov-07 0:43 
QuestionHttpHandler - dynamic images Pin
Chris_Green8-Nov-07 23:26
Chris_Green8-Nov-07 23:26 
AnswerRe: HttpHandler - dynamic images Pin
Vasudevan Deepak Kumar9-Nov-07 0:42
Vasudevan Deepak Kumar9-Nov-07 0:42 

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.