这是我的母版页文件。我需要在子页面中输入strName,id,url,startime等变量。我知道我们也可以在我们的子页面中编写这个逻辑。但是,我想仅在子页面中访问此母版页变量。请建议。我不能在每个set / get方法中编写这个逻辑。在子页面中访问这些变量时,我得到空值。基本上这里是在子页面调用
后调用主页面调用1)MASTER PAGE NAME:MyMasterPage
public partial class MyMasterPage: MasterPage
{
public string strName = string.Empty;
public string id= string.Empty;
public string url = string.Empty;
public string startTime = string.Empty;
public string endTime = string.Empty;
public string remoteUrl = string.empty;
public void Page_Load(object sender, EventArgs e)
{
DataTable dtEventTable = DataAccessManager.GetEventInfo(Connection);
if (dtEventTable.Rows.Count > 0)
{
strName = dtEventTable.Rows[0]["NAME"].ToString();
id = dtEventTable.Rows[0]["ID"].ToString();
url= dtEventTable.Rows[0]["URL"].ToString();
starttime = dtEventTable.Rows[0]["starttime"].ToString();
endtime = dtEventTable.Rows[0]["endtime"].ToString();
remotelive = dtEventTable.Rows[0]["remotelive"].ToString();
// assume that strName = "TCG",id=5, startime=20111001 etc.
}
}
}
答案 0 :(得分:13)
string name = ((MyMasterPage)this.Master).strName;
答案 1 :(得分:1)
由Ramesh T在https://forums.asp.net/post/5557778.aspx
上找到通过在ur内容(aspx页面)中添加@ MasterType指令,您可以更好地创建对您的母版页的强类型引用,如下所示
<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.example.pooja.courtcounter.MainActivity">
<TextView
app:layout_constraintHorizontal_weight="1"
android:id="@+id/team_nameA"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:text="Team A"
android:padding="4dp" />
<TextView
android:id="@+id/team_nameB"
app:layout_constraintHorizontal_weight="1"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:text="Team B"
android:padding="4dp"
app:layout_constraintLeft_toRightOf="@+id/team_nameA" />
<TextView
android:id="@+id/team_a_score"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="0"
android:gravity="center_horizontal"
app:layout_constraintTop_toBottomOf="@+id/team_nameA"
android:padding="4dp" />
<Button
android:id="@+id/points_3"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="+3 points"
android:background="#EEEEEE"
app:layout_constraintTop_toBottomOf="@+id/team_a_score"
android:layout_margin="8dp"
android:onClick="points3" />
<Button
android:id="@+id/points_2"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="+2 points"
android:background="#EEEEEE"
app:layout_constraintTop_toBottomOf="@+id/points_3"
android:layout_margin="8dp"
android:onClick="points2" />
<Button
android:id="@+id/free_throw"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="free throw"
android:background="#EEEEEE"
app:layout_constraintTop_toBottomOf="@+id/points_2"
android:layout_margin="8dp"
android:onClick="freethrow" />
</android.support.constraint.ConstraintLayout>
并访问其aspx页面中的成员或后面的代码(aspx.cs),如下所示
<%@ MasterType virtualPath="~/MasterPage1.master"%>
这样你就不需要施放。
答案 2 :(得分:1)
这将奏效,就像穆罕默德·哈桑(Muhammad Hasan)和皮特(Pete)建议的那样:
string name = ((MyMasterPage)this.Master).strName;
或者:
<%@ MasterType virtualPath="~/MasterPage1.master"%>
var test1Text = Master.test1;
但是,请考虑母版页Page_Load事件中的代码是在内容页中的 之后执行的。
因此,如果您在母版页中设置变量的值,然后尝试进入内容页,则将获得空值。
您将在此处找到更多信息:https://msdn.microsoft.com/en-us/library/dct97kc3.aspx
答案 3 :(得分:-3)
您可以使用Session []对象从其他页面访问变量。