c# 对于下面代码怎么运行,新手不会弄

问题描述

源程序代码namespaceCommon{publicclassPageManager:Admin.UserManager{///用户状态publicUserStateAdminState{get;set;}///用户名protectedstringUserName{get;set;}///密码protectedstringUserPwd{get;set;}///验证码protectedstringCodeWord{get;set;}///登录方式这些源代码,怎么样让他在vs13中创建asp运行呢

解决方案

解决方案二:
创建一个模型类PageManager,把代码复制进去。但是这个类继承了Admin.UserManager,那么Admin.UserManager在哪里你就要确认一下。看懂了代码再动手。
解决方案三:
新手就多看书多看源代码,东抄一句西凑一句就像看到什么效果。
解决方案四:
namespaceCommon{publicclassPageManager:Admin.UserManager{///用户状态publicUserStateAdminState{get;set;}///用户名protectedstringUserName{get;set;}///密码protectedstringUserPwd{get;set;}///验证码protectedstringCodeWord{get;set;}///登录方式publicstringPageRedirect{get{returnPageUrl;}}publicstringLoginInfo{get{returnLoginState;}}privateobjectcache{get;set;}///当前登录用户信息publicObjectCache{get{returncache;}}application.CaCheUserDatac=newapplication.CaCheUserData(true);//pageManager的构造函数publicPageManager(){if(!IsPostBack){this.Init+=newEventHandler(PageManager_Init);this.Load+=newEventHandler(PageManager_Load);}}publicPageManager(boolback){}publicPageManager(stringuserName,stringuserPwd,stringcode){UserName=userName;UserPwd=userPwd;CodeWord=code;Manager();}privatevoidManager(){///缓存当前用户信息objectobj=GetState(SetPassWord(UserPwd),SetUserName(UserName),CodeWord);if(LoginState==System.Configuration.ConfigurationManager.AppSettings.Get("onlineteach")){Session["app_user"]=UserName;Session["app_pageUrl"]=PageUrl;AdminState=UserState.online;///缓存在线人员System.Web.HttpContext.Current.Application.Lock();System.Web.HttpContext.Current.Application["TheUserLine"]+=Session.SessionID+":"+UserType+"&"+UserName+"|";System.Web.HttpContext.Current.Application.UnLock();///将用户信息缓存应运程序中c.cache_name=UserName;c.CreateCache(obj);System.Web.Security.FormsAuthentication.SetAuthCookie(UserName,false);}Else{AdminState=UserState.error;}}protectedvirtualvoidPageManager_Load(objects,EventArgse){///页面载时操作if(Cache==null)GetUserData();}///获取用户的状态privatevoidGetState(){Try{if(AdminState!=UserState.online||Session["app_user"]==null){LoginOut();AdminState=UserState.off;}}Catch{AdminState=UserState.off;}Finally{if(UserState.off==AdminState){System.Web.HttpContext.Current.Response.Redirect("/Application/login.aspx");}ElseAdminState=UserState.online;}}publicvirtualvoidPageManager_Init(objectsender,EventArgse){///判断用户状态GetState();//当前页面不会缓存Response.Expires=0;Response.ExpiresAbsolute=DateTime.Now.AddMinutes(-1);Response.AddHeader("pragma","no-cache");Response.AddHeader("cache-control","private");Response.CacheControl="no-cache";}///用户状态publicenumUserState{online,leave,off,Error}///获取登录号publicstringGetUserName(){GetState();if(AdminState==UserState.online){returnSession["app_user"].ToString();}Else{returnnull;}}///获取?用户主页publicstringGetPageUrl(){GetState();if(AdminState==UserState.online){returnSession["app_pageUrl"].ToString();}Else{returnnull;}}///获取用户信息publicvoidGetUserData(){this.cache=c.returnValue(GetUserName());}publicstringSetPassWord(stringPwd){stringc=System.Configuration.ConfigurationManager.AppSettings["pwdnumber"];byte[]b=System.Text.Encoding.UTF8.GetBytes(c);HMACMD5hmacmd=newHMACMD5(b);Pwd=hmacmd.GetMd5pwd(hmacmd,Pwd);returnPwd;}publicstringSetUserName(stringName){stringd=System.Configuration.ConfigurationManager.AppSettings["usernumber"];byte[]t=t=System.Text.Encoding.UTF8.GetBytes(d);HMACMD5hmacmd=newHMACMD5(t);Name=hmacmd.GetMd5pwd(hmacmd,Name);returnName;}publicvoidLoginOut(){///在应用程序中清除该用户的信息if(System.Web.HttpContext.Current.Application["TheUserLine"]!=null){string[]str=System.Web.HttpContext.Current.Application["TheUserLine"].ToString().Split('|');stringtemp="";for(inti=0;i<str.Length;i++){if(str[i].IndexOf(Session.SessionID)!=-1){temp=str[i];break;}}if(!string.IsNullOrEmpty(temp))System.Web.HttpContext.Current.Application["TheUserLine"]=System.Web.HttpContext.Current.Application["TheUserLine"].ToString().Replace(temp+"|","");}Session.Clear();AdminState=UserState.off;System.Web.Security.FormsAuthentication.SignOut();System.Web.HttpContext.Current.Response.Redirect("/Application/login.aspx");}}}就只有这些源代码
解决方案五:
真的,你不要再研究这段代码了。找本ASP.Net的书,把基础的知识看看搞明白。这是一个Page的后台代码,里面还封装了一堆东西。你根本没法简单的建一个aspx页面去实现所谓的效果(仅仅提供这一点代码的话)。刚刚看了一个帖子,很适合初学者借鉴。
解决方案六:
代码差的有点你多!继承的父类因为完全没有信息,无从参考只看出来下面几点objectobj=GetState(SetPassWord(UserPwd),SetUserName(UserName),CodeWord);不存在含有三个变量的此方法Pwd=hmacmd.GetMd5pwd(hmacmd,Pwd);不存在此方法,需要自己根据HMACMD5自己添加其它的额应该没有什么了,例如Else,Enum缺少降等等,就只有你自己慢慢调了publicpartialclassPageManager1:System.Web.UI.Page{protectedvoidPage_Load(objectsender,EventArgse){}//*******************************************//定义私有变量privatestringPageUrl;privatestringLoginState;//*******************************************///用户状态publicUserStateAdminState{get;set;}///用户名protectedstringUserName{get;set;}///密码protectedstringUserPwd{get;set;}///验证码protectedstringCodeWord{get;set;}///登录方式publicstringPageRedirect{get{returnPageUrl;}}publicstringLoginInfo{get{returnLoginState;}}privateobjectcache{get;set;}///当前登录用户信息publicObjectCache{get{returncache;}}//application.CaCheUserDatac=newapplication.CaCheUserData(true);//pageManager的构造函数publicPageManager1(){if(!IsPostBack){this.Init+=newEventHandler(PageManager_Init);this.Load+=newEventHandler(PageManager_Load);}}publicPageManager1(boolback){}publicPageManager1(stringuserName,stringuserPwd,stringcode){UserName=userName;UserPwd=userPwd;CodeWord=code;Manager();}privatevoidManager(){///缓存当前用户信息objectobj=GetState(SetPassWord(UserPwd),SetUserName(UserName),CodeWord);if(LoginState==System.Configuration.ConfigurationManager.AppSettings.Get("onlineteach")){Session["app_user"]=UserName;Session["app_pageUrl"]=PageUrl;AdminState=UserState.online;///缓存在线人员System.Web.HttpContext.Current.Application.Lock();System.Web.HttpContext.Current.Application["TheUserLine"]+=Session.SessionID+":"+UserType+"&"+UserName+"|";System.Web.HttpContext.Current.Application.UnLock();///将用户信息缓存应运程序中c.cache_name=UserName;c.CreateCache(obj);System.Web.Security.FormsAuthentication.SetAuthCookie(UserName,false);}else{AdminState=UserState.error;}}protectedvirtualvoidPageManager_Load(objects,EventArgse){///页面载时操作if(Cache==null)GetUserData();}///获取用户的状态privatevoidGetState(){try{if(AdminState!=UserState.online||Session["app_user"]==null){LoginOut();AdminState=UserState.off;}}catch{AdminState=UserState.off;}finally{if(UserState.off==AdminState){System.Web.HttpContext.Current.Response.Redirect("/Application/login.aspx");}else{AdminState=UserState.online;}}}publicvirtualvoidPageManager_Init(objectsender,EventArgse){///判断用户状态GetState();//当前页面不会缓存Response.Expires=0;Response.ExpiresAbsolute=DateTime.Now.AddMinutes(-1);Response.AddHeader("pragma","no-cache");Response.AddHeader("cache-control","private");Response.CacheControl="no-cache";}///用户状态publicenumUserState{online,leave,off,error}///获取登录号publicstringGetUserName(){GetState();if(AdminState==UserState.online){returnSession["app_user"].ToString();}else{returnnull;}}///获取?用户主页publicstringGetPageUrl(){GetState();if(AdminState==UserState.online){returnSession["app_pageUrl"].ToString();}else{returnnull;}}///获取用户信息publicvoidGetUserData(){this.cache=c.returnValue(GetUserName());}publicstringSetPassWord(stringPwd){stringc=System.Configuration.ConfigurationManager.AppSettings["pwdnumber"];byte[]b=System.Text.Encoding.UTF8.GetBytes(c);HMACMD5hmacmd=newHMACMD5(b);Pwd=hmacmd.GetMd5pwd(hmacmd,Pwd);returnPwd;}publicstringSetUserName(stringName){stringd=System.Configuration.ConfigurationManager.AppSettings["usernumber"];byte[]t=t=System.Text.Encoding.UTF8.GetBytes(d);HMACMD5hmacmd=newHMACMD5(t);Name=hmacmd.GetMd5pwd(hmacmd,Name);returnName;}publicvoidLoginOut(){///在应用程序中清除该用户的信息if(System.Web.HttpContext.Current.Application["TheUserLine"]!=null){string[]str=System.Web.HttpContext.Current.Application["TheUserLine"].ToString().Split('|');stringtemp="";for(inti=0;i<str.Length;i++){if(str[i].IndexOf(Session.SessionID)!=-1){temp=str[i];break;}}if(!string.IsNullOrEmpty(temp))System.Web.HttpContext.Current.Application["TheUserLine"]=System.Web.HttpContext.Current.Application["TheUserLine"].ToString().Replace(temp+"|","");}Session.Clear();AdminState=UserState.off;System.Web.Security.FormsAuthentication.SignOut();System.Web.HttpContext.Current.Response.Redirect("/Application/login.aspx");}}

时间: 2025-01-21 05:08:27

c# 对于下面代码怎么运行,新手不会弄的相关文章

java 串口-代码,运行结果如下,为什么结果会重复5次,java新手求解惑

问题描述 代码,运行结果如下,为什么结果会重复5次,java新手求解惑 int x=0; Enumeration portList1 = CommPortIdentifier.getPortIdentifiers(); while (portList1.hasMoreElements()) { x++; test_buffer[x]=((CommPortIdentifier) portList1.nextElement()).getName(); System.out.println("第&qu

string-java代码问题,新手求解。

问题描述 java代码问题,新手求解. class A { int i; A() { add(1);}void add(int v) { i = i + v;}void print() { System.out.println(i);} } class AA extends A { AA() { add(2); } void add(int v) { i = i + v * 2;} } public class Test2 { public static void main(String[] a

utf-8-在网页中编写js代码并运行

问题描述 在网页中编写js代码并运行 这是代码: <!doctype html> <html lang="en"> <head> <meta charset="UTF-8"> <title>在网页中编写代码并运行</title> </head> <body> <div align="center"> <textarea id=&quo

c语言编程-这段C程序设计语言书上的代码,运行后按回车只换行并没有输出最长的行,为什么

问题描述 这段C程序设计语言书上的代码,运行后按回车只换行并没有输出最长的行,为什么 #include#define MAXLINE 1000int getline(char line[]int maxline);void copy(char to[]char from[]);main(){int len;int max;char line[MAXLINE];char longest[MAXLINE];max = 0;while ((len = getline(lineMAXLINE))>0)i

java代码中运行doc命令

问题描述 java代码中运行doc命令 我想要在我的Java代码中运行一段doc命令,然后将正常在doc窗口输出的信息取出来,这个信息应该怎么获取,求助各位大神 解决方案 java doc运行命令 解决方案二: http://developer.51cto.com/art/201107/273282.htm

雅虎财经数据-麻烦各位大神给看下下面这段代码,运行不起来。请帮忙看下是什么原因(是在Python上运行的)

问题描述 麻烦各位大神给看下下面这段代码,运行不起来.请帮忙看下是什么原因(是在Python上运行的) from matplotlib.finance import quotes historical_yahoo from datetime import date import pandas as pd today=date.today() start=(today.year-1,today.month,today.day) quotes=quotes_historical_yahoo('AXP

PHP单元测试-保障代码正确运行的护卫神

代码能否正确运行是应用的关键,如何保证代码的运行就成为至关重要的事情,"对付坦克的最好工具就是另外一台坦克",保证代码的正确运行就是使用代码来保证,软件的的需求是变动的,很难保证这一次的改动,会不会将引起上次需求的什么变化.如果是测试人员发现了可以修改,但是如果部署到线上,引起的问题就会严重的. 单元测试就是提供一些条件,这些条件将产生一定的结果,如果结果不符就不能通过测试,不能通过测试产生的原因就是:测试代码有问题或者程序代码有问题.就需要去检查具体的原因. 引入单元测试产生的最直接

编程-修改了下代码就运行出错了,怎么回事?

问题描述 修改了下代码就运行出错了,怎么回事? #include<iostream> using namespace std; struct list { int data; struct list *next; }; class Stack { struct list *ptr; public: Stack() { ptr=NULL; } void push(int x)//进栈成员函数 { struct list *newnode=new struct list; newnode->

excel 校验怎么写求大家帮帮忙 最好是有代码 的本人新手

问题描述 excel 校验怎么写求大家帮帮忙 最好是有代码 的本人新手

自己写了一个关于java UDP传输文件的代码,运行不了,没有错误,不知道哪里出问题了,求助!

问题描述 自己写了一个关于java UDP传输文件的代码,运行不了,没有错误,不知道哪里出问题了,求助! 发送端: import java.awt.event.ActionEvent; import java.awt.event.ActionListener; import java.io.BufferedInputStream; import java.io.DataInputStream; import java.io.File; import java.io.FileInputStream