我有一个母版页和一个内容页。在我的母版页中,我有一个文本框、一个按钮和一个内容占位符。目的是使用用户在母版页中的文本框中输入的文本更改内容页中的文本(不分配到任何字段,只是内容页的文本/内容)。这是问题所在
即使我更改了文本框中的文本并单击了按钮,上一个文本也已更新,并且内容页面中没有任何更改...这是我在母版页中的代码
public partial class example : System.Web.UI.MasterPage
{
FileInfo fil = new FileInfo("c:/documents and settings/administrator/my documents/visual studio 2010/Projects/WebApplication1/WebApplication1/contentpage.aspx");
protected void Page_Load(object sender, EventArgs e)
{
contenttext.Text = File.ReadAllText(fil.ToString());
}
protected void clicked_Click(object sender, EventArgs e)
{
File.WriteAllText(fil.ToString(),this.contenttext.Text);
Response.Redirect("contentpage.aspx");
}
}