![]() |
|
|
|||||||
![]() |
ASP Net - previous master page question |
|
|
Thread Tools | Search this Thread |
|
|
#1 |
|
I'm using the master page for a single post back operation to another page and i'm having trouble finding how to get a previous master page textbox. Note: both pages use the same masterpage. this is what iv'e tried so far but this does not fire. protected void Page_Load(object sender, EventArgs e) { if (PreviousPage != null) { tbTrepID.Text = ((TextBox)PreviousPage.NamingContainer.FindControl ("tbTrepID")).Text; } } -- (i''ll be asking a lot of these, but I find C# totally way cooler than vb and there''s no go''n back!!!) thanks (as always) kes WebBuilder451 |
|
|
|
|
#2 |
|
Posts: n/a
|
got it. Thanks
if (PreviousPage != null) { tbTrepID.Text = ((TextBox)PreviousPage.Master.FindControl("tbTrepI D")).Text; } -- (i''ll be asking a lot of these, but I find C# totally way cooler than vb and there''s no go''n back!!!) thanks (as always) kes "WebBuilder451" wrote: > > I'm using the master page for a single post back operation to another page > and i'm having trouble finding how to get a previous master page textbox. > Note: both pages use the same masterpage. > this is what iv'e tried so far but this does not fire. > protected void Page_Load(object sender, EventArgs e) > { > if (PreviousPage != null) > { > tbTrepID.Text = > ((TextBox)PreviousPage.NamingContainer.FindControl ("tbTrepID")).Text; > } > } > -- > (i''ll be asking a lot of these, but I find C# totally way cooler than vb > and there''s no go''n back!!!) > thanks (as always) > > kes WebBuilder451 |
|
|
|
#3 |
|
Posts: n/a
|
"WebBuilder451" <> wrote in message
news:B3508ADA-2D1B-47A2-9703-... > > I'm using the master page for a single post back operation to another page > and i'm having trouble finding how to get a previous master page textbox. > Note: both pages use the same masterpage. > this is what iv'e tried so far but this does not fire. > protected void Page_Load(object sender, EventArgs e) > { > if (PreviousPage != null) > { > tbTrepID.Text = > ((TextBox)PreviousPage.NamingContainer.FindControl ("tbTrepID")).Text; > } > } > -- I am not sure of the precise method to do this. Perhaps PreviousPage.Master.FindControl("textBoxName") You may have to bubble the information down to the actual page before submit, as I am not sure what information is sent to the next page. > (i''ll be asking a lot of these, but I find C# totally way cooler than vb > and there''s no go''n back!!!) > thanks (as always) C# is more concise, which is what I like most about it, although the IDE does finish things for you in VB. -- Gregory A. Beamer MVP, MCP: +I, SE, SD, DBA Subscribe to my blog http://gregorybeamer.spaces.live.com/lists/feed.rss or just read it: http://gregorybeamer.spaces.live.com/ ************************************************* | Think outside the box! | ************************************************* Cowboy \(Gregory A. Beamer\) |
|
|
|
#4 |
|
Posts: n/a
|
thank you. That's what i did. Your answer is appreciated!!!
-- (i''ll be asking a lot of these, but I find C# totally way cooler than vb and there''s no go''n back!!!) thanks (as always) kes "Cowboy (Gregory A. Beamer)" wrote: > "WebBuilder451" <> wrote in message > news:B3508ADA-2D1B-47A2-9703-... > > > > I'm using the master page for a single post back operation to another page > > and i'm having trouble finding how to get a previous master page textbox. > > Note: both pages use the same masterpage. > > this is what iv'e tried so far but this does not fire. > > protected void Page_Load(object sender, EventArgs e) > > { > > if (PreviousPage != null) > > { > > tbTrepID.Text = > > ((TextBox)PreviousPage.NamingContainer.FindControl ("tbTrepID")).Text; > > } > > } > > -- > > I am not sure of the precise method to do this. Perhaps > > PreviousPage.Master.FindControl("textBoxName") > > You may have to bubble the information down to the actual page before > submit, as I am not sure what information is sent to the next page. > > > (i''ll be asking a lot of these, but I find C# totally way cooler than vb > > and there''s no go''n back!!!) > > thanks (as always) > > C# is more concise, which is what I like most about it, although the IDE > does finish things for you in VB. > > -- > Gregory A. Beamer > MVP, MCP: +I, SE, SD, DBA > > Subscribe to my blog > http://gregorybeamer.spaces.live.com/lists/feed.rss > > or just read it: > http://gregorybeamer.spaces.live.com/ > > ************************************************* > | Think outside the box! > | > ************************************************* > > > WebBuilder451 |
|
![]() |
| Thread Tools | Search this Thread |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Digital Album Master - Make High Resolution Slideshow For TV | jerryliang | Software | 0 | 07-17-2009 03:16 AM |
| Certified Master question | jim | MCITP | 2 | 08-28-2008 02:47 AM |
| Classic Original Broadcasts Trading List - Updated ( w/o/c ) | porkys1982@sbcglobal.net | DVD Video | 0 | 12-05-2005 03:38 AM |
| Classic Original Broadcasts Trading List - Updated ( w/o/c ) | porkys1982@sbcglobal.net | DVD Video | 0 | 11-19-2005 04:46 PM |
| Original Airings : The A-Team , M*A*S*H , Taxi , Barney Miller , WKRP | porkys1982@sbcglobal.net | DVD Video | 0 | 08-15-2005 03:09 AM |