Click here to Skip to main content
15,926,596 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: how can i get the value of ENTER key [modified] Pin
Jay_se10-Oct-06 3:35
Jay_se10-Oct-06 3:35 
GeneralRe: how can i get the value of ENTER key Pin
miniThomas10-Oct-06 19:46
miniThomas10-Oct-06 19:46 
GeneralRe: how can i get the value of ENTER key Pin
Jay_se10-Oct-06 21:35
Jay_se10-Oct-06 21:35 
GeneralRe: how can i get the value of ENTER key Pin
miniThomas11-Oct-06 23:42
miniThomas11-Oct-06 23:42 
GeneralRe: how can i get the value of ENTER key Pin
Jay_se12-Oct-06 0:02
Jay_se12-Oct-06 0:02 
QuestionmultiSelect in datagrid [modified] Pin
ptvce6-Oct-06 21:37
ptvce6-Oct-06 21:37 
Question{"This row already belongs to another table." } Pin
MHASSANF6-Oct-06 20:38
MHASSANF6-Oct-06 20:38 
AnswerRe: {"This row already belongs to another table." } Pin
Abhishek Joshi6-Oct-06 21:20
Abhishek Joshi6-Oct-06 21:20 
Traverse your 10 rows and while traversing create array of objects to store information of each field and insert this object to destination table.

eg. Source Table is dsTempSearchMemo and Destination is dtSearchSeizureTemp

//For Loop
object[] objVal = {
dsTempSearchMemo.Rows[j][0],
dsTempSearchMemo.Rows[j][1],
dsTempSearchMemo.Rows[j][2],
dsTempSearchMemo.Rows[j][3],
dsTempSearchMemo.Rows[j][4],
dsTempSearchMemo.Rows[j][5],
dsTempSearchMemo.Rows[j][6],
dsTempSearchMemo.Rows[j][7],
dsTempSearchMemo.Rows[j][8],
dsTempSearchMemo.Rows[j][9],
dsTempSearchMemo.Rows[j][10],
dsTempSearchMemo.Rows[j][11],
dsTempSearchMemo.Rows[j][12],
dsTempSearchMemo.Rows[j][13],
dsTempSearchMemo.Rows[j][14],
dsTempSearchMemo.Rows[j][15]
};

dtSearchSeizureTemp.Rows.Add(objVal);
Big Grin | :-D
AnswerRe: {"This row already belongs to another table." } Pin
Guffa7-Oct-06 1:27
Guffa7-Oct-06 1:27 
QuestionCommenting Standard Pin
Abhishek Joshi6-Oct-06 20:20
Abhishek Joshi6-Oct-06 20:20 
AnswerRe: Commenting Standard Pin
Mike Ellison7-Oct-06 3:53
Mike Ellison7-Oct-06 3:53 
Questionhelp me not insert in database Pin
isis_preaw6-Oct-06 19:31
isis_preaw6-Oct-06 19:31 
Questiondatagrid problem Pin
varuni656-Oct-06 17:53
varuni656-Oct-06 17:53 
AnswerRe: datagrid problem Pin
Jay_se6-Oct-06 21:14
Jay_se6-Oct-06 21:14 
GeneralRe: datagrid problem Pin
varuni656-Oct-06 21:54
varuni656-Oct-06 21:54 
AnswerRe: datagrid problem Pin
Jay_se7-Oct-06 2:54
Jay_se7-Oct-06 2:54 
GeneralRe: datagrid problem Pin
varuni6511-Oct-06 2:48
varuni6511-Oct-06 2:48 
Question(URGENT) Auto Generating Report Interface Pin
Yong Yau6-Oct-06 16:59
Yong Yau6-Oct-06 16:59 
QuestionGridView Button Field. Type = Link Pin
shapper6-Oct-06 16:55
shapper6-Oct-06 16:55 
QuestionGridView and Image Link Pin
shapper6-Oct-06 16:34
shapper6-Oct-06 16:34 
Questionasp:Panel with CheckBox added dynamically: persistence Pin
RicConte6-Oct-06 16:28
RicConte6-Oct-06 16:28 
AnswerRe: asp:Panel with CheckBox added dynamically: persistence Pin
Mike Ellison7-Oct-06 3:50
Mike Ellison7-Oct-06 3:50 
GeneralRe: asp:Panel with CheckBox added dynamically: persistence Pin
RicConte7-Oct-06 17:56
RicConte7-Oct-06 17:56 
GeneralRe: asp:Panel with CheckBox added dynamically: persistence Pin
Mike Ellison8-Oct-06 4:51
Mike Ellison8-Oct-06 4:51 
GeneralRe: asp:Panel with CheckBox added dynamically: persistence Pin
RicConte8-Oct-06 10:08
RicConte8-Oct-06 10:08 

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.