I need to setfocus to a control on a content page from it's master page.
I have a master page that contains a TabContainer. Within it's TabPanel is a ContentPlaceHolder.
On the content page I have 2 TextBoxes and a Button.
I need to set focus to a TextBox on the content page.
The master page:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head runat="server">
<title></title>
</head>
<body>
<form runat="server">
<asp:ToolkitScriptManager ID="ToolkitScriptManager1" runat="server"></asp:ToolkitScriptManager>
<asp:TabContainer ID="TabsCont" runat="server" >
...
Go to the complete details ...