Click here to Skip to main content
15,916,417 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: HTTP Hdlers Pin
Sathesh Sakthivel12-Jun-07 18:31
Sathesh Sakthivel12-Jun-07 18:31 
Questionhow to upload files from client file with out htmlinput file Pin
Vinod vbv12-Jun-07 18:24
Vinod vbv12-Jun-07 18:24 
AnswerRe: how to upload files from client file with out htmlinput file Pin
Sathesh Sakthivel12-Jun-07 18:29
Sathesh Sakthivel12-Jun-07 18:29 
GeneralRe: how to upload files from client file with out htmlinput file Pin
Vinod vbv12-Jun-07 18:36
Vinod vbv12-Jun-07 18:36 
GeneralRe: how to upload files from client file with out htmlinput file Pin
Sathesh Sakthivel12-Jun-07 18:39
Sathesh Sakthivel12-Jun-07 18:39 
GeneralRe: how to upload files from client file with out htmlinput file [modified] Pin
Vinod vbv12-Jun-07 20:26
Vinod vbv12-Jun-07 20:26 
GeneralRe: how to upload files from client file with out htmlinput file Pin
Chetan Ranpariya12-Jun-07 21:08
Chetan Ranpariya12-Jun-07 21:08 
Questionhow to convet XSD schema to database table Pin
PrakashBhaskar12-Jun-07 17:47
PrakashBhaskar12-Jun-07 17:47 
AnswerRe: how to convet XSD schema to database table Pin
Sathesh Sakthivel12-Jun-07 18:20
Sathesh Sakthivel12-Jun-07 18:20 
QuestionStored Procedure return more than one row Pin
J Liang12-Jun-07 17:20
J Liang12-Jun-07 17:20 
AnswerRe: Stored Procedure return more than one row Pin
Krish - KP12-Jun-07 18:09
Krish - KP12-Jun-07 18:09 
GeneralRe: Stored Procedure return more than one row Pin
Chetan Ranpariya12-Jun-07 19:44
Chetan Ranpariya12-Jun-07 19:44 
GeneralRe: Stored Procedure return more than one row Pin
J Liang13-Jun-07 15:37
J Liang13-Jun-07 15:37 
QuestionWeb Services Pin
Agyeman12-Jun-07 17:00
Agyeman12-Jun-07 17:00 
QuestionSession Management Pin
moomoooomoo12-Jun-07 16:27
moomoooomoo12-Jun-07 16:27 
AnswerRe: Session Management Pin
Sathesh Sakthivel12-Jun-07 17:12
Sathesh Sakthivel12-Jun-07 17:12 
QuestionDatabase results to Array? Pin
bjjonesey12-Jun-07 14:25
bjjonesey12-Jun-07 14:25 
AnswerRe: Database results to Array? Pin
Sameer Alibhai12-Jun-07 14:38
Sameer Alibhai12-Jun-07 14:38 
GeneralRe: Database results to Array? Pin
bjjonesey12-Jun-07 16:24
bjjonesey12-Jun-07 16:24 
Questiondisable tooltip for calendar control Pin
D.Sridhar12-Jun-07 11:39
D.Sridhar12-Jun-07 11:39 
QuestionHow to make row clickable DataGrid? Pin
kidus112-Jun-07 11:08
kidus112-Jun-07 11:08 
AnswerRe: How to make row clickable DataGrid? Pin
Chetan Ranpariya12-Jun-07 19:54
Chetan Ranpariya12-Jun-07 19:54 
Hi,

You want to execute any server code on click of the row in datagrid?

If you want to use javascript then you can write follwing code in ItemDataBound event of Datagrid.

if(e.Item.ItemType == ListItemType.Item || e.Item.ItemType == ListItem.AlternatingItem)
{
e.Item.Attributes.Add("onclick", "urjavascriptfunction");
}

I hope this will help you.

Thanks and Regards,
Chetan Ranpariya

AnswerRe: How to make row clickable DataGrid? Pin
kumarjammula12-Jun-07 23:24
kumarjammula12-Jun-07 23:24 
QuestionHow can I programmatically retrieve the app_data path Pin
MBursill12-Jun-07 8:00
MBursill12-Jun-07 8:00 
AnswerRe: How can I programmatically retrieve the app_data path Pin
Not Active12-Jun-07 8:10
mentorNot Active12-Jun-07 8:10 

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.