我有一个有评论部分的页面。此部分与 a 通信以WebMethod
插入新评论。
[WebMethod]
public static bool insertComment(string commentString)
{
//userName validation here
string userName = (FormsAuthentication.Decrypt(Request.Cookies[FormsAuthentication.FormsCookieName].Value).Name);
return new CommentClass().InsertComment(commentString, userName);
}
问题是:“非静态字段需要对象引用”。我知道我可以从隐藏字段或 发送信息div
,但是,可以轻松更改该信息字段。那么在服务器端可以使用哪种方式来知道哪个用户正在发布?多谢!