Click here to Skip to main content
15,884,388 members
Home / Discussions / ASP.NET
   

ASP.NET

 
QuestionPreviousPage | asp.net 2.0 Pin
Karan_TN27-Apr-10 23:26
Karan_TN27-Apr-10 23:26 
AnswerRe: PreviousPage | asp.net 2.0 Pin
michaelschmitt28-Apr-10 3:42
michaelschmitt28-Apr-10 3:42 
QuestionCrystal Report Formatting with CSS Pin
Shivan Nandan27-Apr-10 21:05
Shivan Nandan27-Apr-10 21:05 
Questionchange an image to the color.. Pin
@nisha 2n27-Apr-10 19:54
@nisha 2n27-Apr-10 19:54 
AnswerRePost : Already asked in other forum. Pin
nagendrathecoder27-Apr-10 19:57
nagendrathecoder27-Apr-10 19:57 
AnswerRe: change an image to the color.. Pin
Shivan Nandan28-Apr-10 0:11
Shivan Nandan28-Apr-10 0:11 
AnswerRe: change an image to the color.. Pin
Sandesh M Patil28-Apr-10 0:11
Sandesh M Patil28-Apr-10 0:11 
Questionhow to Concatenate values from gridview to textbox in asp.net Pin
diyaa_0827-Apr-10 19:34
diyaa_0827-Apr-10 19:34 
how to Concatenate values from gridview to textbox in asp.net
i hav a grid n columns are
3 i use that code if (gvProviderCPTFeeNotesEnterNotes.Rows.Count != 0)
{
string Str = string.Empty;

for (int i = 0; i < gvProviderCPTFeeNotesEnterNotes.Rows.Count; i++)

{
for(int j=0; j< 3; j++)
{
string Str1 = gvProviderCPTFeeNotesEnterNotes.Rows[i].Cells[j].Text.ToString();
string Str2 = gvProviderCPTFeeNotesEnterNotes.Rows[i].Cells[j].Text.ToString();
string Str3 = gvProviderCPTFeeNotesEnterNotes.Rows[i].Cells[j].Text.ToString();


if (i == 0)
{
txtProviderCPTFeeNoteViewNotes.Text = string.Format("Date: {0}\r\nContent: {1}\r\nUserID: {2}", Str1, Str2, Str3);
Str = txtProviderCPTFeeNoteViewNotes.Text.ToString();
}
else
{
txtProviderCPTFeeNoteViewNotes.Text = string.Format("{0} \r\n\r\n Date: {1}\r\nContent: {2}\r\nUserID: {3}", Str, Str1, Str2, Str3);
Str = txtProviderCPTFeeNoteViewNotes.Text.ToString();
}
}
}
}
AnswerRe: how to Concatenate values from gridview to textbox in asp.net [modified] Pin
nagendrathecoder27-Apr-10 19:46
nagendrathecoder27-Apr-10 19:46 
GeneralRe: how to Concatenate values from gridview to textbox in asp.net Pin
diyaa_0827-Apr-10 20:52
diyaa_0827-Apr-10 20:52 
GeneralRe: how to Concatenate values from gridview to textbox in asp.net Pin
nagendrathecoder27-Apr-10 21:22
nagendrathecoder27-Apr-10 21:22 
QuestionProblem with Dropdownlist (DDL) box... Pin
<<Tash18>>27-Apr-10 19:29
<<Tash18>>27-Apr-10 19:29 
AnswerRe: Problem with Dropdownlist (DDL) box... Pin
Ankur\m/27-Apr-10 20:04
professionalAnkur\m/27-Apr-10 20:04 
GeneralRe: Problem with Dropdownlist (DDL) box... Pin
<<Tash18>>27-Apr-10 21:22
<<Tash18>>27-Apr-10 21:22 
AnswerRe: Problem with Dropdownlist (DDL) box... Pin
nagendrathecoder27-Apr-10 21:27
nagendrathecoder27-Apr-10 21:27 
GeneralRe: Problem with Dropdownlist (DDL) box... Pin
<<Tash18>>27-Apr-10 21:43
<<Tash18>>27-Apr-10 21:43 
AnswerRe: Problem with Dropdownlist (DDL) box... Pin
Ankur\m/27-Apr-10 21:29
professionalAnkur\m/27-Apr-10 21:29 
GeneralRe: Problem with Dropdownlist (DDL) box... Pin
<<Tash18>>27-Apr-10 21:42
<<Tash18>>27-Apr-10 21:42 
AnswerRe: Problem with Dropdownlist (DDL) box... Pin
nagendrathecoder27-Apr-10 22:06
nagendrathecoder27-Apr-10 22:06 
AnswerRe: Problem with Dropdownlist (DDL) box... Pin
Mohammed Hameed28-Apr-10 2:58
professionalMohammed Hameed28-Apr-10 2:58 
QuestionASP.Net: Losing Javascript events on async postback Pin
Jake Slack27-Apr-10 10:53
Jake Slack27-Apr-10 10:53 
AnswerRe: ASP.Net: Losing Javascript events on async postback Pin
daveyerwin27-Apr-10 14:12
daveyerwin27-Apr-10 14:12 
GeneralRe: ASP.Net: Losing Javascript events on async postback Pin
Jake Slack28-Apr-10 2:09
Jake Slack28-Apr-10 2:09 
GeneralRe: ASP.Net: Losing Javascript events on async postback Pin
daveyerwin28-Apr-10 2:31
daveyerwin28-Apr-10 2:31 
QuestionItemTemplate can't find a control in placeholder Pin
mark_me27-Apr-10 9:44
mark_me27-Apr-10 9:44 

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.