Asp.net calls image Verification Code

Source: Internet
Author: User

Asp tutorial. net call image Verification Code
Aspx page

<Html>
<Head>
<Title> Custom image </title>
<Meta name = "generator" content = "microsoft visual studio 7.0">
<Meta name = "code_language" content = "c #">
<Meta name = "vs_defaultclientscript" content = "webpage effect">
<Meta name = "vs_targetschema" content = "http://schemas.microsoft.com/intellisense/ie5">
</Head>
<Body>
<Form id = "courier image" method = "post" runat = "server">

</Form>
</Body>
</Html>

Place an img tag on the aspx page.

Cs and aspx code of custom image. aspx

 

Private void page_load (object sender, system. eventargs e)
{

// Captchaimage is used to generate verification codes. Ms has helped us well... Just call it.
Captchaimage ci = new captchaimage ("content to be displayed", 200, 50, "century schoolbook ");
This. response. clear ();
This. response. contenttype = "image/jpeg ";

// Write the image to the response stream in jpeg format.
Ci. image. save (this. response. outputstream, imageformat.jpeg );

Ci. dispose ();
}

Related Article

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.