p2p.wrox.com Forums

Need to download code?

View our list of code downloads.


Go Back   p2p.wrox.com Forums > C# and C > C# 1.0 > C#
I forgot my password Register Now
Register | FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read
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 p2p Programmer to Programmer discussion community. This is a community of more than 40,000 computer programmers including Wrox book authors and readers. As a guest, you can read any forum posting. By joining our free Wrox p2p community you can post your own programming questions and respond to other programmers’ questions. Registered users also don't have to see the ads that are displayed to guests. Registration is fast, simple and absolutely free so please, join today!
Join today and post to win prizes! Post more to increase your chances of being Wrox’s top poster of the month.

Reply
 
Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old June 17th, 2006, 03:27 AM
Authorized User
 
Join Date: Apr 2006
Location: Jamnagar, Gujarat, India.
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
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Reddit!
Reply With Quote
  #2 (permalink)  
Old June 17th, 2006, 04:25 AM
joefawcett's Avatar
Wrox Author
Points: 8,994, Level: 40
Points: 8,994, Level: 40 Points: 8,994, Level: 40 Points: 8,994, Level: 40
Activity: 0%
Activity: 0% Activity: 0% Activity: 0%
 
Join Date: Jun 2003
Location: Exeter, , United Kingdom.
Posts: 2,922
Thanks: 0
Thanked 13 Times in 12 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)
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Reddit!
Reply With Quote
Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Trackbacks are Off
Pingbacks are On
Refbacks are Off
Forum Jump

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 19th, 2006 12:55 AM
Set Focus on a Sub Form Brendan Bartley Access 5 September 9th, 2005 11:49 AM
Setting Focus on a Text Box in a Web Form vbmazza VB.NET 1 May 4th, 2005 10:19 AM
web form control problem myavi ADO.NET 1 June 5th, 2004 01: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



All times are GMT -4. The time now is 03:33 AM.


Powered by vBulletin® Version 3.6.8
Copyright ©2000 - 2009, Jelsoft Enterprises Ltd.
© 2008 Wiley Publishing, Inc