Click here to Skip to main content
15,906,455 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: How to make the content Fixed Pin
the exile26-Mar-11 22:31
the exile26-Mar-11 22:31 
Questionnand_bca@rediffmail.com Pin
Nand Kishor Chaudhary26-Mar-11 3:43
Nand Kishor Chaudhary26-Mar-11 3:43 
AnswerRe: change your subject Pin
Ravi Sant26-Mar-11 6:36
Ravi Sant26-Mar-11 6:36 
QuestionProblem updating DetailsView when added DropDownList Pin
kbalias24-Mar-11 23:39
kbalias24-Mar-11 23:39 
AnswerRe: Problem updating DetailsView when added DropDownList Pin
Cnu5555526-Mar-11 2:15
Cnu5555526-Mar-11 2:15 
Questionhow to copy row from one gridview to another,each time a new row is added........ Pin
Seema Rayat24-Mar-11 22:02
Seema Rayat24-Mar-11 22:02 
AnswerRe: how to copy row from one gridview to another,each time a new row is added........ Pin
Not Active25-Mar-11 1:23
mentorNot Active25-Mar-11 1:23 
GeneralRe: how to copy row from one radgrid to another,each time a new row is added........ Pin
Seema Rayat25-Mar-11 1:30
Seema Rayat25-Mar-11 1:30 
sorry......
i m new to this...
actually i have done that how to copy from one radgrid to another...
this is my code..plz can u help me in converting it...

SqlConnection con = new SqlConnection("Data Source=CMA-PC; Initial Catalog= master; Integrated Security=True");
SqlDataAdapter da = new SqlDataAdapter("select * from aa1 where Journal_Name='" + DropDownList1.Text + "'", con);
DataSet ds = new DataSet();

da.Fill(ds);
DataTable dt = ds.Tables[0];

DataRow dr;
dr = dt.NewRow();

GridView1.DataSource = dt;
//GridView1.DataBind();
foreach (GridViewRow r in GridView1.Rows)


{
/* Construct datatable from Existing GridView */
DataRow newrow = dt.NewRow();
newrow[0] = r.Cells[0].Text;
newrow[1] = r.Cells[1].Text;
newrow[2] = r.Cells[2].Text;
newrow[3] = r.Cells[3].Text;
newrow[4] = r.Cells[4].Text;
newrow[5] = r.Cells[5].Text;
newrow[6] = r.Cells[6].Text;
newrow[7] = r.Cells[7].Text;
newrow[8] = r.Cells[8].Text;
newrow[9] = r.Cells[9].Text;
newrow[10] = r.Cells[10].Text;
newrow[11] = r.Cells[11].Text;

/* Add to Datatable */
dt.Rows.Add(newrow);

}
/* Finally Bind the Constructed DataTable to Grid2 */
GridView2.DataSource = dt;

DataBind();
}
GeneralRe: how to copy row from one radgrid to another,each time a new row is added........ Pin
Not Active25-Mar-11 2:22
mentorNot Active25-Mar-11 2:22 
QuestionHow can i input "&" in the html code? Pin
buffering8324-Mar-11 15:13
buffering8324-Mar-11 15:13 
AnswerRe: How can i input "&" in the html code? Pin
GlobX24-Mar-11 15:52
GlobX24-Mar-11 15:52 
GeneralRe: How can i input "&" in the html code? Pin
Pravin Patil, Mumbai25-Mar-11 2:04
Pravin Patil, Mumbai25-Mar-11 2:04 
AnswerRe: How can i input "&" in the html code? Pin
Dalek Dave26-Mar-11 3:39
professionalDalek Dave26-Mar-11 3:39 
Questionfile download in mvc 2.0 Pin
rudra prasanna biswal24-Mar-11 11:45
rudra prasanna biswal24-Mar-11 11:45 
QuestionDataList web user control Pin
De_Novice24-Mar-11 6:12
De_Novice24-Mar-11 6:12 
AnswerRe: DataList web user control Pin
Sandeep Mewara26-Mar-11 21:46
mveSandeep Mewara26-Mar-11 21:46 
QuestionLog messages in event viewer Pin
berba24-Mar-11 0:24
berba24-Mar-11 0:24 
AnswerRe: Log messages in event viewer Pin
Pete O'Hanlon24-Mar-11 3:28
mvePete O'Hanlon24-Mar-11 3:28 
QuestionSSRS page break problem Pin
rahul.net1123-Mar-11 23:49
rahul.net1123-Mar-11 23:49 
AnswerRe: SSRS page break problem Pin
Sandeep Mewara26-Mar-11 21:45
mveSandeep Mewara26-Mar-11 21:45 
Questionregular expression validator Pin
Satish_S23-Mar-11 21:21
Satish_S23-Mar-11 21:21 
AnswerRe: regular expression validator Pin
thatraja23-Mar-11 23:12
professionalthatraja23-Mar-11 23:12 
QuestionManipulating Colour Indexed Images (GIF) using palettes - ASP.NET C# Pin
Quintec23-Mar-11 16:08
Quintec23-Mar-11 16:08 
AnswerAnyone? Pin
Quintec26-Mar-11 1:41
Quintec26-Mar-11 1:41 
Questionwhen we use delegates? Pin
anoop_m8323-Mar-11 16:03
anoop_m8323-Mar-11 16:03 

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.