Masterpage and default.aspx
am 10.04.2008 14:09:01 von JapeCan I refer to the controls on default.aspx from the masterpage?
I have a form on the masterpage which sends information that is in a
gridview in the default.aspx page.
Can I refer to the controls on default.aspx from the masterpage?
I have a form on the masterpage which sends information that is in a
gridview in the default.aspx page.
Hi,
If you want access control to content page (control, which exists on master
page), then you can access it through like this..
HtmlControl body = (HtmlControl)this.Page.Master.FindControl("Body");
"Jape" wrote:
> Can I refer to the controls on default.aspx from the masterpage?
> I have a form on the masterpage which sends information that is in a
> gridview in the default.aspx page.
On Apr 10, 9:51 am, Ujval Shah
wrote:
> Hi,
>
> If you want access control to content page (control, which exists on master
> page), then you can access it through like this..
>
> HtmlControl body = (HtmlControl)this.Page.Master.FindControl("Body");
>
I think he wants it the other way round. I.e., in his master page, he
would like to get a reference to a control in a child page of the
master page.
Yes, this is what i want.
The gridview is on the contentpage and i want to acess it from the masterpage.
"gnewsgroup" wrote:
> On Apr 10, 9:51 am, Ujval Shah
> wrote:
> > Hi,
> >
> > If you want access control to content page (control, which exists on master
> > page), then you can access it through like this..
> >
> > HtmlControl body = (HtmlControl)this.Page.Master.FindControl("Body");
> >
>
> I think he wants it the other way round. I.e., in his master page, he
> would like to get a reference to a control in a child page of the
> master page.
>
Hi Jape,
Given the below markup & code, this may be of help to you:
GridView g = (GridView) myPlaceHolder.FindControl("myDDL");
Site1.master.aspx:
<%@ Master Language="C#" AutoEventWireup="true"
CodeBehind="Site1.master.cs" Inherits="Site1" %>