Web Server Control placeholder Application

Source: Internet
Author: User

Placeholder does not display any tags on the HTML page. It can dynamically add controls to placeholder. To add HTML tags to placeholder, use literalcontrol,

<Body>

<Form ID = "form1" runat = "server">

<Asp: placeholder id = "placeholder1" runat = "server"/>

<Asp: button id = "button1" runat = "server" onclick = "button#click" text = "controladd"/>

<Asp: Label id = "lbmsg" runat = "server"/>

</Form>

</Body>

 

Protected void button#click (Object sender, eventargs E)

{

Try

{

For (INT I = 0; I <3; I ++)

{

Image IMG = new image ();

IMG. imageurl = @ "images/" + I. tostring () + ". BMP ";

Literalcontrol BR = new literalcontrol ("<br> ");

Placeholder1.controls. Add (IMG );

Placeholder1.controls. Add (BR );

}

Lbmsg. Text = "added successfully! ";

}

Catch (exception ex)

{

Lbmsg. Text = ex. message;

}

}

 

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.