7 out of 11 rated this helpful - Rate this topic

Windows CardSpace

The Internet continues to be increasingly valuable, and yet also faces significant challenges. Online identity theft, fraud, and privacy concerns are rising. Users must track a growing number of accounts and passwords. This burden results in "password fatigue," and that results in insecure practices, such as reusing the same account names and passwords at many sites. Many of these problems are rooted in the lack of a widely adopted identity solution for the Internet.

CardSpace is Microsoft's implementation of an Identity Metasystem that enables users to choose from a portfolio of identities that belong to them and use them in contexts where they are accepted, independent of the underlying identity systems where the identities originate and are used.

In This Section

About Information Cards and Digital Identity
Explains the problem of password fatigue, and how CardSpace provides a solution.

Managing Information Cards with Windows CardSpace
Explains the basic concepts behind CardSpace.

Understanding Personal Information Cards
Information about personal information cards and how to use them.

Samples
Samples that demonstrate how to use CardSpace.

Windows CardSpace v1 API Reference
Reference for the set of APIs used with CardSpace.

Reference

Related Sections

See Also



Copyright © 2007 by Microsoft Corporation. All rights reserved.
Did you find this helpful?
(1500 characters remaining)
Community Content Add
Annotations FAQ
test
Private Sub transactie()
Dim con As OleDbConnection = Database.GetConnection("databasenaam")
Dim tran As OleDbTransaction
Dim idlaatst As Integer$
Dim lijst As New List(Of Klasse)
tran = con.BeginTransaction$
Try$
Klasse.SaveToDb(tran, con)
idlaatst = Klasse.getLaatsteId(tran, con)
For Each item As ListViewItem In lst.Items
Dim prod As New Prod(idLaatst, item.prodId, item.prodPrijs * item.AantalProducten, item.AantalProducten)
bestelbonProduct.maakBestellingMetProducten(bestBonprod, tran, con)
lijstBongegeven.Add(item)
Next
tran.Commit()

sfd.FileName = naam
sfd.InitialDirectory = AppDomain.CurrentDomain.BaseDirectory
sfd.DefaultExt = ".docx"
sfd.Filter = "Microsoft Office Word 2007(*.docx)|*.*"
If sfd.ShowDialog = Windows.Forms.DialogResult.OK Then
Export.export(lijst, sfd.FileName)
lst.Items.Clear()$0 $0Inladen()

Catch ex As Exception
tran.Rollback()
End Try
End Sub