Is it possible to design a project in VB
and use it in the web pages .
I am not similar with web programing
and cgi and ... . I only know some ASP
commands .
if you know any refrences or address
that can help me please tell me .
thank you .
Printable View
Is it possible to design a project in VB
and use it in the web pages .
I am not similar with web programing
and cgi and ... . I only know some ASP
commands .
if you know any refrences or address
that can help me please tell me .
thank you .
It is possible! Create an OCX component and put it on your page. The only problem is that most browsers won't show your component because it hasn't a certificate. You have to pay to get one. Try www.verisign.com
Learn ASP (which is VBScript OR JavaScript & HTML processed on the server to determine what HTML to send to the client)
You can create Active X DLLs or use existing libraries that your ASP code can call and perform calculations, access databases, really anything that can be done.
I recommend Teach Yourself ASP in 21 days, I got that book and it learned me good...
thank you ,
where can i find this book .
i searched some sites like amazon.com
but do not find this book .
There is one problem using ASP. You have to register the dll on the server. You can't always do that.
You can Always regester a good .dll
You have to make sure your web pub services are stopped first
1.go to a command prompt
2.Type "Net Stop IIsAdmin"
3.Move the new .dll to your Virtual Directory
4.go to command prompt
5.type "regsvr32 yourdll.dll"
6.type "net start iisadmin"
7.type "net start w3svc"
This way you don't have to reboot the web server every time you want to update your .dll