|
|
Weather in Tulsa, OK (74133)

|
Current Conditions:
|
 |
79°F
Fair
|
|
Wind: CALM calm mph
|
|
SAT 9/4

L:55
| SUN 9/5
 H:89 L:64
| MON 9/6
 H:93 L:69
| TUE 9/7
 H:87 L:68
|
|

Last Update: 5:06:20 PM
|
weather.com
|
|
Services
|
|
|
|
|
Welcome to Terranet Technologies forum. This is a private Web Service so it
will require you to create a seperate account other than your Terranet account.
Please use your existing Terranet user name. It will only require your email and a password to join. |
|
|
|
|
|
|
|
| |
|
Re: on the login contol on a master page I need to set focus to the login button
Posted: 27 Aug 07 3:38 PM
|
OK,
Since you are using the loginview you need to do the following:
//The login view id is lvwLogin and the login id is Login2
System.Web.UI.WebControls.Login tmpLogin = (System.Web.UI.WebControls.Login)lvwLogin.FindControl("Login2");
Button loginbtn = (Button)tmpLogin.FindControl("LoginButton");
Page.Form.DefaultButton = loginbtn.UniqueID;
|
|
|
|
|
|