Hi Imar:
After searching every bit of my code and re-tracing my steps, I just couldn't find anything out of place. So I just deleted the control and re-did the exercise. This time, the "Please wait" .gif displayed in the lower left corner like the books' image.
I think maybe last time, I messed up something by playing with the columns and settings on the table trying to get the red stars to display. I apparently got something out of whack.
The only thing I did different this time was I didn't mess with the table, and when I added the controls to the far right cell, rather than put them next to each other, I put them underneath each other, so that last cell wouldn't be so wide.
Is it normal for the design view to be blank in the Contact control after you've created it and completed the coding? I could see the table and controls there before, but after finishing with the master page mark up and saving it, the
design view of the "ContactForm.ascx" went all blank - plain white. (I can still view the mark up.)
edit:
I was also wondering about something in this part of the code under the ContactForm control:
<asp:UpdateProgress ID="UpdateProgress1" runat="server" AssociatedUpdatePanelID="UpdatePanel1">
<ProgressTemplate>
<div class="PleaseWait">
Please Wait...
</div>
</ProgressTemplate>
</asp:UpdateProgress>
My code works (or seems to) the way its supposed to, but under that part, there is a green squiggly line under "PleaseWait" and when I put my cursor on it, the tool tip states:
"The Class or CssClass value is not defined"
But I do have it under the two app_themes style sheets at the bottom as instructed as so:
.PleaseWait
{
height: 32px;
width: 500px;
background-image: url(Images/PleaseWait.gif);
background-repeat: no-repeat;
padding-left: 40px;
line-height: 32px;
}
Thanks,
Rachel