Click here to Skip to main content
15,889,211 members
Home / Discussions / Web Development
   

Web Development

 
QuestionAutometic software updation process Pin
Elena200612-Jun-07 19:00
Elena200612-Jun-07 19:00 
AnswerRe: Autometic software updation process Pin
Sathesh Sakthivel12-Jun-07 19:41
Sathesh Sakthivel12-Jun-07 19:41 
AnswerRe: Autometic software updation process Pin
Pete O'Hanlon13-Jun-07 2:29
mvePete O'Hanlon13-Jun-07 2:29 
AnswerRe: Autometic software updation process Pin
Vasudevan Deepak Kumar15-Jun-07 3:45
Vasudevan Deepak Kumar15-Jun-07 3:45 
QuestionHow can I created a row clickabe GridView? Pin
kidus1212-Jun-07 16:04
kidus1212-Jun-07 16:04 
AnswerRe: How can I created a row clickabe GridView? Pin
szukuro12-Jun-07 22:09
szukuro12-Jun-07 22:09 
GeneralRe: How can I created a row clickabe GridView? Pin
kidus113-Jun-07 2:45
kidus113-Jun-07 2:45 
GeneralRe: How can I created a row clickabe GridView? Pin
szukuro13-Jun-07 3:57
szukuro13-Jun-07 3:57 
The GridView's rows are not clickable by default. The only way to change that is to add javascript code for the onclick event to the rows. Even if you want to get the click event on the server because you need a postback to get to the server and you can only achieve is in javascript (at least in this scenario). So for server-side processing tha page needs to implement the IPostBackEventHandler interface add contain two method similiar to these:
protected void GridView1_RowDataBound(object sender, GridViewRowEventArgs e)
{
    e.Row.Attributes.Add("onclick", ClientScript.GetPostBackEventReference(this, e.Row.ClientID));
}

public void RaisePostBackEvent(string eventArgument)
{
   //the eventArgument will contain the ClientID of the row you clicked on, so you can
   //identify the row, if needed
}

GeneralRe: How can I created a row clickabe GridView? Pin
kidus113-Jun-07 8:06
kidus113-Jun-07 8:06 
QuestionWEBCHARTVIEWER Pin
hifiger200412-Jun-07 4:58
hifiger200412-Jun-07 4:58 
QuestionMS Sharepoint Folders Pin
progman11-Jun-07 22:58
progman11-Jun-07 22:58 
QuestionJavaScript Higtlight Pin
Socheat.Net11-Jun-07 22:19
Socheat.Net11-Jun-07 22:19 
QuestionAudio streaming using AJAX? Pin
jadeqy11-Jun-07 20:08
jadeqy11-Jun-07 20:08 
AnswerRe: Audio streaming using AJAX? Pin
Johnny ²11-Jun-07 22:26
Johnny ²11-Jun-07 22:26 
QuestionAjax Pin
jadeqy11-Jun-07 19:07
jadeqy11-Jun-07 19:07 
AnswerRe: Ajax Pin
Christian Graus12-Jun-07 17:04
protectorChristian Graus12-Jun-07 17:04 
QuestionAccordion Control Pin
devil8511-Jun-07 13:47
devil8511-Jun-07 13:47 
QuestionAsp Website asynchronous calling of other IP device Pin
Reanalyse11-Jun-07 12:37
Reanalyse11-Jun-07 12:37 
AnswerRe: Asp Website asynchronous calling of other IP device Pin
Reanalyse11-Jun-07 15:28
Reanalyse11-Jun-07 15:28 
Question407 proxy authentication requiredd Pin
sujithapril11-Jun-07 5:12
sujithapril11-Jun-07 5:12 
QuestionASP Database grid control error Pin
mon_Dip11-Jun-07 1:11
mon_Dip11-Jun-07 1:11 
QuestionPrint settings on the web page... Pin
pradeep kumarappagari10-Jun-07 22:23
pradeep kumarappagari10-Jun-07 22:23 
AnswerRe: Print settings on the web page... Pin
Guffa11-Jun-07 8:50
Guffa11-Jun-07 8:50 
GeneralRe: Print settings on the web page... Pin
pradeep kumarappagari14-Jun-07 20:53
pradeep kumarappagari14-Jun-07 20:53 
AnswerRe: Print settings on the web page... Pin
Guffa15-Jun-07 8:24
Guffa15-Jun-07 8:24 

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.