Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Major mixup in two ASP.NET transactions
Message
From
03/09/2006 18:16:23
 
 
General information
Forum:
ASP.NET
Category:
Other
Environment versions
Environment:
VB 8.0
OS:
Windows XP SP2
Database:
Visual FoxPro
Miscellaneous
Thread ID:
01150471
Message ID:
01150632
Views:
50
>If you just modify the framework .oResponse and .oRequest properties as I suggested then, based on what you said in a previous post, yes.

I am really looking for a copy of the framework everytime I start processing a hit. They are too much hit specific processing. See below.

>But if you are now saying that there are other framework properties that *are* page specific can you give me a concrete example of one of these?

Those are properties that are reset everytime a hit is done. This is in BeginRequest().
            cCookie = ""
            cDecrypt = ""
            cEncrypt = ""
            cError = ""
            cIP = oRequest.ServerVariables("REMOTE_ADDR")
            cQueryString = oRequest.QueryString.ToString()
            cPage = ""
            cPassword = ""
            cSession = ""
            cSession2 = ""
            cUrlReceived = GetUrlReceived()
            cUrlReceivedOriginal = cUrlReceived
            cUsername = ""
            lCookie = False
            lError = False
            lRemember = False
            nDateNow = Date.Now.Ticks
            nLanguage = 1
            nNoMember = 0
            oBrowser = oRequest.Browser
            oCookie.Clear()
            oJavascriptInclude.Clear()
            oJavascriptMessage.Clear()
Those properties are related and dependant on every hit. So, I need to isolate that from the start to the end of the process. If I can initialize a copy of the framework at startup, I would be ok. Because, if another hit is changing nLanguage, for example, I would be sure this would have been changed in that hit framework copy object and not in this one.
Michel Fournier
Level Extreme Inc.
Designer, architect, owner of the Level Extreme Platform
Subscribe to the site at https://www.levelextreme.com/Home/DataEntry?Activator=55&NoStore=303
Subscription benefits https://www.levelextreme.com/Home/ViewPage?Activator=7&ID=52
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform