Click here to Skip to main content
16,013,465 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: Edit button in a datalist control which is in another datalist control Pin
minhpc_bk1-Aug-06 16:05
minhpc_bk1-Aug-06 16:05 
QuestionMaster Page+ content page+Data Pin
Naveed Kamboh1-Aug-06 5:03
Naveed Kamboh1-Aug-06 5:03 
AnswerRe: Master Page+ content page+Data Pin
ToddHileHoffer1-Aug-06 5:19
ToddHileHoffer1-Aug-06 5:19 
AnswerRe: Master Page+ content page+Data Pin
Naveed Kamboh1-Aug-06 5:39
Naveed Kamboh1-Aug-06 5:39 
GeneralRe: Master Page+ content page+Data Pin
ToddHileHoffer1-Aug-06 5:56
ToddHileHoffer1-Aug-06 5:56 
GeneralRe: Master Page+ content page+Data Pin
Naveed Kamboh1-Aug-06 6:16
Naveed Kamboh1-Aug-06 6:16 
GeneralRe: Master Page+ content page+Data/I have sorted Pin
Naveed Kamboh1-Aug-06 7:20
Naveed Kamboh1-Aug-06 7:20 
GeneralRe: Master Page+ content page+Data Pin
ToddHileHoffer1-Aug-06 7:25
ToddHileHoffer1-Aug-06 7:25 
In the codebehind page of the content page you can update any control on the master page.

for example
<br />
TextBox txt = page.master.findcontrol("txtOnMasterPageID");<br />
txt.text = address;<br />


Now you can run this code write before the page is rendered
for example
<br />
protected void Page_Load(object sender, EventArgs e)<br />
{<br />
        //Add the event handler<br />
        this.PreRender += new System.EventHandler(this.Page_PreRender);<br />
}<br />
    protected void Page_PreRender(object sender, EventArgs e)<br />
{<br />
    {<br />
    TextBox txt = page.master.findcontrol("txtOnMasterPageID");<br />
    txt.text = address;<br />
    }<br />
}


how vital enterprise application are for proactive organizations leveraging collective synergy to think outside the box and formulate their key objectives into a win-win game plan with a quality-driven approach that focuses on empowering key players to drive-up their core competencies and increase expectations with an all-around initiative to drive up the bottom-line. But of course, that's all a "high level" overview of things
--thedailywtf 3/21/06

QuestionHow do access server side textbox value in javascript Pin
ragupathi.p1-Aug-06 5:00
ragupathi.p1-Aug-06 5:00 
AnswerRe: How do access server side textbox value in javascript Pin
minhpc_bk1-Aug-06 16:07
minhpc_bk1-Aug-06 16:07 
QuestionHow do I extend the precision of a range validator, 1.1 Pin
mrinmayeek1-Aug-06 4:46
mrinmayeek1-Aug-06 4:46 
AnswerRe: How do I extend the precision of a range validator, 1.1 Pin
Paddy Boyd1-Aug-06 5:03
Paddy Boyd1-Aug-06 5:03 
GeneralRe: How do I extend the precision of a range validator, 1.1 Pin
mrinmayeek1-Aug-06 5:08
mrinmayeek1-Aug-06 5:08 
GeneralRe: How do I extend the precision of a range validator, 1.1 Pin
Paddy Boyd1-Aug-06 5:09
Paddy Boyd1-Aug-06 5:09 
Questionioionsweb.config setting for forms authentication in ASP.NET Pin
pitturamakrishna1-Aug-06 4:42
pitturamakrishna1-Aug-06 4:42 
AnswerRe: ioionsweb.config setting for forms authentication in ASP.NET Pin
minhpc_bk1-Aug-06 16:10
minhpc_bk1-Aug-06 16:10 
GeneralRe: ioionsweb.config setting for forms authentication in ASP.NET Pin
ravikiranreddydharmannagari1-Aug-06 20:44
ravikiranreddydharmannagari1-Aug-06 20:44 
QuestionProblem Accessing Access Database from ASP.NET Pin
samadams_20061-Aug-06 4:13
samadams_20061-Aug-06 4:13 
AnswerRe: Problem Accessing Access Database from ASP.NET Pin
minhpc_bk1-Aug-06 16:14
minhpc_bk1-Aug-06 16:14 
QuestionHelp with session Pin
alexfromto1-Aug-06 3:50
alexfromto1-Aug-06 3:50 
AnswerRe: Help with session Pin
Paddy Boyd1-Aug-06 5:36
Paddy Boyd1-Aug-06 5:36 
GeneralRe: Help with session Pin
alexfromto1-Aug-06 6:41
alexfromto1-Aug-06 6:41 
QuestionCreate a Folder on Server Pin
Amit Agarrwal1-Aug-06 2:36
Amit Agarrwal1-Aug-06 2:36 
AnswerRe: Create a Folder on Server Pin
Tim Kohler1-Aug-06 2:58
Tim Kohler1-Aug-06 2:58 
GeneralRe: Create a Folder on Server Pin
Amit Agarrwal1-Aug-06 20:43
Amit Agarrwal1-Aug-06 20:43 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.