Ask a Question related to ASP.NET General, Design and Development.
-
CG #1
System.Web.UI.WebControls Namespace
Does anyone have any sample code on code on creating
tables/rows and cells using above namespace and adding
checkbox controls to my cells?
Thanks,
CG.
CG Guest
-
add reference for System.Web.UI.webcontrols which dll?
Which dll should i add a reference to to get this. i've added System.Web.UI, but this does not give me WebControls. thanks kes -
installing system.web.ui.webcontrols
Hello, Im workin with ASP.NET and trying to add reference system.web.ui.webcontrols. I can't find it, and i don't see it in the framework... -
Inheriting from System.Web.UI.WebControls.Table
I am trying to create an ASP.NET control by inheriting from Table. I would like to stop the Rows property from being displayed/persisted at... -
The type System.Web.UI.WebControls.TextBox in Assembly System.Web...error
I've been getting this error every since I installed InstallSqlState to handle my viewState Sessions. it only happens on 1 section of my asp.net... -
System.Web.UI.WebControls.TextBox events
hi guys, I donīt see a Click Event or DblClick Event, how to implement code for this events? Is it posible? (if not) how to do a fake?... -
carlos medina #2
Re: System.Web.UI.WebControls Namespace
HtmlTable table = new HtmlTable();
HtmlTableRow row = new HtmlTableRow();
HtmlTableCell cell = new HtmlTableCell();
CheckBox check = new CheckBox();
check.ID = "MyCheck";
check.Text = "Check it...";
cell.Controls.Add(check);
row.Cells.Add(cell);
table.Rows.Add(row);
Page.Controls[1].Controls.Add(table);
"CG" <cg@nospam> wrote in message news:02d001c35de8$aa243000$a301280a@phx.gbl...> Does anyone have any sample code on code on creating
> tables/rows and cells using above namespace and adding
> checkbox controls to my cells?
>
> Thanks,
> CG.carlos medina Guest



Reply With Quote

