我有一个 index.aspx (index.aspx.cs) 将包括 body.aspx (body.aspx.cs) 使用Server.execute("body.aspx");
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Data;
using System.Data.SqlClient;
using System.Configuration;
using System.Collections;
public partial class index : System.Web.UI.Page
{
public string text1 = "abc";
protected void Page_Load(object sender, EventArgs e)
{
}
}
在 index.aspx.cs 中,有一个text1
我想在 body.aspx.cs 中使用的变量,该怎么做?