ASP.NET Roles

MSDN – Roles Class – first place to consult if anything! MSDN – Role Provider MSDN – How To: Use Role Manager in ASP.NET 2.0 MSDN – roleManager Element (ASP.NET Settings Schema) ASP.NET Quickstart Tutorials – Using the Membership and Role Manager APIs By Bryan Xu

The .NET Framework type to ADO.NET data type mappings

.NET Framework Type ADO.NET Database Type SQL Data Type String Varchar Varchar() String Nvarchar Nvarchar() String NChar Nchar() String NText NText String Text Text Double BigInt Float DateTime DateTime Datetime DateTime SmallDateTime Smalldatetime Int Int Int Int64 BigInt Bigint Int16 SmallInt smallint Byte[] Binary Binary() Byte[] Image Image Byte[] VarBinary Varbinary() Byte TinyInt Tinyint Bool … Continued

Binding Data to Data Web Controls

4GuysFromRolla – Binding a Scalar Array to Data Web Control The ASP.NET data Web controls can display any data that implements either the IEnumerable interface or the IListSource interface. They are bound through two lines of codes: The object is assigned to the data Web control’s DataSource property The data Web control’s DataBind() method is … Continued

4GuysFromRolla – Admin Page

Admin pages are necessary for websites with login capabilities. Just couple links on the topic: 4GuysFromRolla – Rolling Your Own Website Administration Tool – Part 1 4GuysFromRolla – Rolling Your Own Website Administration Tool – Part 2 By Bryan Xu

Send Emails in ASP.NET

The following two resources links shall deem useful: System.Net.Mail 4GuysFromRolla – Sending Email in ASP.NET 2.0 In addition, the MS tutorial video below also demonstrates a way to send email: How Do I: Create a “Contact Us” Page By Bryan Xu