Please start any new threads on our new
site at https://forums.sqlteam.com. We've got lots of great SQL Server
experts to answer whatever question you can come up with.
Author |
Topic |
AskSQLTeam
Ask SQLTeam Question
0 Posts |
Posted - 2001-12-14 : 10:55:04
|
David writes "I'd like a really nifty way to present a text box, have a user enter data, then post it to a SQL database with html tags inserted...I have a routine that works OK, but thought I'd go to the experts and see what their thoughts might be...david" |
|
AjarnMark
SQL Slashing Gunting Master
3246 Posts |
Posted - 2001-12-14 : 12:16:17
|
What's the issue? You can type HTML tags into a normal text box or textarea because they are just plain text characters. Then you can insert them into your SQL table without issue (they are just plain text characters). The only possible catch is re-displaying them on your web page. If you write them directly and not in a text box, then the page should render the HTML code just fine.-------------------It's a SQL thing... |
|
|
|
|
|