一盖呼、文件---->新建----->網(wǎng)站----->空網(wǎng)站
右擊website2---->添加新項------>web窗體--------->default.aspx
二、設計頁面(TextBox1;Button1;Label1)
將button1--->屬性---->Text:改為MD5加密
三捅彻、寫代碼
在頭部加上命名空間using System.Web.Security;
【default.aspx.cs】
附源碼:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.Security;
public partial class _Default : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
}
protected void Button1_Click(object sender, EventArgs e)
{
string strtxt = TextBox1.Text;
Label1.Text = FormsAuthentication.HashPasswordForStoringInConfigFile(TextBox1.Text, "MD5");
}
}