私は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で使用したい変数がありますが、その方法は?