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.

 All Forums
 SQL Server 2000 Forums
 SQL Server Development (2000)
 Embed HTML in SQL Server 2000 stored procedure

Author  Topic 

vimalraj
Starting Member

5 Posts

Posted - 2007-09-10 : 03:35:31
Hi,

I want to embed html in a stored procedure and want to execute stored procedure using a URL.

Output of execution of procedure should be HTML page which takes vales from the user.

Page should have buttons like save,remove,find to do data manipulation in database.

Please help me if there is any such feature.

Thanks,
Vimalraj

dinakar
Master Smack Fu Yak Hacker

2507 Posts

Posted - 2007-09-10 : 13:22:45
what do you mean by "embed HTML in stored procedure" ? You can pass a HTML to the proc via varchar or nvarchar and it will be treated as any other string.

Dinakar Nethi
************************
Life is short. Enjoy it.
************************
http://weblogs.sqlteam.com/dinakar/
Go to Top of Page

jsmith8858
Dr. Cross Join

7423 Posts

Posted - 2007-09-10 : 14:35:40
Vimalraj -- I cannot even begin to tell you what a bad idea this is. SQL Server is not a web server, it is a database. Use a proper framework to design and output your web pages, such as ASP.NET.

- Jeff
http://weblogs.sqlteam.com/JeffS
Go to Top of Page
   

- Advertisement -