Home All Groups Group Topic Archive Search About

How to gather the caller page information?

Author
13 Jan 2006 2:23 AM
ABC
How to gather the caller page information?  I want to check the enter from
when entering the onload event of the page.  Which properties or functions
have that information?

Author
13 Jan 2006 10:56 AM
DavidG
Are you asking how to retrieve values when the client posts back the
page, if so:

1) Server controls are accessed using the object properties, so if my
page has a textbox control called txtCustomerName I can access it in
code with :

if (Page.IsPostBack)
        {
            string customerName = txtCustomerName.Text;

            Label1.Text = customerName;
        }

2) html controls you can use the Request object in code

if (Page.IsPostBack)
        {
            string customerName =
Request["txtCustomerName"].ToString();
            Label1.Text = customerName;
        }

HTH

-----------------------------------------
David Gray
ASP.NET/C# Developer/Architect (MCAD.NET)

Show quoteHide quote
On Fri, 13 Jan 2006 10:23:09 +0800, "ABC" <a**@abc.com> wrote:

>How to gather the caller page information?  I want to check the enter from
>when entering the onload event of the page.  Which properties or functions
>have that information?
>

Bookmark and Share