Click here to Skip to main content
15,900,472 members
Home / Discussions / Web Development
   

Web Development

 
GeneralRe: Need to find out the actual file name of a cookie Pin
Jeremy Falcon3-Jul-02 10:04
professionalJeremy Falcon3-Jul-02 10:04 
GeneralRe: Need to find out the actual file name of a cookie Pin
Chris LaQuerre3-Jul-02 10:16
Chris LaQuerre3-Jul-02 10:16 
GeneralRe: Need to find out the actual file name of a cookie Pin
Jeremy Falcon3-Jul-02 10:19
professionalJeremy Falcon3-Jul-02 10:19 
GeneralRe: Need to find out the actual file name of a cookie Pin
Nick Parker4-Jul-02 5:09
protectorNick Parker4-Jul-02 5:09 
QuestionHow to Use Session Level Connection Pin
Pradhip3-Jul-02 6:49
Pradhip3-Jul-02 6:49 
AnswerRe: How to Use Session Level Connection Pin
Chris Rickard3-Jul-02 7:46
Chris Rickard3-Jul-02 7:46 
GeneralWeb Service Client Pin
Fayez Al-Naddaf3-Jul-02 4:00
Fayez Al-Naddaf3-Jul-02 4:00 
GeneralRe: Web Service Client Pin
Pravesh Soni6-Jul-02 3:05
Pravesh Soni6-Jul-02 3:05 
Hi,

To access the web services form asp page you have to use the XMLHTTP.

The following snippet from my asp page.

Function GetAppSettings(appKey)

'declaration
Dim url, xmlhttp, dom, node

'Call web service using HTTP-GET method
url="http://localhost/myapp/service1.asmx/"
url=url & "GetAppSettings?key=" & appKey
set xmlhttp = server.createobject("Microsoft.XMLHTTP")
xmlhttp.open("GET",url,False)
xmlhttp.send

'parse the result
set dom=server.createobject("Microsoft.XMLDOM")
dom.load(xmlhttp.responsebody)
set node=dom.selectsinglenode("//string")
if not node is nothing then
GetAppSettings = node.text
end if
End Function

Response.Write GetAppSettings("SpecialOffer")


Cheers,
Entry
GeneralASP.NET and non-unique Session IDs Pin
Paul Watson3-Jul-02 3:57
sitebuilderPaul Watson3-Jul-02 3:57 
GeneralRe: ASP.NET and non-unique Session IDs Pin
Michael P Butler3-Jul-02 4:16
Michael P Butler3-Jul-02 4:16 
GeneralRe: ASP.NET and non-unique Session IDs Pin
Paul Watson3-Jul-02 4:59
sitebuilderPaul Watson3-Jul-02 4:59 
GeneralRe: ASP.NET and non-unique Session IDs Pin
Michael P Butler3-Jul-02 5:14
Michael P Butler3-Jul-02 5:14 
GeneralRe: ASP.NET and non-unique Session IDs Pin
Chris Rickard3-Jul-02 4:33
Chris Rickard3-Jul-02 4:33 
GeneralRe: ASP.NET and non-unique Session IDs Pin
Paul Watson3-Jul-02 5:04
sitebuilderPaul Watson3-Jul-02 5:04 
GeneralRe: ASP.NET and non-unique Session IDs Pin
Not Active3-Jul-02 5:18
mentorNot Active3-Jul-02 5:18 
GeneralRe: ASP.NET and non-unique Session IDs Pin
Jeremy Falcon3-Jul-02 5:57
professionalJeremy Falcon3-Jul-02 5:57 
GeneralPWS + ASP.NET Pin
Mauricio Ritter2-Jul-02 2:10
Mauricio Ritter2-Jul-02 2:10 
GeneralRe: PWS + ASP.NET Pin
Andy Smith2-Jul-02 6:04
Andy Smith2-Jul-02 6:04 
General(PHP) A syntax highlighter Pin
Nnamdi Onyeyiri1-Jul-02 10:13
Nnamdi Onyeyiri1-Jul-02 10:13 
GeneralRe: (PHP) A syntax highlighter Pin
Jeremy Falcon1-Jul-02 10:20
professionalJeremy Falcon1-Jul-02 10:20 
GeneralRe: (PHP) A syntax highlighter Pin
Nnamdi Onyeyiri1-Jul-02 10:22
Nnamdi Onyeyiri1-Jul-02 10:22 
QuestionHow can VB script be used to open a web page in a seperate browser window? Pin
Bart-Man1-Jul-02 3:48
Bart-Man1-Jul-02 3:48 
AnswerRe: How can VB script be used to open a web page in a seperate browser window? Pin
Bart-Man1-Jul-02 4:05
Bart-Man1-Jul-02 4:05 
GeneralAutomate thumbnail creation Pin
30-Jun-02 21:20
suss30-Jun-02 21:20 
GeneralRe: Automate thumbnail creation Pin
Chris Rickard1-Jul-02 4:09
Chris Rickard1-Jul-02 4:09 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.