Tagged Questions
0
votes
1answer
164 views
How to add textbox to each and every cell in a table row and let user add multiple rows??
Following is my markup code
<asp:Table ID="tbldata" runat="server" BorderWidth="2">
<asp:TableHeaderRow ID="tableheaderrow1" runat="server">
<asp:TableHeaderCell Width="80" ...
1
vote
1answer
310 views
Control position in TableCell
I am creaing a table cell, and in in, I want an image, and UNDER the image, a description. So, I attempted this:
TableCell cell = new TableCell();
ImageButton i = new ...
0
votes
1answer
103 views
Take control from one tablespace and put into another in ASP.NET
There's a table on a web form. The table has 4 rows with 3 columns in each. And several buttons are placed in these table columns. Let's say in design time Button btnSearch is in the 1st column of the ...
0
votes
1answer
541 views
Selection of “DYNAMIC” dropdownlist items from a Table
//Code BehindFile
public void Button1_Click(object sender, EventArgs e)
{
while (reader.Read())
{
DropDownList ddl = new DropDownList();
string[] s = ...
0
votes
2answers
4k views
C# adding click event to TableCell in codebehind
I'm trying to use the codebehind to add a click event to a TableCell..I basically want the user to be able to click a cell and cause a server side click event so that I can call a method with the GUID ...
0
votes
1answer
489 views
question about tablecell and its contols collection
i have a table (System.Web.UI.WebControls). each row does have three cells.
in cells' controls collection i placed some controls
TableCell cell = new TableCell();
cell.Font.Bold = ...
0
votes
2answers
2k views
ASP.NET: TableCell size problem
I would like to ask why setting the size of a TableCell when dynamically rendering the ASP.NET table does not take in effect?
for example:
Table table = new Table();
TableRow row = new TableRow();
...
