- 博客(1)
- 资源 (2)
- 收藏
- 关注
原创 我的学习笔记(国际化,设置Cookie)
//2008年——11月——17日//添加cookiepublic virtual void SetCookie(string productid,string productName){ string strCookie="" ; if(getCookie("productcookie")){ string[] strArr=this.GetCookie("productcookie")
2008-11-20 08:49:00 392
.net ajax示例
/*
* 使用Ajax 验证商务卡的密码是否正确
* add by zhaoyue
* 2009-04-14
*/
var xmlHttp ;
var isTrue=false ;
function createXMLHttpRequest(){
if(window.ActiveXObject){
xmlHttp=new ActiveXObject("Microsoft.XMLHTTP") ;
}else if(window.XMLHttpRequest){
xmlHttp=new XMLHttpRequest() ;
}
}
function checkPwd(){
var cardNo ;
var businessCard =document.getElementsByName("business_Card") ;
for(var i=0;i<businessCard.length;i++){
if(businessCard[i].checked==true){
cardNo=businessCard[i].value ;
document.getElementById("hidBCardNo").value=cardNo ;
document.getElementById("hidpwd").value=document.getElementById("pwd").value ;
}
}
createXMLHttpRequest() ;
var url="BCPwdAjax.aspx?pwd="+document.getElementById("pwd").value+"&cardNo="+cardNo ;
xmlHttp.open("GET",url,true) ;
xmlHttp.onreadystatechange=show;//回调函数
xmlHttp.send(null) ;
}
function show(){
if(xmlHttp.readyState==4){//完成
if(xmlHttp.status==200){//成功
if(xmlHttp.responseText==""){
if(isEn==1){
document.getElementById("spanpwd").innerHTML="<font color='red'>Password error!</font>" ;
}else{
document.getElementById("spanpwd").innerHTML="<font color='red'>密码错误!</font>" ;
}
isTrue=false ;
}else{
if(isEn==1){
document.getElementById("spanpwd").innerHTML="<img src='../images/tripmart/gou.bmp' style='vertical-align:bottom;'/>" ;
}else{
document.getElementById("spanpwd").innerHTML="<img src='../images/tripmart/gou.bmp' style='vertical-align:bottom;'/>" ;
}
isTrue=true ;
}
isPassTrue = isTrue;
}
}
}
public partial class TicketInside_BCPwdAjax : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
try
{
string cardNo = Request.QueryString["cardNo"].ToString();
string pwd = System.Web.Security.FormsAuthentication.HashPasswordForStoringInConfigFile(Request.QueryString["pwd"].ToString(), "MD5"); ;
TBUSINESSCARD bc = new BusinessCardFacade().GetBusiCardByCardNoAndPass(cardNo, pwd);
if (null == bc)
{
Response.Write("");
}
else
{
Response.Write("密码正确");
}
}
catch (Exception ex)
{
LogHelper.error(ex.Message);
}
}
}
2009-05-11
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人