Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have some textbox and submit button.

When ever I click the submit button the div should be added dynamically in my aspx page.

Also the information which is available in the text box also displayed in the page default.

Use:Without using database i need to display the user suggestion in my page...

share|improve this question
did you consider adding a panel with disabled state? and then on submit enabling it (with optional data inserting)? – Alexander Taran May 12 '10 at 11:36

1 Answer

up vote 10 down vote accepted

You have 2 possibilities:

  1. You can add dynamically an asp.net panel which generates div tag.

    // Create dynamic controls here.
    // Use "using System.Web.UI.WebControls;"
    Panel panel1 = new Panel();
    panel1.ID = "MyPanel";
    Form1.Controls.Add(panel1);

  2. Create the div using jQuery

Select the parent element with $("#id"), $("&lt;element&gt;") or $(".class") and then $(theElement).append("<div>Your content</div>");

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.