Web Analytics Made Easy -
StatCounter ASCII characters in ASP.net code - CodingForum

Announcement

Collapse
No announcement yet.

ASCII characters in ASP.net code

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • ASCII characters in ASP.net code

    How to produce ASCII characters in ASP.net code?

    Like chr(34) which we are using in asp.

  • #2
    the same way:

    in the page flow: <% = Chr(34) %>

    from codebehind: Yourcontrol.Text = Chr(34)
    I am the luckiest man in the world

    Comment

    Working...
    X