Click here to Skip to main content
15,915,057 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: Events with Master Pages Pin
ToddHileHoffer15-Dec-06 7:22
ToddHileHoffer15-Dec-06 7:22 
QuestionRe: Events with Master Pages Pin
Chris McGlothen15-Dec-06 7:58
Chris McGlothen15-Dec-06 7:58 
AnswerRe: Events with Master Pages Pin
ToddHileHoffer15-Dec-06 8:20
ToddHileHoffer15-Dec-06 8:20 
QuestionRe: Events with Master Pages Pin
Chris McGlothen15-Dec-06 8:26
Chris McGlothen15-Dec-06 8:26 
AnswerRe: Events with Master Pages Pin
ToddHileHoffer15-Dec-06 8:38
ToddHileHoffer15-Dec-06 8:38 
GeneralRe: Events with Master Pages Pin
Chris McGlothen15-Dec-06 8:39
Chris McGlothen15-Dec-06 8:39 
GeneralRe: Events with Master Pages Pin
ToddHileHoffer15-Dec-06 8:46
ToddHileHoffer15-Dec-06 8:46 
QuestionAdding TextBox Programmatically Pin
nature027615-Dec-06 6:06
nature027615-Dec-06 6:06 
Hello,

I am using ASP.NET 2.0. I am trying to add textBox programmatically.
I have following method.... It is not working. What do I need to add.

public partial class Default: System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
TextBox textBox = new TextBox();
textBox.Text = "Joe";

Panel panel = new Panel();
panel.Visible = true;
panel.Controls.Add(textBox);

}
}

Thank you,

Sanjeev
AnswerRe: Adding TextBox Programmatically Pin
Colin Angus Mackay15-Dec-06 6:19
Colin Angus Mackay15-Dec-06 6:19 
GeneralRe: Adding TextBox Programmatically Pin
nature027615-Dec-06 6:42
nature027615-Dec-06 6:42 
QuestionAdding TextBox Programmatically Pin
nature027615-Dec-06 6:06
nature027615-Dec-06 6:06 
AnswerRe: Adding TextBox Programmatically Pin
Colin Angus Mackay15-Dec-06 6:19
Colin Angus Mackay15-Dec-06 6:19 
QuestionAdding Controls programmtically. Pin
nature027615-Dec-06 5:59
nature027615-Dec-06 5:59 
AnswerRe: Adding Controls programmtically. Pin
Colin Angus Mackay15-Dec-06 6:18
Colin Angus Mackay15-Dec-06 6:18 
GeneralRe: Adding Controls programmtically. Pin
nature027615-Dec-06 6:39
nature027615-Dec-06 6:39 
GeneralRe: Adding Controls programmtically. Pin
Colin Angus Mackay15-Dec-06 6:57
Colin Angus Mackay15-Dec-06 6:57 
QuestionDatagrid Problem Pin
ADY00715-Dec-06 5:29
ADY00715-Dec-06 5:29 
AnswerRe: Datagrid Problem Pin
Pradipta Basu15-Dec-06 10:26
Pradipta Basu15-Dec-06 10:26 
GeneralRe: Datagrid Problem Pin
ADY00715-Dec-06 11:49
ADY00715-Dec-06 11:49 
GeneralRe: Datagrid Problem Pin
ADY00715-Dec-06 13:51
ADY00715-Dec-06 13:51 
QuestionViewState from client side Pin
Ponzano Paolo15-Dec-06 4:56
Ponzano Paolo15-Dec-06 4:56 
AnswerRe: ViewState from client side Pin
ToddHileHoffer15-Dec-06 8:42
ToddHileHoffer15-Dec-06 8:42 
Questionenter key Pin
Smiles7415-Dec-06 4:13
Smiles7415-Dec-06 4:13 
AnswerRe: enter key Pin
albCode15-Dec-06 4:31
albCode15-Dec-06 4:31 
AnswerRe: enter key Pin
RichardGrimmer15-Dec-06 4:42
RichardGrimmer15-Dec-06 4:42 

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.