473,803 Members | 3,422 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Setting the DefaultButton prop of a Panel under a Mountain of Templates

Hi Gang,

I am trying to set the DefaultButton prop of a Panel so that when the user
has entered his login credentials and strikes the < Enter key, he will be
loggin in. The Button (btnLogin) is buried under this hierarchy of parent
controls: Panel asp.LoginView AnonymousTempla te asp.Login >
LayoutTemplate btnLogin. I can't figure it out. Thanks for any ideas.

Steve

Jun 27 '08 #1
3 1505
Hi,

I am not sure wheither it will work or not... but still you can give a
try...

use find control to get the reference of the button from login control

Button btn = (Button) Login1.FindCont rol("LoginButto n");
this.form1.Defa ultButton = btn.ID;

Best of luck

Munna

www.munna.shatkotha.com
www.munna.shatkotha.com/blog
www.shatkotha.com
Jun 27 '08 #2
Hu Munna,

I wanted to thank you for your suggestion. I tried that before the post and
it did not work. I wanted to return to the issue right after your post but
got caught up in another thing. If I find that solution, I'll post it.
Thanks.

Steve

"Munna" <mu******@gmail .comwrote in message
news:e8******** *************** ***********@i76 g2000hsf.google groups.com...
Hi,

I am not sure wheither it will work or not... but still you can give a
try...

use find control to get the reference of the button from login control

Button btn = (Button) Login1.FindCont rol("LoginButto n");
this.form1.Defa ultButton = btn.ID;

Best of luck

Munna

www.munna.shatkotha.com
www.munna.shatkotha.com/blog
www.shatkotha.com

Jun 27 '08 #3
I figured it out.

Problem: Because you want users to login with the <Enterinstead of
clicking a button, you want to make the login button of your login control
the default button of the panel that contains it but panel cannot see the
button because it is contained by a hierarchy of templates.

Solution: nest a panel directly inside the Anonymous Template of your
LoginView control. Make sure your Login control is contained inside this
template. Set the DefaultButton prop of that panel to this: <Name of Login
control><$><Nam e of Button>. So if your login control is named 'Login1' and
the button is 'btnLogin' then set the DefaultButon prop to
'Login1$btnLogi n'.

Jun 27 '08 #4

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

3
1994
by: user | last post by:
I have gotten properties to respond correctly, but when I try to do it in __init__: class foo: def getter(self): return "hello" def __init__(self):
0
1200
by: Jeff | last post by:
We have 3 environments, Dev, Qa, Prod. I'm working on an application that has a search page. On the search page is 3 panels. One panel is the advanced search, another a normal search and the third contains a search and clear button. I hide one of the search panels based on what the user wants. When search is clicked a datagrid is populated to the right of the panels. What I want is for the search button to be "clicked" when the user...
1
2096
by: gferreri | last post by:
Hi all, I've stumbled on an interesting problem with the way Firefox handles form submitting with the enter key. I'm putting together a page that has one form element with multiple controls with their own textbox field and submit imagebuttons. I've set up each control in an asp:Panel with their DefaultButton property set to the proper button, so when the enter key is pressed, the proper button event handler is triggered. This works...
3
7451
by: John Mott | last post by:
Hi All, I'm trying to set the defaultbutton for a form to a button contained in a step template for a wizard control. This is the code in PreRender: switch (myWizard.ActiveStep.StepType) { case WizardStepType.Start: this.Page.Form.DefaultButton = "StartNextButton"; break; case WizardStepType.Finish: this.Page.Form.DefaultButton = "FinishButton"; break;
2
12996
by: =?Utf-8?B?QmlnSm9obg==?= | last post by:
We can set the default button and focus field in ASP.Net 2.0 on the Form tag. My form tag is in the Master page, but the controls are in containers. I read through a few articles which did not work. I added a "runat=server" to make the values visible to the devel. env. I added properties to the masters codebehind: Private strDefaultFocus As String
4
9758
by: Tim Mackey | last post by:
hi, asp.net 2. can anyone explain why this code does not work in firefox (2.0.0.1), but does work in IE 7. if you hit enter after typing something into the textbox, it should fire the Submit button click handler, instead it fires the event for the bogus button above it. btw it doesn't matter if i set it to ClientID, UniqueID or "btnSubmit" hard-coded, they all fail. <form id="form1" runat="server"> <asp:Button ID="Button1"...
1
3897
by: koraykazgan | last post by:
Hi all, I have a user control (ASCX). In that user control there is a panel, and inside that panel there is a textbox and a button. The panel has a DefaultButton property set, which is set to the button inside it. I also have a page, and on that page there are two instances of that user control (uc1 and uc2). I additionaly have an update panel on the page. In that update panel there is a label. This update panel has two async triggers...
0
1351
by: =?Utf-8?B?QWxleCBNYWdoZW4=?= | last post by:
Hi. I have a MasterPage but on each particular page that uses it, I need to be able to set the DefaultButton for the Form for that page. From the .cs file of my ASPX page, I have tried: - Form.DefaultButton = MyButton; - Form.DefaultButton = MyButton.ClientID; Both of these result in a runtime error: The DefaultButton of 'MainFrm' must be the ID of a control of type IButtonControl
1
1814
by: =?Utf-8?B?V2ViQnVpbGRlcjQ1MQ==?= | last post by:
I've set the default behavior on enter in two places 1. on a panel containing the control: <asp:Panel ID="pnl1" runat="server" defaultbutton="lbtnLogin"> and in the page load: ClientScript.RegisterHiddenField("__EVENTTARGET", "lbtnLogin"); it works ok with IE so far, but not for FireFox and not for Safari. Is there a work around? or another method? Thanks
0
9703
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
10550
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
1
10295
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
10069
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
6844
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5633
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
4275
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
3799
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2972
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.