我有这个方法:
[System.Web.Services.WebMethodAttribute(), System.Web.Script.Services.ScriptMethodAttribute()]
public static string[] GetCompletionList(string prefixText, int count, string contextKey)
{
//some logic
return results.ToArray();
}
我需要查看contextKey变量。
所以我尝试在上面的方法中使用这些行:
Response.Write(contextKey);
Response.End();
当我尝试使用上面的行时,我收到此错误:
Compiler Error Message: CS0120: An object reference is required for the non-static field, method, or property 'System.Web.UI.Page.Response.get'
问题是我的方法是静态的,我不能使用Response类。
知道是否有其他方法可以查看prefixText
值?
该项目没有解决方案。我用记事本++打开它。