diff options
Diffstat (limited to 'samples/OpenIdRelyingPartyClassicAsp/logout.asp')
-rw-r--r-- | samples/OpenIdRelyingPartyClassicAsp/logout.asp | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/samples/OpenIdRelyingPartyClassicAsp/logout.asp b/samples/OpenIdRelyingPartyClassicAsp/logout.asp new file mode 100644 index 0000000..a3f0633 --- /dev/null +++ b/samples/OpenIdRelyingPartyClassicAsp/logout.asp @@ -0,0 +1,12 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml"> +<head> + <title>DotNetOpenAuth Classic ASP sample</title> +</head> +<body> + <% + Session.Abandon + Response.Redirect "default.asp" + %> +</body> +</html> |