Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Dlls in a browser

Status
Not open for further replies.

RichyRoo

Programmer
Jul 13, 2005
1
ZA
What do you need to do to a dll to allow it to be activated in a brower by a URL..

i.e.
(i'm happy about dlls and com, but want to make the browser run it) and i've seen it done!

regards

are there any tutorials anywhere
 
are you thinking about ActiveX controls?, if so you need to use the <Object...> tag, plus it only works in IE, you would have better luck using the ActiveX dlls, and what not on the serverside (which would require NT4 w/ IIS4+)
 
ive seen an app which uses a url or


i have done asp and html with com components into it, although this seems even more powerful..

i believe you can put an exe in a url as well...

anyone know how?

i've tried creating a component and setting the default method... but it didnt seem to work
 
unless you actually know what that dll is I dont know, but I have seen if that is the case it may be CGI. so you might want to look into that. I just know that if it is CGI, dont expect to write it in VB, as many people who have tried, ended up getting very very slow CGIs
 
thanks karl

that is what i'd seen

i was wondering how that actually runs the dll, i.e. what method it envokes?

cheers
 
in almost all the serverside componets, will often use the ?variables=values.... , in ASP you grab it with Request(&quot;variable&quot;) , similar methods in CGI and server extentions. Only real big difference, is that raw ASP is interpreted, server extensions, and CGI, are precompiled.
 



... no, no, no; category or type of use. As in, do I wish to create instances of components within the application which will not require arguements directly or a Server Extension external to my application which will uses arguements exclusively to identify its' use?
<smile>
 
i'm a bit confused now..

you can actually run an exe in the browser, (or in my case hopefully a dll)

i'm okay with the arguments part of, i just want the dll to run a default method..

so if i have


thedll will run, running a default method,

the question being what additional coding is required to the dll (apart from setting a default method) putting output to the browser.

sorry if i'm confusing everyone!
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top