SQL Development
 
Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
 
 
User Name:
Password:
Remember me
Go Back   ASP Free ForumsDatabaseSQL Development

Reply
Add This Thread To:
  Del.icio.us   Digg   Google   Spurl   Blink   Furl   Simpy   Y! MyWeb 
Thread Tools Search this Thread Rate Thread Display Modes
 
Unread ASP Free Forums Sponsor:
  #1  
Old February 17th, 2005, 12:12 PM
Punktress Punktress is offline
Registered User
ASP Free Newbie (0 - 499 posts)
 
Join Date: Feb 2004
Location: Los Angeles, CA
Posts: 8 Punktress User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 43 m 14 sec
Reputation Power: 0
Send a message via AIM to Punktress Send a message via MSN to Punktress Send a message via Yahoo to Punktress
Unhappy Viewing DB Results with APOSTROPHE in Form Field

When I pull information from my database, it is viewed in a form format. This way, the information can be edited easily.

I have written a function to make it possible to use apostrophes in the database BUT when I try to view the information in the form format (edit format), everything after the apostrophe is hidden.

I have a understanding of what is going on. The apostrophe is making the browser think that the data ends there.

How can I make the data after the apostrophe show up in the form field?

Help!!

Melanie

Reply With Quote
  #2  
Old February 17th, 2005, 12:31 PM
Memnoch's Avatar
Memnoch Memnoch is offline
Unholy Moderator
Click here for more information.
 
Join Date: Oct 2003
Location: In hell, where did you think?
Posts: 11,879 Memnoch User rank is Lieutenant Colonel (40000 - 50000 Reputation Level)Memnoch User rank is Lieutenant Colonel (40000 - 50000 Reputation Level)Memnoch User rank is Lieutenant Colonel (40000 - 50000 Reputation Level)Memnoch User rank is Lieutenant Colonel (40000 - 50000 Reputation Level)Memnoch User rank is Lieutenant Colonel (40000 - 50000 Reputation Level)Memnoch User rank is Lieutenant Colonel (40000 - 50000 Reputation Level)Memnoch User rank is Lieutenant Colonel (40000 - 50000 Reputation Level)Memnoch User rank is Lieutenant Colonel (40000 - 50000 Reputation Level)Memnoch User rank is Lieutenant Colonel (40000 - 50000 Reputation Level)Memnoch User rank is Lieutenant Colonel (40000 - 50000 Reputation Level)Memnoch User rank is Lieutenant Colonel (40000 - 50000 Reputation Level) 
Time spent in forums: 3 Weeks 5 Days 18 h
Reputation Power: 500
Post your code you are using to display the field.

Reply With Quote
  #3  
Old February 17th, 2005, 01:21 PM
Punktress Punktress is offline
Registered User
ASP Free Newbie (0 - 499 posts)
 
Join Date: Feb 2004
Location: Los Angeles, CA
Posts: 8 Punktress User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 43 m 14 sec
Reputation Power: 0
Send a message via AIM to Punktress Send a message via MSN to Punktress Send a message via Yahoo to Punktress
Quote:
Originally Posted by Memnoch
Post your code you are using to display the field.



Response.Write "<tr><td><b>Last Name:</b></td>"
Response.Write "<td><input type='text' name='lastname' value='" & rsClient("LastName") & "' style='border:1px ridge #000080'></td></tr>"

Reply With Quote
  #4  
Old February 17th, 2005, 03:18 PM
lewy's Avatar
lewy lewy is offline
Alter Ego Wizard
ASP Free Specialist (4000 - 4499 posts)
 
Join Date: Jun 2004
Location: Edinburg Tx
Posts: 4,385 lewy User rank is General 9th Grade (Above 100000 Reputation Level)lewy User rank is General 9th Grade (Above 100000 Reputation Level)lewy User rank is General 9th Grade (Above 100000 Reputation Level)lewy User rank is General 9th Grade (Above 100000 Reputation Level)lewy User rank is General 9th Grade (Above 100000 Reputation Level)lewy User rank is General 9th Grade (Above 100000 Reputation Level)lewy User rank is General 9th Grade (Above 100000 Reputation Level)lewy User rank is General 9th Grade (Above 100000 Reputation Level)lewy User rank is General 9th Grade (Above 100000 Reputation Level)lewy User rank is General 9th Grade (Above 100000 Reputation Level)lewy User rank is General 9th Grade (Above 100000 Reputation Level)lewy User rank is General 9th Grade (Above 100000 Reputation Level)lewy User rank is General 9th Grade (Above 100000 Reputation Level)lewy User rank is General 9th Grade (Above 100000 Reputation Level)lewy User rank is General 9th Grade (Above 100000 Reputation Level)lewy User rank is General 9th Grade (Above 100000 Reputation Level)  Folding Points: 1009 Folding Title: Novice Folder
Time spent in forums: 1 Month 1 Week 2 Days 28 m 31 sec
Reputation Power: 1561
Change this: Response.Write "<td><input type='text' name='lastname' value='" & rsClient("LastName") & "' style='border:1px ridge #000080'></td></tr>"

To:
Code:
Response.Write "<td><input type='text' name='lastname' value='" & Replace(rsClient("LastName"),"'","&#39") & "' style='border:1px ridge #000080'></td></tr>"


This way you replace the single quote character into its corresponding html entity &quot
And if you want to replace double qoute use
Code:
Response.Write "<td><input type='text' name='lastname' value='" & Replace(rsClient("LastName"),"'","&#34") & "' style='border:1px ridge #000080'>


You can find out more about HTML entities at W3Schools

Don't forget that where &#39 you need to add a ; right after it, for some reason, I can't display it right
Comments on this post
Punktress disagrees: It worked perfectly!
__________________
................... ASCII and ye shall receive ..................
Knowledge is the only resource on earth that multiplies when shared


Support the Shemzilla Project
Powered by C#

Reply With Quote
  #5  
Old February 18th, 2005, 08:40 AM
avkb03 avkb03 is offline
Contributing User
ASP Free Newbie (0 - 499 posts)
 
Join Date: Feb 2005
Posts: 110 avkb03 User rank is Private First Class (20 - 50 Reputation Level)avkb03 User rank is Private First Class (20 - 50 Reputation Level) 
Time spent in forums: 1 Day 10 h 41 m 54 sec
Reputation Power: 4
There is NO benifit in Response.writing your HTML, just use the HTML and insert ASP as needed. It's also a heck of a lot easier!

Code:
 <tr><td><b>Last Name:</b></td>
 <td><input type="text" name="lastname" value="<%=rsClient("LastName")%>" style="border:1px ridge #000080"></td></tr>
 


And for the record, when you need to represent a quotation in a string, you use a double quote "". So if you WERE to use the other code, which I don't recommend, it would have to be changed to:

Code:
 Response.Write "<td><input type=""text"" name=""lastname"" value=""" & rsClient("LastName") & """ style=""border:1px ridge #000080""></td></tr>"
 


You'll notice """ which means, show a " and then the 3rd one breaks the string so you can show the variable.

Reply With Quote
Reply

Viewing: ASP Free ForumsDatabaseSQL Development > Viewing DB Results with APOSTROPHE in Form Field


Thread Tools  Search this Thread 
Search this Thread:

Advanced Search
Display Modes  Rate This Thread 
Rate This Thread:


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 On
HTML code is Off
View Your Warnings | New Posts | Latest News | Latest Threads | Shoutbox
Forum Jump



 Free IT White Papers!
 
How to Present Effectively Online
This white paper offers practical and actionable advice on the key steps that any presenter should consider as they plan and execute a Webinar or online meeting.

 
Open Source Security Myths
Open Source Software (OSS) is computer software whose source code is available to the general public with relaxed or non-existent intellectual property restrictions (or arrangement such as the public domain), and is usually developed with the input of many contributors.

 
Power and Cooling Capacity Management for Data Centers
This paper describes the principles for achieving power and cooling capacity management.

 
Scalable, Fault-Tolerant NAS for Oracle - The Next Generation
For several years NAS has been evolving as a storage alternative for Oracle databases, and for good reason: NAS is quite often the simplest, most cost-effective storage approach for Oracle. Learn about the benefits that HP's approach to scalable NAS brings to Oracle environments in this comprehensive white paper.

 
Understanding Web Application Security Challenges
This white paper discusses many common threats and preventive measures for Web application security, and explains what you can do to help protect your organization.

 

Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
  
 





© 2003-2009 by Developer Shed. All rights reserved. DS Cluster 3 hosted by Hostway
Stay green...Green IT