Click here to Skip to main content
15,915,336 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: The transport failed to connect to the server. Pin
alexito196526-May-09 7:45
alexito196526-May-09 7:45 
AnswerRe: The transport failed to connect to the server. Pin
Manas Bhardwaj26-May-09 10:32
professionalManas Bhardwaj26-May-09 10:32 
QuestionHi - Why does the javascript in this asp.net tutorial not work in firefox 3? Pin
hardboy11126-May-09 7:11
hardboy11126-May-09 7:11 
AnswerRe: Hi - Why does the javascript in this asp.net tutorial not work in firefox 3? Pin
sarang_k26-May-09 16:42
sarang_k26-May-09 16:42 
Questiondesigner generated hidden code Pin
bolly-8126-May-09 6:54
bolly-8126-May-09 6:54 
AnswerRe: designer generated hidden code Pin
Manas Bhardwaj26-May-09 10:34
professionalManas Bhardwaj26-May-09 10:34 
Questiongridview binding Pin
jainiraj26-May-09 6:51
jainiraj26-May-09 6:51 
AnswerRe: gridview binding Pin
Tuwing.Sabado26-May-09 15:37
Tuwing.Sabado26-May-09 15:37 
use the HTML name attributre as place holder for other value.

<br />
    protected void GridView1_RowDataBound(object sender, GridViewRowEventArgs e)<br />
    {<br />
        CheckBox chk = new CheckBox();<br />
        // use name html attribute as your ID placeholder<br />
        chk.Attributes.Add("name", e.Row.Cells[100].Text); //e.Row.Cells[100].Text is my column id <br />
        e.Row.Cells[0].Controls.Add(chk);<br />
<br />
    }<br />
<br />
    protected void Button1_Click(object sender, EventArgs e)<br />
    {<br />
        Int16 count = (Int16)GridView1.Rows.Count;<br />
        for (Int16 i = 1; i < count; i++)<br />
        {<br />
            CheckBox chk = (CheckBox)GridView1.Rows[i].Cells[0].Controls[1];<br />
            //get the value of attribute name.<br />
            string id = CheckBox3.Attributes["name"];<br />
        }<br />
    }<br />


happy coding..
GeneralRe: gridview binding Pin
jainiraj26-May-09 18:07
jainiraj26-May-09 18:07 
QuestionCompositeControl with dynamic controls Pin
cgreathouse26-May-09 5:40
cgreathouse26-May-09 5:40 
QuestionHow to concate various controls data into a TextBox Pin
Pawan Kiran26-May-09 5:27
Pawan Kiran26-May-09 5:27 
AnswerRe: How to concate various controls data into a TextBox Pin
Manas Bhardwaj26-May-09 10:39
professionalManas Bhardwaj26-May-09 10:39 
GeneralRe: How to concate various controls data into a TextBox Pin
Pawan Kiran27-May-09 0:28
Pawan Kiran27-May-09 0:28 
AnswerRe: How to concate various controls data into a TextBox Pin
Tuwing.Sabado26-May-09 15:47
Tuwing.Sabado26-May-09 15:47 
QuestionWeb Crystal Report from NT Current Event Log Pin
Yakimo26-May-09 4:31
Yakimo26-May-09 4:31 
Questionhow to use the share assembly in the .net Pin
lakshmichawala26-May-09 3:08
lakshmichawala26-May-09 3:08 
AnswerRe: how to use the share assembly in the .net Pin
Manas Bhardwaj26-May-09 3:41
professionalManas Bhardwaj26-May-09 3:41 
QuestionNot a valid virtual path Pin
samerh26-May-09 3:03
samerh26-May-09 3:03 
AnswerRe: Not a valid virtual path Pin
Herman<T>.Instance26-May-09 4:22
Herman<T>.Instance26-May-09 4:22 
GeneralRe: Not a valid virtual path Pin
samerh26-May-09 18:35
samerh26-May-09 18:35 
GeneralRe: Not a valid virtual path Pin
Herman<T>.Instance26-May-09 19:44
Herman<T>.Instance26-May-09 19:44 
GeneralRe: Not a valid virtual path Pin
samerh26-May-09 19:52
samerh26-May-09 19:52 
GeneralRe: Not a valid virtual path Pin
Herman<T>.Instance26-May-09 19:54
Herman<T>.Instance26-May-09 19:54 
GeneralRe: Not a valid virtual path Pin
Herman<T>.Instance26-May-09 20:09
Herman<T>.Instance26-May-09 20:09 
GeneralRe: Not a valid virtual path Pin
samerh26-May-09 20:29
samerh26-May-09 20:29 

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.