Click here to Skip to main content
15,898,035 members
Home / Discussions / ASP.NET
   

ASP.NET

 
Questionconnect to the database? Pin
che_kar25-Feb-09 22:47
che_kar25-Feb-09 22:47 
AnswerRe: connect to the database? Pin
N a v a n e e t h25-Feb-09 23:11
N a v a n e e t h25-Feb-09 23:11 
QuestionLive Broadcast Pin
ashutosh kumar jha25-Feb-09 22:27
ashutosh kumar jha25-Feb-09 22:27 
QuestionCalendar? Pin
Karthick_gc25-Feb-09 19:58
Karthick_gc25-Feb-09 19:58 
AnswerRe: Calendar? Pin
Christian Graus25-Feb-09 20:21
protectorChristian Graus25-Feb-09 20:21 
GeneralRe: Calendar? Pin
Karthick_gc25-Feb-09 20:29
Karthick_gc25-Feb-09 20:29 
GeneralRe: Calendar? Pin
N a v a n e e t h25-Feb-09 21:03
N a v a n e e t h25-Feb-09 21:03 
Questioncopying rows from one gridview to another.. Pin
scar_face25-Feb-09 19:54
scar_face25-Feb-09 19:54 
am using checkboxes to select rows in a gridview and once i click on the checkbox and click on transfer i want the selected rows to get displayed in another gridview..
heres the code .. but am getting Input array is longer than the number of columns in this table error message..
am stuck here...
DataTable dt = new DataTable();
foreach(GridViewRow dgr in GridView1.Rows)
{
if(((CheckBox)(dgr.FindControl("chkbx"))).Checked==true)
{
dt.Rows.Add(dgr);
}

GridView2.DataSource=dt;
GridView2.DataBind();

any help would be great appreciated..

scarface

AnswerRe: copying rows from one gridview to another.. Pin
Christian Graus25-Feb-09 20:28
protectorChristian Graus25-Feb-09 20:28 
QuestionRe: copying rows from one gridview to another.. Pin
scar_face25-Feb-09 20:59
scar_face25-Feb-09 20:59 
AnswerRe: copying rows from one gridview to another.. Pin
Expert Coming25-Feb-09 21:13
Expert Coming25-Feb-09 21:13 
QuestionRe: copying rows from one gridview to another.. Pin
scar_face25-Feb-09 23:29
scar_face25-Feb-09 23:29 
Questiongetting error while taking output parameter in sybase procedure Pin
Praneeth Babu K25-Feb-09 19:43
Praneeth Babu K25-Feb-09 19:43 
AnswerRe: getting error while taking output parameter in sybase procedure Pin
Christian Graus25-Feb-09 19:49
protectorChristian Graus25-Feb-09 19:49 
Questionhow to create a link in data grid view Pin
susanta patra25-Feb-09 19:34
susanta patra25-Feb-09 19:34 
AnswerRe: how to create a link in data grid view Pin
Christian Graus25-Feb-09 19:50
protectorChristian Graus25-Feb-09 19:50 
QuestionHow to pass values from javascript to server-side Pin
ratnakar_ravi25-Feb-09 19:20
ratnakar_ravi25-Feb-09 19:20 
AnswerRe: How to pass values from javascript to server-side Pin
N a v a n e e t h25-Feb-09 19:24
N a v a n e e t h25-Feb-09 19:24 
GeneralRe: How to pass values from javascript to server-side Pin
ratnakar_ravi25-Feb-09 19:26
ratnakar_ravi25-Feb-09 19:26 
GeneralRe: How to pass values from javascript to server-side Pin
Christian Graus25-Feb-09 19:48
protectorChristian Graus25-Feb-09 19:48 
GeneralRe: How to pass values from javascript to server-side Pin
N a v a n e e t h25-Feb-09 19:52
N a v a n e e t h25-Feb-09 19:52 
GeneralRe: How to pass values from javascript to server-side Pin
Christian Graus25-Feb-09 20:21
protectorChristian Graus25-Feb-09 20:21 
GeneralRe: How to pass values from javascript to server-side Pin
N a v a n e e t h25-Feb-09 21:01
N a v a n e e t h25-Feb-09 21:01 
QuestionEnable a textbox depending on the value of the dropdownlist [modified] Pin
kjalandoon25-Feb-09 19:17
kjalandoon25-Feb-09 19:17 
AnswerRe: Enable a textbox depending on the value of the dropdownlist Pin
N a v a n e e t h25-Feb-09 19:39
N a v a n e e t h25-Feb-09 19:39 

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.