Join Denver .NET Certification Study Group

You'll get invited to our Meetups as soon as they're scheduled!

DTC 70-528 Session 4: Chapter 6 & 7

May 21
Thu 6:00 PM
Location
This location is shown only to members
Estimated attendance
 6  people attended.

Who organized?
RJ Hatch

We will be covering chapters 6 (Input Validation and Site Navigation) & 7 (ASP.NET State Management) in the 70-526 Microsoft Press Book.

Pizza and soda will be provided on a donation basis.

Due to the upcoming Memorial Day holiday, the Visual Studio .Net User Group is meeting on the third monday (May 18th), and we will be moving our scheduled date to Thursday (May 21st).

Hope to see you there.

Photos of this Meetup

No photos yet.

Talk about this Meetup

  • Ely Lucas
    Posted May 21, 2009 8:49 AM
    Assistant Organizer
    Bill is signed up to do Chapter 7. The schedule is in the message boards at http://internetpro.meetup.c...
  • Steve
    Posted May 20, 2009 12:29 PM
    Anybody remember who is doing Chapter 7? I have in my notes I was only doing 6, so that is all I prepared for.

Who attended?

  • 6 attendees
    •  Cross-page postback, simplified. To amend our discussion on how to retrieve data from a form that postback'd to a different page - I found the example I was talking about last night. You can reference the control value without any references or casting of the page object: In calling Page2.aspx: <asp:TextBox ID="postBackTextBox" runat="server" Style="z-index: 101; left: 58px; position: absolute; top: 71px"></asp:TextBox> <asp:Button ID="okButton" runat="server" PostBackUrl="Page3.aspx" Style="z-index: 103; left: 245px; position: absolute; top: 69px" Text="Button" /> notice ID="postBackTextBox" and PostBackUrl="Page3.aspx". when the button is clicked, the postback goes to Page3 rather than normal Page2. in Page3.aspx code (e.g. Page_Load event), you retrieve the posted-back value like this: string val = Request["postBackTexBox"].ToString(); Try it, it's that simple.