ASP.Netのお勉強

画面遷移の値の受け渡し@ASP.Net

画面遷移での値の受け渡しです。

Server.Transferを利用して、画面遷移を行う場合、
遷移先にて、遷移元のPageを取得することができます。

以下では、遷移元にてServer.Transferを用いて遷移先に遷移します。
遷移先のPageLoadにて、遷移元のPageのTextBoxを取得します。
取得したTextBoxの値を、遷移先のTextBoxにて表示します。

●遷移元aspx

<%@ Page Language="VB" AutoEventWireup="false" CodeFile="Page.aspx.vb" Inherits="Page" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
    <title>遷移元</title>
</head>
<body>
    <form id="form1" runat="server">
    <div>
        遷移元<br />
        <asp:TextBox ID="TextBox1" runat="server"></asp:TextBox>
        <br />
        <asp:Button ID="Button1" runat="server" Text="遷移" />
    </div>
    </form>
</body>
</html>


●遷移元vb

Partial Class Page
    Inherits System.Web.UI.Page

    Protected Sub Button1_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles Button1.Click
        Server.Transfer("page2.aspx")
    End Sub
End Class


●遷移先aspx

<%@ Page Language="VB" AutoEventWireup="false" CodeFile="Page2.aspx.vb" Inherits="Page2" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>遷移先</title>
</head>
<body>
<form id="form1" runat="server">
<div>
遷移先<br />
<asp:TextBox ID="TextBox2" runat="server"></asp:TextBox>
</div>
</form>
</body>
</html>


●遷移先vb

Partial Class Page2
    Inherits System.Web.UI.Page

    Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
        If Not IsNothing(Page.PreviousPage) Then
            Dim txt As TextBox = Page.PreviousPage.FindControl("TextBox1")
            Me.TextBox2.Text = txt.Text
        End If
    End Sub
End Class

Copyright (C) ASP.Netのお勉強. All Rights Reserved.