The following codes describe the types of changes to any part of the course:
- Technical error or technical change
- Clarification or simplification
- Typographical error
- 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 added | Page number | Error or suggested change | Type |
|---|
| 12/05/05 | 9 | The “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 added | Page number | Error or suggested change | Type |
|---|
| 3/9/2006 | 25 | The 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 added | Page number | Lab letter | Exerc. number | Procedure name | Step number | Error or suggested change | Type |
|---|
Classroom Setup Guide
Collapse this tableExpand this table
| Page number | Error or suggested change | Type |
|---|
Trainer Materials CD
Collapse this tableExpand this table
| Section or folder | Path | Error or suggested change | Type |
|---|
Student Materials CD
Collapse this tableExpand this table
| Section or folder | Path | Error or suggested change | Type |
|---|
| | | |
| | | |