|
 |
asp_web_howto thread: page access mode
Message #1 by speedguru@m... on Wed, 12 Sep 2001 16:04:31
|
|
hi,
i want to allow an asp pg to be accessed only by a vb application. if a
browser tries to access, some err messg should be displayed
i'm also curious abt how we can know through which device the asp pg has
been accessed (browser, mobile phone etc...assuming my asp pg returns an
asp pg which gives xml ouput & its supported by a xsl file)
:-)rk
Message #2 by Kyle Burns <kburns@c...> on Wed, 12 Sep 2001 10:24:17 -0500
|
|
Take a look at your HTTP_USER_AGENT http header. Not bullet-proof security
(or even very bullet-resistant), but you could define a user agent string to
send from your VB app along with this request and check this value in the
page.
=================================
Kyle M. Burns, MCSD
ECommerce Technology Manager
-----Original Message-----
From: speedguru@m... [mailto:speedguru@m...]
Sent: Wednesday, September 12, 2001 11:05 AM
To: ASP Web HowTo
Subject: [asp_web_howto] page access mode
hi,
i want to allow an asp pg to be accessed only by a vb application. if a
browser tries to access, some err messg should be displayed
i'm also curious abt how we can know through which device the asp pg has
been accessed (browser, mobile phone etc...assuming my asp pg returns an
asp pg which gives xml ouput & its supported by a xsl file)
:-)rk
Message #3 by "Ruth Nisenbaum" <ruthnis@0...> on Mon, 24 Sep 2001 18:43:25
|
|
How can I send a HTTP_USER_AGENT header from VB to ASP ?
> Take a look at your HTTP_USER_AGENT http header. Not bullet-proof
security
> (or even very bullet-resistant), but you could define a user agent
string to
> send from your VB app along with this request and check this value in the
> page.
>
> =================================
> Kyle M. Burns, MCSD
> ECommerce Technology Manager
>
>
>
> -----Original Message-----
> From: speedguru@m... [mailto:speedguru@m...]
> Sent: Wednesday, September 12, 2001 11:05 AM
> To: ASP Web HowTo
> Subject: [asp_web_howto] page access mode
>
>
> hi,
> i want to allow an asp pg to be accessed only by a vb application. if a
> browser tries to access, some err messg should be displayed
>
> i'm also curious abt how we can know through which device the asp pg has
> been accessed (browser, mobile phone etc...assuming my asp pg returns an
> asp pg which gives xml ouput & its supported by a xsl file)
>
> :-)rk
Message #4 by Kyle Burns <kburns@c...> on Mon, 24 Sep 2001 12:57:18 -0500
|
|
This is going to depend on how you are accessing Internet functionality in
your app. If you're using the WinInet API, then check out the following
article on MSDN:
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnwebtool/h
tml/msdn_vbhttp.asp
=================================
Kyle M. Burns, MCSD
ECommerce Technology Manager
Centra Credit Union
kburns@c...
-----Original Message-----
From: Ruth Nisenbaum [mailto:ruthnis@0...]
Sent: Monday, September 24, 2001 1:43 PM
To: ASP Web HowTo
Subject: [asp_web_howto] RE: page access mode
How can I send a HTTP_USER_AGENT header from VB to ASP ?
> Take a look at your HTTP_USER_AGENT http header. Not bullet-proof
security
> (or even very bullet-resistant), but you could define a user agent
string to
> send from your VB app along with this request and check this value in the
> page.
>
> =================================
> Kyle M. Burns, MCSD
> ECommerce Technology Manager
>
>
>
> -----Original Message-----
> From: speedguru@m... [mailto:speedguru@m...]
> Sent: Wednesday, September 12, 2001 11:05 AM
> To: ASP Web HowTo
> Subject: [asp_web_howto] page access mode
>
>
> hi,
> i want to allow an asp pg to be accessed only by a vb application. if a
> browser tries to access, some err messg should be displayed
>
> i'm also curious abt how we can know through which device the asp pg has
> been accessed (browser, mobile phone etc...assuming my asp pg returns an
> asp pg which gives xml ouput & its supported by a xsl file)
>
> :-)rk
Message #5 by "Ruth Nisenbaum" <ruthnis@0...> on Tue, 25 Sep 2001 07:07:08 +0200
|
|
Hi:
I'm accessing my asp page through XML. Is there any setting at the XML DOM
to define the HTTP_USER_AGENT
> Subject: RE: page access mode
> From: Kyle Burns <kburns@c...>
> Date: Mon, 24 Sep 2001 12:57:18 -0500
> X-Message-Number: 10
>
> This is going to depend on how you are accessing Internet functionality in
> your app. If you're using the WinInet API, then check out the following
> article on MSDN:
>
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnwebtool/h
> tml/msdn_vbhttp.asp
>
> =================================
> Kyle M. Burns, MCSD
> ECommerce Technology Manager
> Centra Credit Union
> kburns@c...
>
>
>
> -----Original Message-----
> From: Ruth Nisenbaum [mailto:ruthnis@0...]
> Sent: Monday, September 24, 2001 1:43 PM
> To: ASP Web HowTo
> Subject: [asp_web_howto] RE: page access mode
>
>
> How can I send a HTTP_USER_AGENT header from VB to ASP ?
>
> > Take a look at your HTTP_USER_AGENT http header. Not bullet-proof
> security
> > (or even very bullet-resistant), but you could define a user agent
> string to
> > send from your VB app along with this request and check this value in
the
> > page.
> >
> > =================================
> > Kyle M. Burns, MCSD
> > ECommerce Technology Manager
|
|
 |