Showing posts with label passthrough. Show all posts
Showing posts with label passthrough. Show all posts

Wednesday, March 21, 2012

passthrough login from alternate technology

I have that ability to pass userid and password (encrypted) to a coldFusion
section of a web site. I'm able to decrypt and run the login and continue
through that section of the site. At this time i need to do the same from
Coldfusion to Dot.net.

Given i have an encrypted value passed to Dot.Net that equals a userid and
then i can get the correct password. How or where on any selected page can i
authenticate the user.
2. if this is not possible is there a way to modify my login.aspx to just
run the login and redirect back to that page with these same values?

note: as it is right now the user is redirected to login.aspx with the
encrypted value.

--
thanks (as always)
some day i''m gona pay this forum back for all the help i''m getting
kesI figured out a way to do it using the current login.asx page and the
re-direct from login, but i would really like to hear what eanyone else has
to say on this.

Please reply
KES
--
thanks (as always)
some day i''m gona pay this forum back for all the help i''m getting
kes

"WebBuilder451" wrote:

Quote:

Originally Posted by

I have that ability to pass userid and password (encrypted) to a coldFusion
section of a web site. I'm able to decrypt and run the login and continue
through that section of the site. At this time i need to do the same from
Coldfusion to Dot.net.
>
Given i have an encrypted value passed to Dot.Net that equals a userid and
then i can get the correct password. How or where on any selected page can i
authenticate the user.
2. if this is not possible is there a way to modify my login.aspx to just
run the login and redirect back to that page with these same values?
>
note: as it is right now the user is redirected to login.aspx with the
encrypted value.
>
--
thanks (as always)
some day i''m gona pay this forum back for all the help i''m getting
kes

Passthrough Authentication?

Hello,

I am setting up a secured website on an intranet for a client. In order to authenticate to the web page, the client would like to pull the userid and domain from the local workstation. Then I would query a db table to see if that user was in there. The thinking is that if the user is authenticated in the domain, they have access to the website.

So my question is - how do I pull the userid and domain name from the workstation? I'm guessing I'll have to code some java script. However, if there was a way to pull this info from the server, that'd be best.

Anyone know?

Thanks,

PardoTry

Request.ServerVariables("AUTH_USER")

hope this helps,
sivilian
Great - will try!

Friday, March 16, 2012

passthrough properties

(I didn't get any response on the first post of this. Is this the right
forum
for ASCX user controls?)
I am writing a user control that has a combo box in it (3rd party). I want
to pass thru properties from the control so I wrote the following:
Public WriteOnly Property AutoPostBack(ByVal TF) As Boolean
Set(ByVal Value As Boolean)
cbVendors.AutoPostBack = TF
End Set
End Property
It compiles fine but it doesn't show when I use the user control. What am I
doing wrong? Is there any good articles on passing through properties in
user controls?
Thanks,
GTry making it Public Shared...
"G. Dean Blake" wrote:

> (I didn't get any response on the first post of this. Is this the right
> forum
> for ASCX user controls?)
>
> I am writing a user control that has a combo box in it (3rd party). I wan
t
> to pass thru properties from the control so I wrote the following:
> Public WriteOnly Property AutoPostBack(ByVal TF) As Boolean
> Set(ByVal Value As Boolean)
> cbVendors.AutoPostBack = TF
> End Set
> End Property
> It compiles fine but it doesn't show when I use the user control. What am
I
> doing wrong? Is there any good articles on passing through properties in
> user controls?
> Thanks,
> G
>
>

passthrough login from alternate technology

I have that ability to pass userid and password (encrypted) to a coldFusion
section of a web site. I'm able to decrypt and run the login and continue
through that section of the site. At this time i need to do the same from
Coldfusion to Dot.net.
Given i have an encrypted value passed to Dot.Net that equals a userid and
then i can get the correct password. How or where on any selected page can i
authenticate the user.
2. if this is not possible is there a way to modify my login.aspx to just
run the login and redirect back to that page with these same values?
note: as it is right now the user is redirected to login.aspx with the
encrypted value.
thanks (as always)
some day i''m gona pay this forum back for all the help i''m getting
kesI figured out a way to do it using the current login.asx page and the
re-direct from login, but i would really like to hear what eanyone else has
to say on this.
Please reply
KES
--
thanks (as always)
some day i''m gona pay this forum back for all the help i''m getting
kes
"WebBuilder451" wrote:

> I have that ability to pass userid and password (encrypted) to a coldFusio
n
> section of a web site. I'm able to decrypt and run the login and continue
> through that section of the site. At this time i need to do the same from
> Coldfusion to Dot.net.
> Given i have an encrypted value passed to Dot.Net that equals a userid and
> then i can get the correct password. How or where on any selected page can
i
> authenticate the user.
> 2. if this is not possible is there a way to modify my login.aspx to just
> run the login and redirect back to that page with these same values?
> note: as it is right now the user is redirected to login.aspx with the
> encrypted value.
> --
> thanks (as always)
> some day i''m gona pay this forum back for all the help i''m getting
> kes