Wrox Programmer Forums
|
BOOK: Beginning Dreamweaver MX/MX 2004 MX ISBN: 978-0-7645-4404-0; MX 2004 ISBN: 978-0-7645-5524-4
This is the forum to discuss the Wrox book Beginning Dreamweaver MX by Charles E. Brown, Imar Spaanjaars, Todd Marks; ISBN: 9780764544040
Please indicate which version of the book you are using when posting questions.
Welcome to the p2p.wrox.com Forums.

You are currently viewing the BOOK: Beginning Dreamweaver MX/MX 2004 MX ISBN: 978-0-7645-4404-0; MX 2004 ISBN: 978-0-7645-5524-4 section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
 
Old June 22nd, 2006, 02:33 AM
Authorized User
 
Join Date: Jun 2006
Posts: 15
Thanks: 0
Thanked 0 Times in 0 Posts
Default Cross Page Post Back

I'm hoping someone can help me with a Cross Page Post Back

In the source page, I have declared a Public Property:

    Public ReadOnly Property userAccountID() As Int32
        Get
            Return registrationAccountID
        End Get
    End Property

In the Destination Page, I have declared a PreviousPage.

<%@ PreviousPageType VirtualPath="~/secure_members/accountDetails.aspx" %>

I am attempting to set the value of a control on a DetailsView control, inserting

    Protected Sub DetailsView1_ItemInserting(ByVal sender As Object, _
       ByVal e As System.Web.UI.WebControls.DetailsViewInsertEventAr gs) _
       Handles DetailsView1.ItemInserting
        e.Values("UserName") = User.Identity.Name
        e.Values("registrationEventID") = "1"
        e.Values("registrationAccountID") = PreviousPage.userAccountID
    End Sub

When I run the page, I get this error:

Object reference not set to an instance of an object. Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.

Exception Details: System.NullReferenceException: Object reference not set to an instance of an object.

Source Error:

Line 14: e.Values("registrationAccountID") = PreviousPage.userAccountID


What am I missing? When i typed the inserting object for the Account ID (e.Values("registrationAccountID") = PreviousPage.userAccountID), the userAccountID popped up in the intellisense so I thought it would work.

Any help is appreciated!

 
Old June 22nd, 2006, 03:29 AM
Imar's Avatar
Wrox Author
 
Join Date: Jun 2003
Posts: 17,089
Thanks: 80
Thanked 1,576 Times in 1,552 Posts
Default

Hi there,

How is this related to the book "Beginning Dreamweaver MX / MX 2004"??

I think you're better off posting this in an appropriate ASP.NET 2.0 forum, located here: http://p2p.wrox.com/asp-net-asp-12

Cheers,

Imar
---------------------------------------
Imar Spaanjaars
Everyone is unique, except for me.
Author of ASP.NET 2.0 Instant Results and Beginning Dreamweaver MX / MX 2004





Similar Threads
Thread Thread Starter Forum Replies Last Post
Cross Page Post Back problem akhilesh_g ASP.NET 2.0 Professional 2 December 24th, 2007 04:38 AM
post back k.manisha ASP.NET 1.0 and 1.1 Professional 2 February 7th, 2007 02:28 PM
Problem with Cross Page Post Back keaja ASP.NET 2.0 Basics 1 October 31st, 2006 07:00 AM
Cross Page Post Back shario ASP.NET 2.0 Basics 0 June 22nd, 2006 03:44 AM





Powered by vBulletin®
Copyright ©2000 - 2020, Jelsoft Enterprises Ltd.
Copyright (c) 2020 John Wiley & Sons, Inc.