Click here to Skip to main content
15,885,079 members
Articles / Programming Languages / C#

Introducing Cardspace

Rate me:
Please Sign up or sign in to vote.
4.03/5 (16 votes)
1 May 200710 min read 54.9K   456   38  
Getting started with cardspace
<%@ Page Language="C#" AutoEventWireup="true"  ValidateRequest="false"%>
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 
  "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 

 <script runat="server">
 protected void Page_Load(object sender, EventArgs e) 
  �{
       //Extracting encrypted token details from xmlToken
        lblcontent.Text = Request.Params["xmlToken"] ;
   }

 </script>

 <html>
 <head id="Head1" runat="server">
 <title>CardProcessor test page</title>
 </head>
<body> 
<form id="form1" runat="server">
<div>
  The value of the token is:
  <asp:Label ID="lblcontent" runat="server" Text="Label"></asp:Label>
  <!--
  <asp:Label ID="givenname" runat="server" Text=""></asp:Label>
  <asp:Label ID="surname" runat="server" Text=""></asp:Label>
  <asp:Label ID="email" runat="server" Text=""></asp:Label>
  <asp:Label ID="ppid" runat="server" Text=""></asp:Label>
  -->
</div>
    
</form>
</body>
</html>

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
India India
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions