dll and source page origin

P

pb

Hi,

I have a dll that will be licenced to a 3rd party to use on a web
site. Is it possible for the functions in the dll to know the url of
where they were called from?

Basically I will compile each dll individually and want to check that
it is only being used from the url path it was licenced for.

Any ideas or pointers please?

Pb
 
P

pb

Hi,

I have a dll that will be licenced to a 3rd party to use on a web
site. Is it possible for the functions in the dll to know the url of
where they were called from?

Basically I will compile each dll individually and want to check that
it is only being used from the url path it was licenced for.

Any ideas or pointers please?

Pb

found it :)

Dim a As String
a = HttpContext.Current.Request.Url.AbsoluteUri
MsgBox(a)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top