Users Pricing

forum

home / developersection / forums / using session values inside vbscript

Using Session values inside VBScript

Anonymous User 2966 20 Jun 2013
Hi Expert,

This is an excerpt from an old authentication technique. I'm trying to assign a different value to the Document.Form.XXXXX.Value variables. The values I want are stored inside a Session variable from a separate .asp file.

Is there any way to use classic ASP Sessions inside VBScript? Or is there any way to store the Session variables' values in such a way that they can be used inside a 

VBScript block?

<script language="VBScript" type="text/vbscript">
    ...
Document.Form.txtUniqueID.Value = Auth.QuicklookID
Document.Form.txtUserID.Value = Auth.NTUserID
Document.Form.txtDomain.Value = Auth.NTDomain
Document.Form.txtUsername.Value = Auth.UserName
Document.Form.txtBusinessName.Value = Auth.BusinessName
Document.Form.submit()
    ...
</script>

Any help or clarification will help immensely, I'm a newcomer to VBScript.

I am a content writter !


1 Answers