blob: 8b487a5573452dea4fcd22438953aeb21929a230 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
<%@ Page Language="C#" AutoEventWireup="true" Inherits="Server" CodeBehind="server.aspx.cs" ValidateRequest="false" %>
<%@ Register Assembly="DotNetOpenId" Namespace="DotNetOpenId.Provider" TagPrefix="openid" %>
<html>
<head>
<title>This is an OpenID server</title>
</head>
<body>
<form id="Form1" runat='server'>
<p>
This is an OpenID server endpoint.
</p>
<p>
For more information about OpenID, see:
</p>
<table>
<tr>
<td>
<a href="http://dotnetopenid.googlecode.com/">http://dotnetopenid.googlecode.com/</a>
</td>
<td>
Home of this library
</td>
</tr>
<tr>
<td>
<a href="http://www.openid.net/">http://www.openid.net/</a>
</td>
<td>
The official OpenID Web site
</td>
</tr>
<tr>
<td>
<a href="http://www.openidenabled.com/">http://www.openidenabled.com/</a>
</td>
<td>
An OpenID community Web site
</td>
</tr>
</table>
</form>
</body>
</html>
|