当前位置:首页 > asp.net2.0生成验证码,并显示验证码

asp.net2.0生成验证码,并显示验证码

点击次数:1038  更新日期:2010-12-28
\n

1、建立网站,添加一个网页ValitionNo.aspx,和Default.aspx,新建一个文件夹images。如图所示:

2、ValitionNo.aspx里不用放任何控件,代码如下:


\n

\n

<%@ Page Language=”C#” AutoEventWireup=”true” CodeFile=”ValitionNo.aspx.cs” Inherits=”guestBook_ValitionNo” %>

<!DOCTYPE html PUBLIC “-//W3C//DTD XHTML 1.0 Transitional//EN” “http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd”>

<html xmlns=”http://www.w3.org/1999/xhtml” >
<head runat=”server”>
<title>无标题页</title>
</head>
<body>
<form id=”form1″ runat=”server”>
<div>

</div>
</form>
</body>
</html>

\n