Asp登陆
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="QYLogin.aspx.cs" Inherits="YTO.WeiXinService.QYLogin" %> <!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>管理登录界面</title>
<link href="CSS/login.css" rel="stylesheet" />
<link href="Images/2.ico" rel="icon" />
<script type="text/javascript" src="JS/jquery-1.11.0.js"></script>
<script>
$(document).ready(function () {
$("#logo").css("margin-top", ($(window).height() - ) / + "px");
$("input[name='username']").focus();
// checkform();
$("#forget-password").click(function (e) {
$("#loginform").hide();
$("#forgetPwd").show();
e.preventDefault();
});
$("#btnforgetsubmit").click(function (e) {
$("#loginform").slideDown();
$("#forgetPwd").slideUp();
e.preventDefault();
});
});
</script>
</head>
<body>
<div id="logo">
<img alt="HongCMS" src="Images/logo-login.png">
</div>
<div id="login">
<form name="form1" method="post" runat="server" action="QYLogin.aspx?frm=Login">
<div id="loginform">
<asp:Label ID="errorWarning" Text="" runat="server" />
<p id="info">请输入用户名和密码</p>
<div class="control-group">
<span class="icon-user"></span>
<asp:TextBox ID="username" runat="server" Text=""></asp:TextBox>
<asp:RequiredFieldValidator ErrorMessage="" ControlToValidate="username" runat="server" />
</div>
<div class="control-group">
<span class="icon-lock"></span>
<asp:TextBox ID="pwd" runat="server" Text="" TextMode="Password" />
<asp:RequiredFieldValidator ErrorMessage="" ControlToValidate="pwd" runat="server" />
</div>
<div class="remember-me">
<input id="rm" value="" type="checkbox" name="remember">
<label for="rm">记住我</label>
<a id="forget-password" href="#">忘记密码?</a>
</div>
<div class="login-btn">
<asp:Button ID="btnlogin" Text="登 录" runat="server" OnClientClick="return checkform()" OnClick="btnlogin_Click" />
</div>
</div>
<%--
<form id=forgotform class=hide name="form2" method=post runat="server" action="QYLogin.aspx?frm=ForgetPwd">--%>
<div id="forgetPwd" style="display:none;">
<p id="info2">请输入Email地址重设密码.</p>
<div class="control-group">
<span class="icon-mail"></span>
<asp:TextBox runat="server" Text="" />
</div>
<div class="login-btn forget-btn">
<asp:Button ID="btnforgetsubmit" Text="提 交" runat="server" OnClick="btnforgetsubmit_Click" />
</div>
</div>
</form>
</div>
<div id="login-copyright"><a href="http://www.yto.net.cn" target="_blank">www.yto.net.cn</a> </div> </body>
</html>
2.后台代码
using System;
using System.Collections.Generic;
using System.Web.UI;
using YTO.WeiXin.Core;
using YTO.WeiXin.Model; namespace YTO.WeiXinService
{
public partial class QYLogin : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{ }
protected void btnlogin_Click(object sender, EventArgs e)
{
if (Page.IsValid)
{
string userName1 = username.Text.ToString().Trim();
string pwd1 = pwd.Text.ToString().Trim();
AccountInfo[] account = AccessTo.account;
IList<AccountInfo> acclist = new List<AccountInfo>();
foreach (var item in account)
{
if (item.Username == userName1 && item.Pwd == pwd1)
{
acclist.Add(item);
}
}
if (acclist.Count > )
{
//Session[""]="";
CustomizeSession CustSession = new CustomizeSession();
CustSession.SetSession("yto_qiyun_session_username", acclist[].Username);
CustSession.SetSession("yto_qiyun_session_pwd", acclist[].Pwd);
string remember = Request.Form["remember"];
if (remember == "")
{
Response.Cookies["yto_qiyun_username"].Value = acclist[].Username;
Response.Cookies["yto_qiyun_username"].Expires = DateTime.Now.AddDays();
Response.Cookies["yto_qiyun_pwd"].Value = acclist[].Pwd;
Response.Cookies["yto_qiyun_pwd"].Expires = DateTime.Now.AddDays();
}
Response.Redirect("Management/AuthManagement.aspx");
}
else
{
errorWarning.Text = "*用户名或密码错误,请重新输入!";
errorWarning.Style["display"] = "inline";
username.Text = "";
pwd.Text = "";
//Response.Redirect("QYLogin.aspx");
//Response.Write("<Script language='JavaScript'>alert('用户名或者密码错误!');</Script>");
}
}
else
{
errorWarning.Text = "*用户名或密码不可以为空!";
errorWarning.Style["display"] = "inline";
username.Text = "";
pwd.Text = "";
}
}
protected void btnforgetsubmit_Click(object sender, EventArgs e)
{ }
}
}
Asp登陆的更多相关文章
- asp登陆例子,asp,mssql,登陆
login.aspx文件 <%@ Page Language="C#" AutoEventWireup="true" CodeFile="log ...
- python实现域账号登陆
需求:公司的网路比较变态,每天到了24点自动断开,为了避免一台测试机断网,用python做了一个自动登录 原理:时间到了24点的时候,每隔10秒检测是否可以ping通www.baidu.com,如果p ...
- Sql-Server应用程序的高级注入
本文作者:Chris Anley 翻译: luoluo [luoluonet@hotmail.com] [目 录] [概要] [介绍] [通过错误信息获取信息] [更深入的访问] [xp_cmdshe ...
- SQL手工注入
site:xx.cn inurl:asp?id= //找文章 xx.cn/pth/onews.asp?id=243' //试注入 xx.cn/pth/onews.asp?id=243 order b ...
- Windows Server 2008下asp+access无法登陆问题总结
今日把一套陈旧的企业办公平台部署至公司新采购的服务器,因为在本机windows7环境已经反复测试通过.本以为分分钟完成的事情,结果折腾了我2天.服务器系统:windows server 2008 r2 ...
- asp.net 登陆验证 Form表单验证的3种方式 FormsAuthentication.SetAuthCookie;FormsAuthentication.RedirectFromLoginPage;FormsAuthenticationTicket
我们在登陆成功后,使用下面的3种方法,都是同一个目的:创建身份验证票并将其附加到 Cookie, 当我们用Forms认证方式的时候,可以使用HttpContext.Current.User.Ident ...
- Asp.Net中Ajax实现登陆判断
Default.aspx: <head runat="server"> <title>无标题页</title> <script type= ...
- Asp.net Form登陆认证的回顾学习
asp.net网站中,我最常用的就是Form认证了,在实现登陆时,利用Form认证实现用户的访问权限,哪些页面是可以匿名登陆,哪些页面需要认证后才能访问,哪些页面不能访问等等权限.我还可在登陆时,使用 ...
- ASP.net(C#)利用SQL Server实现注册和登陆功能
说说我现在吧,楼主现在从事的事IT行业,主攻DotNet技术:当然这次上博客园我也是有备而来,所有再次奉献鄙人拙作,以飨诸位,望诸位不吝赐教. 世界上大多数的工作都是熟练性的工种,编程也不例外,做久了 ...
随机推荐
- C# 通过URL获取图片并显示在PictureBox上的方法
, ); System.Net.WebRequest webreq = System.Net.WebRequest.Create(url); System.Net.WebResponse webres ...
- linux web php 安全相关设置
1 隐藏apache 或者 nginx的版本号 2 隐藏php的版本号 3 php 程序做好基本的防注入 xss之类的攻击 4 禁用PHP一些危险的函数 比如 phpinfo.system之类的 5 ...
- centos 卸载软件·
centos下完全卸载php 1显示相关软件的列表 rpm -qa | grep i(可以不加) php 2 卸载即可 rpm -e 软件名 --nodeps centos下完全卸载mysql 1显 ...
- java面向对象编程--第十一章 异常处理
1.异常:描述出错信息的对象. 字节码校验时,如发生错误,则会抛出异常. 2.所有异常的父类是Exception,异常可以捕获,可以处理. 所有错误的父类是Error,错误可以捕获,但不能处理. Th ...
- 使用AIDL将接口暴露给客户端(远程绑定Service)
import java.util.Timer;import java.util.TimerTask; import jww.mediaprovidertest.ICat.Stub;import and ...
- Python Twisted介绍
原文链接:http://www.aosabook.org/en/twisted.html 作者:Jessica McKellar Twisted是用Python实现的基于事件驱动的网络引擎框架.Twi ...
- S1 :数组迭代方法
ECMAScript 5 还新增了两个归并数组的方法:reduce()和reduceRight().这两个方法都会迭代数组的所有项,然后构建一个最终返回的值.其中,reduce()方法从数组的第一项开 ...
- FF与IE对JavaScript和CSS的区别
一.FF与IE对JavaScript的区别 1. document.formName.item("itemName") 问题 说明:IE下,可以使用document.formNam ...
- js unix时间戳转换
一.unix时间戳转普通时间: var unixtime=1358932051; var unixTimestamp = new Date(unixtime* 1000); commonTime = ...
- wScratchPad 实现刮刮卡效果
插件网址http://wscratchpad.websanova.com/