我研究了 FindControl 调用,但没有发现任何提及 Public Shared Sub 问题。我正在使用一个 aspx 页面,它是 vb.net 中的代码隐藏。我没有使用母版页。
我已经在这个页面上成功地使用 FindControl 在正常的公共子方法中,如下所示,引用名为 panContent 的主面板对象。
Dim rdobtn As RadioButton = DirectCast(panContent.FindControl("rbFarm"), RadioButton)
但是在 Public Shared Sub 中,不能使用 panContent 对象。我收到错误“对非共享成员的引用需要对象引用”。我尝试使用 Page.FindControl("panContent") 和 Me.FindControl("panContent") 创建一个 Panel 对象并得到相同的错误。aspx 页面的顺序是:body 标签、form 标签、scriptmanager 标签、一个更新面板(命名为 upMain),然后是主面板(命名为 panContent)。
如何从控件创建对象,以便更改共享子中的对象属性?
Aspx 页面(编辑空间)
<%@ Page Language="VB" AutoEventWireup="false" Inherits="GM._Default" CodeBehind="Default.aspx.vb" %>
<% Register Assembly="AjaxControlToolkit, Version, etc... %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title>GMN</title>
<link href="StyleSheet.css" rel="stylesheet" type="text/css" />
<script type="text/javascript" src="http://ajax.microsoft.com/ajax/jquery/jquery-1.4.2.js"></script>
<script type="text/javascript">
function fnConfirmMsg() {
var ans = confirm("This will delete any saved bank information. Continue?");
if (ans == true) {
$.ajax({
type: "POST",
url: "Default.aspx/DraftContinue",
contentType: 'application/json; charset=utf-8',
data: '{}',
dataType: 'json',
success: function (result) {
}
});
return true;
}
else {
return false;
}
}
</script>
</head>
<body>
<form id="form1" runat="server">
<asp:ScriptManager ID="ScriptManager1" runat="server" />
<asp:UpdatePanel ID="upMain" runat="server" UpdateMode="conditional">
<ContentTemplate>
...other divs...
<div id="centercontent">
<asp:Panel ID="panContent" runat="server">
<table border="0">
...other <tr> with controls...
<tr>
<td>
<asp:DropDownList ID="ddlDraft" runat="server" AutoPostBack="true">
<asp:ListItem Value="Y">Yes</asp:ListItem>
<asp:ListItem Value="N">No</asp:ListItem>
</asp:DropDownList>
</td>
<td>
<asp:RadioButton ID="rbFarm" runat="server" AutoPostBack="true" />
</td>
</tr>
...other <tr> with controls...
</table>
</asp:Panel>
</div>
</ContentTemplate>
</asp:UpdatePanel>
</form>
</body>
</html>
代码隐藏(仅显示相关项目)
Protected Sub ddlDraft_SelectedIndexChanged(sender As Object, e As EventArgs) Handles ddlDraft.SelectedIndexChanged
If ViewState("DraftYorN").Equals("Y") And ddlDraft.SelectedValue = "N" Then
ScriptManager.RegisterStartupScript(Me, Me.GetType(), "callConfirmMsg", "fnConfirmMsg();", True)
End If
End Sub
<System.Web.Services.WebMethod()> _
Public Shared Sub DraftContinue()
Dim ddlDraft As DropDownList = DirectCast(panContent.FindControl("dlDraftRenewMembership"), DropDownList)
Dim rbtnFarm as RadioButton = DirectCast(panContent.FindControl("rbFarm"), RadioButton)
If ddlDraft.SelectedValue = "N" then
rbtnFarm.Checked = True
End If
End Sub
它是给出错误的 panContent 。所以我想我会使用它的容器 upMain 来制作 panContent 对象。得到同样的错误。