国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁(yè) > 編程 > .NET > 正文

asp.net 票據(jù)簡(jiǎn)單應(yīng)用

2024-07-10 12:39:05
字體:
來(lái)源:轉(zhuǎn)載
供稿:網(wǎng)友
代碼如下:
using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;

namespace www
{
public partial class piaoju1 : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{

}
//設(shè)置用戶登錄標(biāo)志,與瀏覽器關(guān)聯(lián),失效條件是瀏覽器關(guān)閉
protected void btnSet_Click(object sender, EventArgs e)
{
System.Web.Security.FormsAuthentication.SetAuthCookie("uName,uPower", false);
}
//取得用戶名
protected void btnGet_Click(object sender, EventArgs e)
{
Response.Write(HttpContext.Current.User.Identity.Name);
}
//退出
protected void btnLogout_Click(object sender, EventArgs e)
{
FormsAuthentication.SignOut();
}
//判斷是否登錄
protected void btnShow_Click(object sender, EventArgs e)
{
if (HttpContext.Current.User.Identity.IsAuthenticated)
Response.Write("ok");
else
Response.Write("no");
}
}
}

代碼如下:
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="piaoju1.aspx.cs" Inherits="www.piaoju1" %>

<!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>票據(jù)的簡(jiǎn)單使用</title>
</head>
<body>
<form id="form1" runat="server">
<div>
<asp:Button ID="btnShow" runat="server" Text="show" OnClick="btnShow_Click" />
<asp:Button ID="btnSet" runat="server" Text="set" OnClick="btnSet_Click" />
<asp:Button ID="btnGet" runat="server" Text="get" OnClick="btnGet_Click" />
<asp:Button ID="btnLogout" runat="server" Text="out" OnClick="btnLogout_Click" />
</div>
</form>
</body>
</html>
發(fā)表評(píng)論 共有條評(píng)論
用戶名: 密碼:
驗(yàn)證碼: 匿名發(fā)表
主站蜘蛛池模板: 井陉县| 平罗县| 山丹县| 高密市| 定襄县| 梨树县| 谷城县| 临洮县| 三都| 清远市| 原阳县| 永年县| 秭归县| 弥勒县| 城步| 内乡县| 拉萨市| 岳池县| 确山县| 九江县| 定远县| 马公市| 垫江县| 长宁区| 鹰潭市| 呈贡县| 塔河县| 石泉县| 长泰县| 商水县| 缙云县| 阿巴嘎旗| 武安市| 平定县| 慈溪市| 思南县| 梧州市| 轮台县| 慈利县| 黄冈市| 永宁县|