2543A Core Web Application Technologies with Microsoft Visual Studio 2005 (914466)



The information in this article applies to:

  • 2543A Core Web Application Technologies with Microsoft Visual Studio 2005

The following codes describe the types of changes to any part of the course:
  1. Technical error or technical change
  2. Clarification or simplification
  3. Typographical error
  4. Other

Send us your feedback

Send all courseware feedback to mailto:support@mscourseware.com
You can use this alias to report one or more of the following issues:
  • Error log submissions, including suggestions
  • Classroom setup issues
  • Lab problems
  • Presentation problems
  • Missing files

Report errors or suggest changes

When you provide feedback, include the course name and the course number in the subject line of your e-mail message. To provide comments or to report bugs, include the following information:
  • The document number or the CD number
  • The page number or the location
  • A complete description of the error or a complete description of your suggested change
Some reports involve research or involve reproducing issues in a lab environment. Provide any details that can help us to research the issue.

Corrections and changes

Delivery Guide

Module 7
Date addedPage numberError or suggested changeType
12/05/059The "Checking Role Membership" section reads:
You can use the User object to check whether the current user is a member of a particular role. The code in the following example hides the btnDownloadFile button if the user is not a member of the Subscribers role:

[Visual Basic]
If Not User.IsInRole("Subscribers") Then
btnDownloadFile.Visible = False
End If

[C#]
if (! User.IsInRole("Subscribers"))
btnDownloadFile.Visible = false;

It should read:
You can use the User object to check whether the current user is a member of a particular role. The code in the following example displays the btnDownloadFile button if the user is a member of the Subscribers role (assuming that the button's Visible property was set to False at design time):

[Visual Basic]
If User.IsInRole("Subscribers") Then
btnDownloadFile.Visible = True End If

[C#] if (User.IsInRole("Subscribers"))
btnDownloadFile.Visible = true;
1

Toolkit

Date addedPage numberError or suggested change Type
3/9/200625The fourth highlighted code example reads:
string strColor = Request.QueryString("color"); string strProduct = Request.QueryString("productname");

It should read:
string strColor = Request.QueryString["color"]; string strProduct = Request.QueryString["productname"];

Lab

Date addedPage numberLab letterExerc. numberProcedure nameStep numberError or suggested change Type

Classroom Setup Guide

Page numberError or suggested changeType

Trainer Materials CD

Section or folderPathError or suggested changeType

Student Materials CD

Section or folderPathError or suggested changeType

Modification Type:MajorLast Reviewed:3/9/2006
Keywords:KB914466