Click here to Skip to main content
15,927,055 members
Home / Discussions / ASP.NET
   

ASP.NET

 
QuestionIsPostBack and NotIsPostBack Pin
saravanan0524-Nov-06 5:32
saravanan0524-Nov-06 5:32 
AnswerRe: IsPostBack and NotIsPostBack Pin
Not Active24-Nov-06 5:39
mentorNot Active24-Nov-06 5:39 
AnswerRe: IsPostBack and NotIsPostBack Pin
Britney S. Morales24-Nov-06 11:17
Britney S. Morales24-Nov-06 11:17 
AnswerRe: IsPostBack and NotIsPostBack Pin
GaryWoodfine 24-Nov-06 23:48
professionalGaryWoodfine 24-Nov-06 23:48 
Questionprint wide hmtl Pin
tiagodll24-Nov-06 4:48
tiagodll24-Nov-06 4:48 
AnswerRe: print wide hmtl Pin
Not Active24-Nov-06 5:44
mentorNot Active24-Nov-06 5:44 
AnswerRe: print wide hmtl Pin
Dominic Pettifer24-Nov-06 13:32
Dominic Pettifer24-Nov-06 13:32 
Questionpaging Pin
ravikiranreddydharmannagari24-Nov-06 1:47
ravikiranreddydharmannagari24-Nov-06 1:47 
System.Data.DuplicateNameException: A column named 'rating' already belongs to this DataTable. at System.Data.DataColumnCollection.RegisterName(String name, Object obj)
my code iam getting above exception
DataTable dt=new DataTable();
try
{
foreach(DataGridItem dg in DataGrid1.Items)
{
String Name = dg.Cells[0].Text;
DataRow dr;
DataColumn dc;
dc=new DataColumn("rating");
dt.Columns.Add(dc);
dr=dt.NewRow();
dr[0]=Name;
dt.Rows.Add(dr);
DataGrid2.DataSource=dt;
DataGrid2.DataBind();
}
}

catch(Exception ex)
{
Response.Write(ex.ToString());
}
finally
{
conn.Close();
}
AnswerRe: paging Pin
Guffa24-Nov-06 2:19
Guffa24-Nov-06 2:19 
AnswerRe: paging Pin
sam L25-Nov-06 21:02
sam L25-Nov-06 21:02 
QuestionDropdown list problem Pin
Imran Khan Pathan24-Nov-06 1:01
Imran Khan Pathan24-Nov-06 1:01 
AnswerRe: Dropdown list problem Pin
RaviJJain24-Nov-06 1:43
RaviJJain24-Nov-06 1:43 
GeneralRe: Dropdown list problem Pin
Imran Khan Pathan24-Nov-06 2:15
Imran Khan Pathan24-Nov-06 2:15 
AnswerRe: Dropdown list problem Pin
iamrashida8324-Nov-06 10:08
iamrashida8324-Nov-06 10:08 
GeneralRe: Dropdown list problem Pin
Imran Khan Pathan24-Nov-06 19:56
Imran Khan Pathan24-Nov-06 19:56 
QuestionJavascript for checkbox Pin
Imran Khan Pathan24-Nov-06 0:25
Imran Khan Pathan24-Nov-06 0:25 
AnswerRe: Javascript for checkbox Pin
Shajeel24-Nov-06 0:52
Shajeel24-Nov-06 0:52 
QuestionHow to Create a Property Which will contain a Dropdown? Pin
fasih198123-Nov-06 23:51
fasih198123-Nov-06 23:51 
AnswerRe: How to Create a Property Which will contain a Dropdown? Pin
sam L26-Nov-06 10:10
sam L26-Nov-06 10:10 
QuestionImage Pin
AnhTin23-Nov-06 22:22
AnhTin23-Nov-06 22:22 
QuestionRe: Image Pin
Guffa23-Nov-06 23:13
Guffa23-Nov-06 23:13 
AnswerRe: Image Pin
Britney S. Morales24-Nov-06 11:20
Britney S. Morales24-Nov-06 11:20 
GeneralRe: Image Pin
AnhTin27-Nov-06 17:34
AnhTin27-Nov-06 17:34 
Questioninsert trigger Pin
playout23-Nov-06 22:04
playout23-Nov-06 22:04 
AnswerRe: insert trigger Pin
DineshSharma23-Nov-06 22:43
DineshSharma23-Nov-06 22:43 

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.