Wrox Programmer Forums
Go Back   Wrox Programmer Forums > C# and C > C# 1.0 > C#
|
C# Programming questions specific to the Microsoft C# language. See also the forum Beginning Visual C# to discuss that specific Wrox book and code.
Welcome to the p2p.wrox.com Forums.

You are currently viewing the C# section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
 
Old June 17th, 2006, 02:27 AM
Authorized User
 
Join Date: Apr 2006
Posts: 36
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via MSN to vivekshah Send a message via Yahoo to vivekshah
Default set Focus to web control in Web form


I have an web form that validates all the controls placed on the form.

& want to set focus to the control that is not satisfying the validation.

I tried the below code but it is not setting the focus to the control.

Code:
public void SetFocus(Control text)
        {
            if(text.Page.IsStartupScriptRegistered("setFocus"))
            {
                return;
            }

            System.Text.StringBuilder sb = new System.Text.StringBuilder("");


            text.Page.RegisterStartupScript("setFocus",sb.ToString());
        }

Any Idea ?

Thanx in advance

Vivek Shah
__________________
Vivek Shah
 
Old June 17th, 2006, 03:25 AM
joefawcett's Avatar
Wrox Author
 
Join Date: Jun 2003
Posts: 3,074
Thanks: 1
Thanked 38 Times in 37 Posts
Default

You have to write the script, it doesn't magically appear. See thi slink, if you're using version 2.0 there are easier ways.
http://www.beansoftware.com/ASP.NET-...s-ASP.NET.aspx

--

Joe (Microsoft MVP - XML)





Similar Threads
Thread Thread Starter Forum Replies Last Post
Set focus on web control vivekshah ASP.NET 1.0 and 1.1 Professional 1 June 18th, 2006 11:55 PM
Set Focus on a Sub Form Brendan Bartley Access 5 September 9th, 2005 10:49 AM
Setting Focus on a Text Box in a Web Form vbmazza VB.NET 1 May 4th, 2005 09:19 AM
web form control problem myavi ADO.NET 1 June 5th, 2004 12:16 AM
Setting focus to a web control textbox? hilda ASP.NET 1.0 and 1.1 Basics 2 November 1st, 2003 11:14 AM





Powered by vBulletin®
Copyright ©2000 - 2020, Jelsoft Enterprises Ltd.
Copyright (c) 2020 John Wiley & Sons, Inc.