Click here to Skip to main content
15,900,378 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: change the webservice Pin
kubben12-Feb-07 2:06
kubben12-Feb-07 2:06 
GeneralRe: change the webservice Pin
srinandan..12-Feb-07 3:15
srinandan..12-Feb-07 3:15 
GeneralRe: change the webservice Pin
kubben14-Feb-07 9:33
kubben14-Feb-07 9:33 
GeneralRe: change the webservice Pin
srinandan..15-Feb-07 0:19
srinandan..15-Feb-07 0:19 
GeneralRe: change the webservice Pin
kubben15-Feb-07 10:09
kubben15-Feb-07 10:09 
GeneralRe: change the webservice Pin
srinandan..15-Feb-07 20:47
srinandan..15-Feb-07 20:47 
Questionplaceholder control Pin
saravanan059-Feb-07 8:18
saravanan059-Feb-07 8:18 
AnswerRe: placeholder control Pin
kubben9-Feb-07 9:52
kubben9-Feb-07 9:52 
In the Page_load event of the aspx file you can add code like:

DataGrid dg = new DataGrid();
DataTable dt = new DataTable("Test");
dt.Columns.Add("col1");
dg.DataSource = dt.DefaultView;
dg.DataBind();
plh1.Controls.Add(dg);

Assuming you want a single column with col1 in it and hour placeholder control is named plh1

Hope that helps.

Ben
QuestionHow do i make entire row of a datagrid clickable Pin
NetBot9-Feb-07 7:53
NetBot9-Feb-07 7:53 
AnswerRe: How do i make entire row of a datagrid clickable Pin
badgrs9-Feb-07 10:02
badgrs9-Feb-07 10:02 
GeneralRe: How do i make entire row of a datagrid clickable Pin
NetBot9-Feb-07 22:27
NetBot9-Feb-07 22:27 
QuestionXML Serialisation Pin
Sebastian T Xavier9-Feb-07 6:43
Sebastian T Xavier9-Feb-07 6:43 
QuestionHow do i have a sortable TextBox or Dropdown Pin
www.Developerof.NET9-Feb-07 5:23
www.Developerof.NET9-Feb-07 5:23 
AnswerRe: How do i have a sortable TextBox or Dropdown Pin
badgrs9-Feb-07 10:01
badgrs9-Feb-07 10:01 
AnswerRe: How do i have a sortable TextBox or Dropdown Pin
we_swati9-Feb-07 13:47
we_swati9-Feb-07 13:47 
QuestionMicrosoft ASP.Net Ajax - Xhtml compliance Pin
Clickok9-Feb-07 5:18
Clickok9-Feb-07 5:18 
AnswerRe: Microsoft ASP.Net Ajax - Xhtml compliance Pin
badgrs9-Feb-07 10:00
badgrs9-Feb-07 10:00 
QuestionFormsAuthentication Pin
kaizenIT9-Feb-07 5:00
kaizenIT9-Feb-07 5:00 
AnswerRe: FormsAuthentication Pin
kubben9-Feb-07 7:06
kubben9-Feb-07 7:06 
AnswerRe: FormsAuthentication Pin
kaizenIT9-Feb-07 9:16
kaizenIT9-Feb-07 9:16 
QuestionHow to Export data from crystal report to Excel or pdf Pin
mohd imran abdul aziz9-Feb-07 3:51
mohd imran abdul aziz9-Feb-07 3:51 
AnswerRe: How to Export data from crystal report to Excel or pdf Pin
maabarca9-Feb-07 4:52
maabarca9-Feb-07 4:52 
QuestionDatagrid Pin
toanthinh9-Feb-07 3:50
toanthinh9-Feb-07 3:50 
AnswerRe: Datagrid Pin
postmaster@programmingknowledge.com9-Feb-07 6:18
postmaster@programmingknowledge.com9-Feb-07 6:18 
AnswerRe: Datagrid Pin
toanthinh10-Feb-07 3:26
toanthinh10-Feb-07 3:26 

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.