Click here to Skip to main content
16,007,111 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: hw to get checked rows of gridview which is bubbled with checkboxes in c#.net Pin
Christian Graus11-Jun-08 9:30
protectorChristian Graus11-Jun-08 9:30 
Questionhw to add pop up calende r in gridview using c# Pin
senpriya11-Jun-08 9:20
senpriya11-Jun-08 9:20 
AnswerRe: hw to add pop up calende r in gridview using c# Pin
Parwej Ahamad11-Jun-08 17:38
professionalParwej Ahamad11-Jun-08 17:38 
Questionhw to add pop up calender in gridview Pin
senpriya11-Jun-08 9:18
senpriya11-Jun-08 9:18 
AnswerRe: hw to add pop up calender in gridview Pin
Christian Graus11-Jun-08 9:31
protectorChristian Graus11-Jun-08 9:31 
Questionhow to set fontsize,color in .cs file(i know to do in .aspx page hw to do in codebehind Pin
senpriya11-Jun-08 9:17
senpriya11-Jun-08 9:17 
AnswerRe: how to set fontsize,color in .cs file(i know to do in .aspx page hw to do in codebehind Pin
Christian Graus11-Jun-08 9:31
protectorChristian Graus11-Jun-08 9:31 
QuestionSimple GridView Question, Really? Anyone help? Pin
Csharp027611-Jun-08 7:52
Csharp027611-Jun-08 7:52 
I have a Button(Select All Button) and a GridView a with a checkbox with columns EmployeeID, FirstName. GridView has paging enabled. After page loads, first, I check one check box from GridView's page one. I check another check box in page two. I hit Select All button. I need to get the employeeID values of those checked boxes from both pages.

With Below code, the problem is I, only get the employeeID from first Page not from second page?
How do I get the selected values from second page?

protected void SelectAll_Click(object sender, EventArgs e)<br />
    {<br />
         int employeeID;<br />
<br />
        for (int i = 0; i < GridView1.Rows.Count; i++)<br />
        {<br />
            CheckBox chk = GridView1.Rows[i].FindControl("chkSelect") as CheckBox<br />
<br />
            if (chk.Checked == true)<br />
            {<br />
               employeeID = Convert.ToInt32(GridView1.Rows[i].Cells[1].Text);        <br />
            }<br />
        }<br />
<br />
    }


CSharp Guy

AnswerRe: Simple GridView Question, Really? Anyone help? Pin
Christian Graus11-Jun-08 8:05
protectorChristian Graus11-Jun-08 8:05 
QuestionASP TextBox selection event. Pin
Steve Holdorf11-Jun-08 6:08
Steve Holdorf11-Jun-08 6:08 
AnswerRe: ASP TextBox selection event. [modified] Pin
Parwej Ahamad11-Jun-08 6:20
professionalParwej Ahamad11-Jun-08 6:20 
AnswerRe: ASP TextBox selection event. Pin
Christian Graus11-Jun-08 6:29
protectorChristian Graus11-Jun-08 6:29 
GeneralRe: ASP TextBox selection event. Pin
Steve Holdorf11-Jun-08 8:34
Steve Holdorf11-Jun-08 8:34 
GeneralRe: ASP TextBox selection event. Pin
Christian Graus11-Jun-08 8:47
protectorChristian Graus11-Jun-08 8:47 
QuestionProblem loading a user control dynamically into a gridview and the controls events not triggering Pin
DanChin11-Jun-08 3:25
DanChin11-Jun-08 3:25 
AnswerRe: Problem loading a user control dynamically into a gridview and the controls events not triggering Pin
Christian Graus11-Jun-08 5:24
protectorChristian Graus11-Jun-08 5:24 
QuestionProblem consuming a web service in C# :nullable object must have a value Pin
highjo11-Jun-08 3:10
highjo11-Jun-08 3:10 
AnswerRe: Problem consuming a web service in C# :nullable object must have a value Pin
Christian Graus11-Jun-08 5:26
protectorChristian Graus11-Jun-08 5:26 
Questionhow to host dropdown list in gridview? Pin
Denver Thomas11-Jun-08 2:57
Denver Thomas11-Jun-08 2:57 
AnswerRe: how to host dropdown list in gridview? Pin
eyeseetee11-Jun-08 3:55
eyeseetee11-Jun-08 3:55 
Questioncall a function from aspx in vs2008 Pin
thedom211-Jun-08 2:47
thedom211-Jun-08 2:47 
AnswerRe: call a function from aspx in vs2008 Pin
Christian Graus11-Jun-08 5:27
protectorChristian Graus11-Jun-08 5:27 
GeneralRe: call a function from aspx in vs2008 Pin
thedom211-Jun-08 12:58
thedom211-Jun-08 12:58 
QuestionDoes images will be compressed while storing in database Pin
rubobby11-Jun-08 2:47
rubobby11-Jun-08 2:47 
AnswerRe: Does images will be compressed while storing in database Pin
eyeseetee11-Jun-08 3:53
eyeseetee11-Jun-08 3:53 

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.