Wrox Home  
Search P2P Archive for: Go

  Return to Index  

asp_web_howto thread: Symbols


Message #1 by Shaun Steckley <SSTECKLEY@P...> on Wed, 18 Apr 2001 10:47:26 -0400
Is there a function that convert special HTML characters into the equivalent

ASCII tags like below?



Input:

	"This car's odometer reads < 150 miles."

Output:

	"This car´s odometer reads < 150 miles."

Message #2 by "Anil Rhemtulla" <AnilR@T...> on Wed, 18 Apr 2001 17:25:25 +0200
Try:

Server.HTMLEncode(string)





Cheers,

Anil



----- Original Message -----

From: "Shaun Steckley" <SSTECKLEY@P...>

To: "ASP Web HowTo" <asp_web_howto@p...>

Sent: Wednesday, April 18, 2001 4:47 PM

Subject: [asp_web_howto] Symbols





> Is there a function that convert special HTML characters into the

equivalent

> ASCII tags like below?

>

> Input:

> "This car's odometer reads < 150 miles."

> Output:

> "This car´s odometer reads < 150 miles."

>



Message #3 by Shaun Steckley <SSTECKLEY@P...> on Wed, 18 Apr 2001 11:54:34 -0400
Thanks...



-----Original Message-----

From: Anil Rhemtulla [mailto:AnilR@T...]

Sent: Wednesday, April 18, 2001 11:25 AM

To: ASP Web HowTo

Subject: [asp_web_howto] Re: Symbols





Try:

Server.HTMLEncode(string)





Cheers,

Anil



----- Original Message -----

From: "Shaun Steckley" <SSTECKLEY@P...>

To: "ASP Web HowTo" <asp_web_howto@p...>

Sent: Wednesday, April 18, 2001 4:47 PM

Subject: [asp_web_howto] Symbols





> Is there a function that convert special HTML characters into the

equivalent

> ASCII tags like below?

>

> Input:

> "This car's odometer reads < 150 miles."

> Output:

> "This car´s odometer reads < 150 miles."

>



Message #4 by "Bhaskar thamma" <cyberbhaskar@h...> on Thu, 19 Apr 2001 21:32:14 +0530
hi!



u can use server.HTMLENCODE("This car's odometer reads < 150 miles.")



i hope this will help you.



BHskar


  Return to Index