我有一個母版頁和一個內容頁。 在我的母版頁中,我有一個文本框,一個按鈕和一個內容佔位符。 的目標是在主頁中的文本框中將用戶輸入的文本改變爲內容頁面中的文本(不分配給任何字段,僅僅是文本/內容頁面的內容)。 這裏的問題是從文本框中獲取文本到asp.net中的masterpage中的文本框使用c#
即使我在文本框中改變的文本和按鈕點擊前面的文字更新,並在內容頁面沒有改變... 這裏是我的母版頁代碼
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");
}
}
...在內容頁...它是空的?請添加缺少的代碼! – mortb
請做更多清除您的查詢 –