Click here to Skip to main content
15,905,414 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralSending mails on particular date and time Pin
csn25-Jan-08 8:01
csn25-Jan-08 8:01 
GeneralRe: Sending mails on particular date and time Pin
Ennis Ray Lynch, Jr.25-Jan-08 9:24
Ennis Ray Lynch, Jr.25-Jan-08 9:24 
GeneralRe: Sending mails on particular date and time Pin
csn25-Jan-08 17:43
csn25-Jan-08 17:43 
GeneralRe: Sending mails on particular date and time Pin
John-ph26-Jan-08 19:44
John-ph26-Jan-08 19:44 
GeneralGetting the controls form an asp:Table [modified 2] Pin
Fernando A. Gomez F.25-Jan-08 7:18
Fernando A. Gomez F.25-Jan-08 7:18 
GeneralRe: Getting the controls form an asp:Table Pin
ChrisKo25-Jan-08 8:19
ChrisKo25-Jan-08 8:19 
GeneralRe: Getting the controls form an asp:Table Pin
Fernando A. Gomez F.25-Jan-08 8:24
Fernando A. Gomez F.25-Jan-08 8:24 
GeneralRe: Getting the controls form an asp:Table Pin
ChrisKo25-Jan-08 9:24
ChrisKo25-Jan-08 9:24 
Hmmmm, It's very strange because I don't see a problem. In fact, I just did a quick little test and this code worked just fine. And of course it still works fine with Page_Init as well. You've got to have something outside of what you've posted that is effecting the table.

protected void Page_Load(object sender, EventArgs e)
{
	TextBox txtTest = new TextBox();
	txtTest.ID = "testText";
	txtTest.Text = "Hello World!";

	TableRow row = new TableRow();
	TableCell cell = new TableCell();

	cell.Controls.Add(txtTest);
	row.Cells.Add(cell);
	tblTest.Rows.Add(row);
}
protected void btnShow_Click(object sender, EventArgs e)
{
	TextBox txtTemp = tblTest.Rows[0].Cells[0].FindControl("testText") as TextBox;
	lblShow.Text = txtTemp.Text;
} 

GeneralRe: Getting the controls form an asp:Table Pin
Fernando A. Gomez F.25-Jan-08 10:36
Fernando A. Gomez F.25-Jan-08 10:36 
GeneralRe: Getting the controls form an asp:Table Pin
Fernando A. Gomez F.25-Jan-08 11:23
Fernando A. Gomez F.25-Jan-08 11:23 
General[Message Deleted] Pin
PREMSONBABY25-Jan-08 4:06
PREMSONBABY25-Jan-08 4:06 
AnswerRe: Add-in issue while Loading Excel Files using ASP.net Pin
ToddHileHoffer25-Jan-08 4:19
ToddHileHoffer25-Jan-08 4:19 
GeneralWebService Pin
honeyss25-Jan-08 3:10
honeyss25-Jan-08 3:10 
AnswerRe: WebService Pin
ToddHileHoffer25-Jan-08 3:35
ToddHileHoffer25-Jan-08 3:35 
GeneralConfirm Box Pin
mehrdadc4825-Jan-08 2:10
mehrdadc4825-Jan-08 2:10 
GeneralRe: Confirm Box Pin
Vasudevan Deepak Kumar25-Jan-08 2:47
Vasudevan Deepak Kumar25-Jan-08 2:47 
AnswerRe: Confirm Box Pin
ToddHileHoffer25-Jan-08 3:33
ToddHileHoffer25-Jan-08 3:33 
GeneralRe: Confirm Box Pin
bhanu1234525-Jan-08 20:43
bhanu1234525-Jan-08 20:43 
QuestionScroll/navigate /focus datagrid to the row in which edit was clicked [modified] Pin
Sakshi Smriti25-Jan-08 1:22
Sakshi Smriti25-Jan-08 1:22 
GeneralDropdowlist using database wizard Pin
C#Coudou25-Jan-08 0:46
C#Coudou25-Jan-08 0:46 
GeneralActiveXObject + javascripting Pin
ritu432125-Jan-08 0:01
ritu432125-Jan-08 0:01 
GeneralRe: ActiveXObject + javascripting Pin
Venkatesh Mookkan25-Jan-08 0:16
Venkatesh Mookkan25-Jan-08 0:16 
GeneralRe: ActiveXObject + javascripting Pin
ritu432125-Jan-08 0:28
ritu432125-Jan-08 0:28 
GeneralRe: ActiveXObject + javascripting Pin
Venkatesh Mookkan25-Jan-08 0:50
Venkatesh Mookkan25-Jan-08 0:50 
GeneralChange cursor position & language Pin
samerh24-Jan-08 23:36
samerh24-Jan-08 23:36 

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.