gpt4 book ai didi

c# - WebMethod 在 C# ASP.NET Codebehind 中是静态的问题

转载 作者:太空宇宙 更新时间:2023-11-03 15:09:52 25 4
gpt4 key购买 nike

由于单个页面上有多个表单引起的问题,我使用对 WebMethod 的 AJAX 调用来提交我的表单,而不是使用 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 存在错误——页面、上下文和请求都显示它们不能是静态的。

具体错误:(非静态字段、方法或属性“Control.Page”需要对象引用)以及上下文和请求。

最佳答案

从简单的评论中移出

我最近遇到了同样的问题。

幸运的是,每当用户登录我们的应用程序时,我们都会将加密的用户信息存储到 session 变量中,因此我检索该信息,将其传递给我们的用户类构造函数,该类构造函数对其进行解密,然后我可以使用我的登录用户信息没有麻烦。

因此,我的解决方案是将用户信息存储在 session 中,但要小心存储的内容。也许序列化用户对象并存储在 session 中,然后,当你需要它时

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 是最常用的两种序列化类型,特别是在 Web 方法上。二进制序列化也是混淆登录用户信息的好选择

关于c# - WebMethod 在 C# ASP.NET Codebehind 中是静态的问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41729256/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com