作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
对于我正在开发的网站,我有两个 html 按钮,而不是 ASP,因为我不希望它们回传。对于提交按钮,我正在调用实现 PageMethods 的 javascript 函数以从代码隐藏调用 C# 方法。这是按钮和 javascript 的代码。
<fieldset id="Fieldset">
<button onclick="SendForm();">Send</button>
<button onclick="CancelForm();">Cancel</button>
</fieldset>
<asp:ScriptManager ID="ScriptManager1" EnablePageMethods="true" EnablePartialRendering="true" runat="server" />
<script type="text/javascript">
function SendForm() {
var email = $get("txtEmail").value;
PageMethods.SendForm(email, OnSucceeded, OnFailed);
}
function OnSucceeded() {
$get("Fieldset").innerHTML = "<p>Thank you!</p>";
}
function OnFailed(error) {
alert(error.get_message());
}
</script>
此处显示的代码隐藏方法:
[WebMethod]
public static void SendForm(string email)
{
if (string.IsNullOrEmpty(email))
{
throw new Exception("You must supply an email address.");
}
else
{
if (IsValidEmailAddress(email))
{
bool[] desc = new bool[14];
bool[] local = new bool[14];
bool[] other = new bool[14];
for (int i = 1; i <= 14; i++)
{
desc[i] = ((CheckBox)Page.FindControl("chkDesc" + i.ToString())).Checked;
local[i] = ((CheckBox)Page.FindControl("chkLocal" + i.ToString())).Checked;
other[i] = ((CheckBox)Page.FindControl("chkOther" + i.ToString())).Checked;
/* Do stuff here */
}
}
else
{
throw new Exception("You must supply a valid email address.");
}
}
}
除非声明为静态,否则不起作用。将其声明为静态会阻止我选中页面上的复选框,因为它会生成“非静态字段、方法或属性需要对象引用”错误。所以我的问题可以从两个方向中的任何一个来解决。 A)有没有办法让这个方法在不声明为静态的情况下工作? B) 如果方法是静态的,我如何检查复选框。
最佳答案
它必须是静态的,没有办法解决这个问题;但是你可以这样访问页面
Page page = HttpContext.Current.Handler as Page;
并在此页面实例上执行 FindControl。
desc[i] = ((CheckBox)page.FindControl("chkDesc" + i.ToString())).Checked;
关于c# - 有没有办法从页面方法中删除静态声明?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8609380/
我是一名优秀的程序员,十分优秀!