Hi
2 problems:
1. How can I pass arguments within a URL and how can I access the parameters passed within the webpage called.
The 2 languages I can use is JavaScript or ASP.
2. How can I store an image within a SQL Server database.
Thanks
Printable View
Hi
2 problems:
1. How can I pass arguments within a URL and how can I access the parameters passed within the webpage called.
The 2 languages I can use is JavaScript or ASP.
2. How can I store an image within a SQL Server database.
Thanks
thats easy.
as for #2.... not a part of SQL I have covered, sorry.Code:http://www.somedomain.com/mysuperscript.asp?variable=value&variable2=value2&variable3=....
I know google has the first answer, I suspect it has the second too.
And how do i access those variables in my asp page?
You can use a url as Aardpsymon suggested.
Using ASP you can retrieve those variables using
Instead of using the querystring you can use a form. To get the form values useCode:variable = request.querystring("variable")
For more info try this link..Code:variable = request.form("variable")
http://www.w3schools.com/asp/asp_ref_request.asp
As for saving images into a db - this link might help (even if you don't use ASP.NET it should still give you some good pointers.
http://www.stardeveloper.com/article...1033101&page=1
Good Luck!
Hello codenamevirus,
In this FAQ you can understand how to save images in a database.
http://www.vbcity.com/forums/faq.asp...abase#TID74665
vbcity has much resources, I recommend you this website. ;)
Good luck.
AarzaK