Wrox Programmer Forums
|
BOOK: Beginning ASP.NET 1.0
This is the forum to discuss the Wrox book Beginning ASP.NET 1.0 with C# by Chris Goode, John Kauffman, Christopher L. Miller, Neil Raybould, S. Srinivasa Sivakumar, Dave Sussman, Ollie Cornes, Rob Birdwell, Matt Butler, Gary Johnson, Ajoy Krishnamoorthy, Juan T. Llibre, Chris Ullman; ISBN: 9780764543708
Welcome to the p2p.wrox.com Forums.

You are currently viewing the BOOK: Beginning ASP.NET 1.0 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 April 12th, 2004, 11:08 PM
shs shs is offline
Authorized User
 
Join Date: Mar 2004
Posts: 28
Thanks: 0
Thanked 0 Times in 0 Posts
Default enter key within text area

Hi,
I have a textarea within aspx page with some validation.
whenever I type within the textarea if I use Enter Key, validation comes up that I have exceeded the number of characters That is permited!!!

here is the code:

<textarea name="Overview"
cols="53"
rows="62"
id="Overview"
runat="server"
wrap="soft" />
and validation
<asp:RequiredFieldValidator id="RequiredFieldValidator4" runat="server"
controlToValidate="Overview"
ErrorMessage="error message... "
Display="None"
Width="100%"> </asp:RequiredFieldValidator>
<asp:RegularExpressionValidator
Display="None"
ControlToValidate="Overview"
validationExpression=".{0,1600}"
ErrorMessage="Please limit the length of the content entered to 1600 characters."
Runat="server"/>

What is the story with enter Key?
Thanks





Similar Threads
Thread Thread Starter Forum Replies Last Post
Enter Key Event (Enter Key Only) Coby Excel VBA 0 February 6th, 2008 09:55 PM
Enter Key rwalker VB How-To 5 April 7th, 2004 11:04 AM





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