Click here to Skip to main content
15,891,009 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: Gridview in UpdatePanel (AJAX) Pin
Lash2027-Feb-09 5:28
Lash2027-Feb-09 5:28 
Questionprojects that is developed using microsoft office sharepoint Pin
valli rajya lakshmi26-Feb-09 9:58
valli rajya lakshmi26-Feb-09 9:58 
AnswerRe: projects that is developed using microsoft office sharepoint Pin
led mike26-Feb-09 10:07
led mike26-Feb-09 10:07 
GeneralRe: projects that is developed using microsoft office sharepoint Pin
Jim Crafton26-Feb-09 11:07
Jim Crafton26-Feb-09 11:07 
QuestionLooking for ASP.NET web toolkit databind to image sqlserver Pin
John Schuster26-Feb-09 8:32
John Schuster26-Feb-09 8:32 
AnswerRe: Looking for ASP.NET web toolkit databind to image sqlserver Pin
Christian Graus26-Feb-09 8:46
protectorChristian Graus26-Feb-09 8:46 
QuestionDataKey from a gridview Pin
Malayil alex26-Feb-09 8:04
Malayil alex26-Feb-09 8:04 
AnswerRe: DataKey from a gridview Pin
ToddHileHoffer26-Feb-09 9:16
ToddHileHoffer26-Feb-09 9:16 
Use the gridviews rowdatabound event.
protected void GridView1_RowDataBound(object sender, GridViewRowEventArgs e)
   {

       // on each row which is DataRow populate dropdown lists
       if (e.Row.RowType == DataControlRowType.DataRow)
       {



           Button Button1 = (Button)e.Row.FindControl("Button1");


           //could be dbdatarecords (for datareader) or other object You may have to modify this
           DataRowView drv = (DataRowView)e.Row.DataItem;

          // Add values to button
         Button1.attributes.add("id", dvr["id"].tostring());
         }
     }



I didn't get any requirements for the signature


GeneralRe: DataKey from a gridview Pin
Malayil alex26-Feb-09 9:46
Malayil alex26-Feb-09 9:46 
GeneralRe: DataKey from a gridview Pin
ToddHileHoffer26-Feb-09 10:17
ToddHileHoffer26-Feb-09 10:17 
GeneralRe: DataKey from a gridview Pin
Malayil alex26-Feb-09 12:21
Malayil alex26-Feb-09 12:21 
GeneralRe: DataKey from a gridview Pin
ToddHileHoffer26-Feb-09 13:17
ToddHileHoffer26-Feb-09 13:17 
GeneralRe: DataKey from a gridview Pin
Malayil alex26-Feb-09 13:41
Malayil alex26-Feb-09 13:41 
QuestionHow to Create web widgets with ASP.net ? Pin
rok_00726-Feb-09 6:31
rok_00726-Feb-09 6:31 
AnswerRe: How to Create web widgets with ASP.net ? Pin
Calin Tatar26-Feb-09 8:00
Calin Tatar26-Feb-09 8:00 
GeneralRe: How to Create web widgets with ASP.net ? Pin
Calin Tatar26-Feb-09 8:09
Calin Tatar26-Feb-09 8:09 
GeneralRe: How to Create web widgets with ASP.net ? Pin
rok_00726-Feb-09 14:36
rok_00726-Feb-09 14:36 
QuestionWhy my TreeNodePopulate of TreeView contol is not fired? Pin
kmuthuk26-Feb-09 5:28
kmuthuk26-Feb-09 5:28 
AnswerRe: Why my TreeNodePopulate of TreeView contol is not fired? Pin
Calin Tatar26-Feb-09 5:33
Calin Tatar26-Feb-09 5:33 
GeneralRe: Why my TreeNodePopulate of TreeView contol is not fired? Pin
kmuthuk26-Feb-09 6:06
kmuthuk26-Feb-09 6:06 
QuestionRPC service unavailable Pin
Armandt__26-Feb-09 5:01
Armandt__26-Feb-09 5:01 
QuestionUnable to delete row from dataset Pin
Chetan_pawar26-Feb-09 4:11
Chetan_pawar26-Feb-09 4:11 
Questionhow to pass null values to the data type of integer? Pin
keyur satyadev26-Feb-09 2:30
keyur satyadev26-Feb-09 2:30 
AnswerRe: how to pass null values to the data type of integer? Pin
J4amieC26-Feb-09 3:04
J4amieC26-Feb-09 3:04 
AnswerRe: how to pass null values to the data type of integer? Pin
Abhishek Sur26-Feb-09 3:51
professionalAbhishek Sur26-Feb-09 3:51 

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.