August 23, 2007
@ 05:02 PM

ASP.NET'te bir sayfadan diğer sayfaya verileri aktarmak için kullanılan yollardan birisi de bilindiği üzere Cross-Page Postback tekniğidir.

a.aspx sayfasından b.aspx Cross-Page Postback işlemi gerçekleştiğinde a.aspx sayfasına olduğu gibi b.aspx sayfasından erişebilinir.b.aspx sayfasında da PreviousPage özelliği ile a.aspx sayfasına erişiyoruz. a.aspx sayfasındaki herhangi bir kontrole de PreviousPage.FindControl("xx_id") ile erişiyoruz. Peki ya a.aspx deki herhangi bir Property'ye erişmek istersek ?

Eğer b.aspx'e sadece a.aspx den Cross-Page Postback işlemi ile gelindiğini düşünürsek b.aspx'e ;

<%@ PreviousPageType VirtualPath="~/a.aspx" %>

direktifini eklemeniz yeterli. Artık b.aspx.cs de PreviousPage özelliği size a.aspx sayfasını temsil ediyor olacaktır. örneğin;

public partial class a : System.Web.UI.Page
{
    //....

    private int _test;
    public int Test
    {
        get { return _test; }
        set { _test = value; }
    }

}

işte b.aspx sayfasından Test özelliğine direk erişiyor olabileceğiz.

public partial class b: System.Web.UI.Page
{
    protected void Page_Load(object sender, EventArgs e)
    {
        if (PreviousPage != null)
            Response.Write(PreviousPage.Test.ToString());
    }
}

Not : (a)PreviousPage tür dönüştürme işlemi ile de gerçekleştirebilirsiniz.
if (PreviousPage != null)

    Response.Write(((_Default)PreviousPage).Test.ToString());


 
Friday, August 24, 2007 12:03:27 AM (GTB Daylight Time, UTC+03:00)
Çok güzel bir bilgi olmuş ellerinize sağlık hocam. Bende bu tarz birşey araştırıyordum bu aralar :)
Friday, May 22, 2009 12:36:23 PM (GTB Daylight Time, UTC+03:00)
Hi all. Very interesting & professional site. You done great work. Help me! Could you help me find sites on the: Turbo Tax. I found only this - <a href="http://turbo-tax.biz">turbo tax</a>. New hope recovery center for drug and alcohol addiction treatment alcohol and drug rehab center. Introduction alcohol abuse and dependence are associated with deaths annually in the united states us cause percent of all traffic fatalities, and. Thank you very much :confused:. Tanner from Montenegro.
Friday, November 06, 2009 3:44:08 AM (GTB Standard Time, UTC+02:00)
Do you want to buy some sheepskin boots, please come to www.findugg.com.Full range of UGG boots for Men and Women to buy online. Fast and free shipping to worldwide, competitive price, high quality, and efficient service.

Read more:http://www.findugg.com
Name
E-mail
Home page

Comment (HTML not allowed)  

Enter the code shown (prevents robots):

Live Comment Preview