Re: SQL in HTML without ASP
Quote:
Originally posted by alperaydin
hi,
i want to ask if it's possible to send data to an html doc to another html doc and execute an SQL query with the data received from the sender html page.
i made an ADO connection and executed a query in my html page. I must rebuid the query with the sent data from first page. But i dont want to use ASP. is there something like Request.Querystring in html?
You cant do that just with HTML, you will need some sort of scripting language for database connectivity. E.g ASP, PHP and few others.
HTML in itself is static and you will be able to generate dynamic content which you seem to be trying to do.
Re: SQL in HTML without ASP
Quote:
Originally posted by alperaydin
hi,
i want to ask if it's possible to send data to an html doc to another html doc and execute an SQL query with the data received from the sender html page.
i made an ADO connection and executed a query in my html page. I must rebuid the query with the sent data from first page. But i dont want to use ASP. is there something like Request.Querystring in html?
1. The question is somewhat redundant, since (as xplained) HTML is static. You cannot "send data to anhtml doc to another html doc" :confused: You must use server side scripting.
2. More importantly, why, and what are you trying to accomplish?