WebMethod 在 C# 中是静态的问题 ASP.NET 代码隐藏
Issue with WebMethod being Static in C# ASP.NET Codebehind
由于单个页面上有多个表单引起的问题,我使用 AJAX 调用 WebMethod 来提交我的表单,而不是使用 ASP 控件。但是,这样做时,我以前用来在数据库中创建新条目的方法不再有效,因为 WebMethod 必须是静态的。
我已经使用 ASPX 身份验证对我的用户进行了身份验证,并且正在尝试使用代码隐藏检索该用户的用户名和 ID。用户已在 Page_Load 上通过身份验证,但我似乎无法通过我的 WebMethod 访问此信息。这可以在静态 WebMethod 内部执行吗?预先感谢您的所有帮助!
[WebMethod]
public static void CreateJob()
{
Submit_Job();
}
public static void Submit_Job()
{
if (Page.User.Identity.IsAuthenticated)
{
try
{
string username = Context.User.Identity.Name;
}
catch
{
Context.GetOwinContext().Authentication.SignOut();
}
}
var manager = new UserManager();
var usernameDatabase = new ApplicationUser() { UserName = username };
usernameDatabase = manager.Find(username, "password here");
if (usernameDatabase != null)
{
IdentityHelper.SignIn(manager, usernameDatabase, isPersistent: false);
string jobTitle = Request.Form["jobTitle"];
using (var ctx = new CreateUserContext(ConfigurationManager.ConnectionStrings["myconnectionstring"].ConnectionString))
{
Job job = new Job()
{
job_title = jobTitle
};
ctx.Jobs.Add(job);
ctx.SaveChanges();
}
}
}
编辑:
例如 Page.User.Identity.IsAuthenticated 存在错误——Page、Context 和 Request 都显示它们不能是静态的。
具体错误:
(非静态字段、方法或 属性 'Control.Page' 以及上下文和请求需要对象引用。
从一个简单的评论中移动它
我最近遇到了同样的问题。
幸运的是,每当用户登录我们的应用程序时,我们都会将加密的用户信息存储到会话变量中,因此我检索该信息,将其传递给用户的 class 构造函数,该构造函数对其进行解密,然后我可以轻松使用我的登录用户信息。
所以,我的解决方案是将用户信息存储在会话中,但要小心存储的内容。也许序列化用户对象并存储在会话中,然后,当你需要它时
public void Page_Load()
{
// Retrieve authenticated user information
UserClass userObject = GetUserCredentials();
// Call a method that turns the authenticated user object into a string that contains the users session information. Given the sensivity of this information, might want to try to encrypt it or offuscate it. Store it in a session variable as a string
Session["UserContext"] = userObject.SerializeUser()
/* rest of the page code goes here */
}
[WebMethod(EnableSession=true)]
public static void CreateJob()
{
Submit_Job();
}
public static void Submit_Job()
{
// Lets get the authenticated user information through the session variable. Due to the static nature of the method, we can't access the Session variables directly, so we call it using the current HttpContext
string serializedUserInfo = )HttpContext.Current.Session["UserContext"].ToString();
// Let's create the users object. In my case, we have a overcharged constructor that receives the users serialized/encrypted information, descrypts it, deserializes it, and return a instance of the class with the deserialized information
UserClass userObject = new UserClass(serializedUserInfo);
// Do whatever the method has to do now!
}
关于连载的主题,使用 "c# object serialization" 快速 google 搜索将为您找到几个很好的匹配项。 XML 和 JSON 是最常用的两种序列化,特别是在网络方法上。二进制序列化是混淆登录用户信息的好选择
由于单个页面上有多个表单引起的问题,我使用 AJAX 调用 WebMethod 来提交我的表单,而不是使用 ASP 控件。但是,这样做时,我以前用来在数据库中创建新条目的方法不再有效,因为 WebMethod 必须是静态的。
我已经使用 ASPX 身份验证对我的用户进行了身份验证,并且正在尝试使用代码隐藏检索该用户的用户名和 ID。用户已在 Page_Load 上通过身份验证,但我似乎无法通过我的 WebMethod 访问此信息。这可以在静态 WebMethod 内部执行吗?预先感谢您的所有帮助!
[WebMethod]
public static void CreateJob()
{
Submit_Job();
}
public static void Submit_Job()
{
if (Page.User.Identity.IsAuthenticated)
{
try
{
string username = Context.User.Identity.Name;
}
catch
{
Context.GetOwinContext().Authentication.SignOut();
}
}
var manager = new UserManager();
var usernameDatabase = new ApplicationUser() { UserName = username };
usernameDatabase = manager.Find(username, "password here");
if (usernameDatabase != null)
{
IdentityHelper.SignIn(manager, usernameDatabase, isPersistent: false);
string jobTitle = Request.Form["jobTitle"];
using (var ctx = new CreateUserContext(ConfigurationManager.ConnectionStrings["myconnectionstring"].ConnectionString))
{
Job job = new Job()
{
job_title = jobTitle
};
ctx.Jobs.Add(job);
ctx.SaveChanges();
}
}
}
编辑: 例如 Page.User.Identity.IsAuthenticated 存在错误——Page、Context 和 Request 都显示它们不能是静态的。
具体错误: (非静态字段、方法或 属性 'Control.Page' 以及上下文和请求需要对象引用。
从一个简单的评论中移动它
我最近遇到了同样的问题。
幸运的是,每当用户登录我们的应用程序时,我们都会将加密的用户信息存储到会话变量中,因此我检索该信息,将其传递给用户的 class 构造函数,该构造函数对其进行解密,然后我可以轻松使用我的登录用户信息。
所以,我的解决方案是将用户信息存储在会话中,但要小心存储的内容。也许序列化用户对象并存储在会话中,然后,当你需要它时
public void Page_Load()
{
// Retrieve authenticated user information
UserClass userObject = GetUserCredentials();
// Call a method that turns the authenticated user object into a string that contains the users session information. Given the sensivity of this information, might want to try to encrypt it or offuscate it. Store it in a session variable as a string
Session["UserContext"] = userObject.SerializeUser()
/* rest of the page code goes here */
}
[WebMethod(EnableSession=true)]
public static void CreateJob()
{
Submit_Job();
}
public static void Submit_Job()
{
// Lets get the authenticated user information through the session variable. Due to the static nature of the method, we can't access the Session variables directly, so we call it using the current HttpContext
string serializedUserInfo = )HttpContext.Current.Session["UserContext"].ToString();
// Let's create the users object. In my case, we have a overcharged constructor that receives the users serialized/encrypted information, descrypts it, deserializes it, and return a instance of the class with the deserialized information
UserClass userObject = new UserClass(serializedUserInfo);
// Do whatever the method has to do now!
}
关于连载的主题,使用 "c# object serialization" 快速 google 搜索将为您找到几个很好的匹配项。 XML 和 JSON 是最常用的两种序列化,特别是在网络方法上。二进制序列化是混淆登录用户信息的好选择