asp:Label text in javascript

This is a discussion on "asp:Label text in javascript" within the ASP.NET Forum section. This forum, and the thread "asp:Label text in javascript are both part of the Program Your Website category.



Go Back   Webforumz.com > Main Forums > Program Your Website > ASP.NET Forum

Notices


Reply
 
LinkBack Thread Tools
  #1 (permalink)  
Old Aug 7th, 2006, 17:34
Up'n'Coming Member
Join Date: Aug 2006
Location: Peru
Age: 21
Posts: 59
Thanks: 0
Thanked 0 Times in 0 Posts
asp:Label text in javascript

Does anybody know how do I change the text in an asp:Label from client side?
Reply With Quote

  #2 (permalink)  
Old Aug 17th, 2006, 13:11
New Member
Join Date: Aug 2006
Location: Birmingham, UK
Posts: 4
Thanks: 0
Thanked 0 Times in 0 Posts
Re: asp:Label text in javascript

A Label control in ASP.NET renders as a <sppan> tag, and as long as you give it an ID it is recognisable to Javascript. Let's say your label is called lblLabel. In Javascript, you could do something along the following lines:
Code: Select all
document.getElementById("lblLabel").innerText = "My Text";
Gimme a shout if you need any more than that.

Kind regards,
-Mark

View my web development blog
Reply With Quote
Reply

Tags
asplabel, text, javascript

Thread Tools

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

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Similar Threads
Thread Thread Starter Forum Replies Last Post
Appending Text Javascript Utite JavaScript Forum 1 Apr 28th, 2008 12:14
[SOLVED] why isnt my javascript displaying the text skat JavaScript Forum 3 Jan 26th, 2008 20:43
Javascript -> text include <- help jahphill JavaScript Forum 3 Oct 30th, 2007 22:06
BBC Text Editor With Javascript AdRock JavaScript Forum 2 Oct 17th, 2007 15:10
Unable to disable text(label) in javascript,working fine with IE, not with MOZILLA balaji JavaScript Forum 1 Jul 11th, 2007 09:55


All times are GMT. The time now is 15:58.


Powered by vBulletin®
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.2.0 RC8
© 2003-2008 Webforumz.com : All Rights Reserved

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43