使用PreviousPage獲取源頁資訊

2021-09-08 07:54:05 字數 673 閱讀 2226

下面這個例子是演示在masterpage母板下面。例子始起頁放乙個textbox和乙個button,並用postbackurl來導向目標頁。如:

<

asp:content 

id="content1"

contentplaceholderid

="contentplaceholder1"

runat

="server"

>

<

asp:textbox 

id="textbox1"

runat

="server"

>

asp:textbox

>

<

asp:button 

id="button1"

runat

="server"

postbackurl

="~/default2.aspx"

text

="button"

/>

asp:content

>

在目標頁的page_load可以寫接收資料,把接收到的值顯示在label上:

protected

void

page_load(

object

sender, eventargs e)}

使用PreviousPage獲取源頁資訊

下面這個例子是演示在masterpage母板下面。例子始起頁放乙個textbox和乙個button,並用postbackurl來導向目標頁。如 asp content id content1 contentplaceholderid contentplaceholder1 runat server ...

使用PreviousPage獲取源頁資訊 2

你可以參考這篇 insus.net覺得它寫得很不理想。因為不想寫得這樣複雜,或者有其它id變化的可能,如 contentplaceholderid contentplaceholder1 有可能變為contentplaceholderid contentplaceholder3 id textbox...

運用PreviousPage簡化提交流程

運用previouspage簡化提交流程 若是乙個page1.aspx向page2.aspx提交的流程,則在page2.aspx的頂部新增如下宣告 previouspagetype virtualpath page1.aspx 設定page1.aspx的postbackurl屬性為 page2.as...