Article ID: 914466 - Last Review: February 12, 2007 - Revision: 2.2

2543A Core Web Application Technologies with Microsoft Visual Studio 2005

On This Page

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 (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
Collapse this tableExpand this table
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

Collapse this tableExpand this table
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

Collapse this tableExpand this table
Date addedPage numberLab letterExerc. numberProcedure nameStep numberError or suggested change Type

Classroom Setup Guide

Collapse this tableExpand this table
Page numberError or suggested changeType

Trainer Materials CD

Collapse this tableExpand this table
Section or folderPathError or suggested changeType

Student Materials CD

Collapse this tableExpand this table
Section or folderPathError or suggested changeType

Keywords: 
KB914466

Note: This article is from Microsoft Knowledage Base


How we have helped PC users like you

In the News: Read More In ...

Related problems posted by other users

more...