<%@ Language=JScript %> <% // Sample ASP code that uses CAS // By Howard Gilbert // If you logon, it says "Hello " followed by your userid // For the Web server to talk to the CAS server, this code depends on the // Microsoft ServerXMLHTTP control provided with MSXML. If the MS XML // parser is not already installed on the IIS host machine, // download version 3.0 SP1 or better from http://www.microsoft.com/xml // Insert name of CAS Server at your location var CAS_Server = "https://netid-test.tamu.edu/cas"; // we don't care if we are logged in or not, call logout service. var url = CAS_Server+"logout" Response.Redirect(url); Response.End; %>