Click here to Skip to main content
15,881,709 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: create dynamic textBoxes Pin
Dar Brett25-Sep-18 4:55
Dar Brett25-Sep-18 4:55 
AnswerRe: create dynamic textBoxes Pin
F-ES Sitecore26-Sep-18 22:43
professionalF-ES Sitecore26-Sep-18 22:43 
QuestionHow to Complete Angular/Typescript-Based Web Development Workflow in Restricted Environment Pin
Christopher Koeber23-Sep-18 10:36
Christopher Koeber23-Sep-18 10:36 
AnswerRe: How to Complete Angular/Typescript-Based Web Development Workflow in Restricted Environment Pin
jkirkerx25-Sep-18 8:07
professionaljkirkerx25-Sep-18 8:07 
QuestionMessage Closed Pin
23-Sep-18 9:16
Christopher Koeber23-Sep-18 9:16 
AnswerRe: Using Latest Angular/Typescript Web Development Pipeline within Restricted Environment Pin
Nelek23-Sep-18 9:17
protectorNelek23-Sep-18 9:17 
GeneralRe: Using Latest Angular/Typescript Web Development Pipeline within Restricted Environment Pin
Christopher Koeber23-Sep-18 10:23
Christopher Koeber23-Sep-18 10:23 
QuestionTry to dynamic text box Pin
Member 933127821-Sep-18 11:09
Member 933127821-Sep-18 11:09 
I am trying to create a dynamic text box but I am getting a null reference error.

protected void Page_PreInit(object sender, EventArgs e)
       {
           List<string> keys = Request.Form.AllKeys.Where(key => key.Contains("txtDynamic")).ToList();
           int i = 1;
           foreach (string key in keys)
           {
               this.CreateTextBox("txtDynamic" + i);
               i++;
           }

       }
       protected void Page_Load(object sender, EventArgs e)
       {

       }
       protected void AddTextBox(object sender, EventArgs e)
       {
           int index = pn1TextBoxes.Controls.OfType<TextBox>().ToList().Count + 1;
           this.CreateTextBox("txtDynamic" + index);

       }
       private void CreateTextBox(string Id)
       {
           TextBox txt = new TextBox();
           txt.ID = Id;
               try
               {
                   pn1TextBoxes.Controls.Add(txt);
               }
               catch (Exception e )
               {
                   Response.Write(e.ToString());
               }

           Literal lt = new Literal();
           lt.Text = "<br/>";
           try
           {
               pn1TextBoxes.Controls.Add(lt);
           }
           catch (Exception e)
           {
              Response.Write(e.ToString());
           }

       }
   }

AnswerRe: Try to dynamic text box Pin
Richard Deeming21-Sep-18 13:10
mveRichard Deeming21-Sep-18 13:10 
QuestionAccepting application/x-www-urlencode format data Pin
R191119-Sep-18 23:52
R191119-Sep-18 23:52 
AnswerRe: Accepting application/x-www-urlencode format data Pin
Richard Deeming20-Sep-18 0:45
mveRichard Deeming20-Sep-18 0:45 
GeneralRe: Accepting application/x-www-urlencode format data Pin
R191120-Sep-18 2:12
R191120-Sep-18 2:12 
QuestionMVC: Can a controller know its URL without being called? Pin
Foothill18-Sep-18 9:22
professionalFoothill18-Sep-18 9:22 
AnswerRe: MVC: Can a controller know its URL without being called? Pin
Richard Deeming18-Sep-18 10:49
mveRichard Deeming18-Sep-18 10:49 
GeneralRe: MVC: Can a controller know its URL without being called? Pin
Foothill18-Sep-18 11:45
professionalFoothill18-Sep-18 11:45 
AnswerRe: MVC: Can a controller know its URL without being called? Pin
F-ES Sitecore18-Sep-18 23:43
professionalF-ES Sitecore18-Sep-18 23:43 
GeneralRe: MVC: Can a controller know its URL without being called? Pin
Foothill19-Sep-18 3:18
professionalFoothill19-Sep-18 3:18 
QuestionASP.Net MVC4 Razor Pin
jvrao8283bca13-Sep-18 6:25
jvrao8283bca13-Sep-18 6:25 
QuestionHow to Implement AD Login(ADFS) with existing asp.net 2015 website(C#) Pin
Kenneth Menor4-Sep-18 19:10
Kenneth Menor4-Sep-18 19:10 
QuestionAsp.net mvc Pin
Member 139714663-Sep-18 7:26
Member 139714663-Sep-18 7:26 
AnswerRe: Asp.net mvc Pin
Richard Deeming3-Sep-18 10:45
mveRichard Deeming3-Sep-18 10:45 
AnswerRe: Asp.net mvc Pin
Vincent Maverick Durano4-Sep-18 4:10
professionalVincent Maverick Durano4-Sep-18 4:10 
Questionpost list of products instead of single product in post method odata Pin
Asif Rehman28-Aug-18 22:30
Asif Rehman28-Aug-18 22:30 
AnswerRe: post list of products instead of single product in post method odata Pin
dan!sh 28-Aug-18 22:40
professional dan!sh 28-Aug-18 22:40 
Rant[REPOST] post list of products instead of single product in post method odata Pin
Richard Deeming29-Aug-18 2:58
mveRichard Deeming29-Aug-18 2:58 

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.