Wrox Programmer Forums
Go Back   Wrox Programmer Forums > ASP.NET and ASP > ASP.NET 2.0 > ASP.NET 2.0 Professional
|
ASP.NET 2.0 Professional If you are an experienced ASP.NET programmer, this is the forum for your 2.0 questions. Please also see the Visual Web Developer 2005 forum.
Welcome to the p2p.wrox.com Forums.

You are currently viewing the ASP.NET 2.0 Professional 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 March 8th, 2007, 12:12 PM
Registered User
 
Join Date: Mar 2007
Posts: 3
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via MSN to Woodman
Default Accessing Strongly Typed Session Data

I have your Professional ASP.NET 2.0 book. Very nice. I am implementing a StateServer to manage session data. I used your samples in the book as a model, but all data stored was string data. My implementation stores int data. Everything has compiled, and I can assign int values to the Session data, but I can't seem to format the syntax appropriately to extract it. The following forms give "Specified cast not valid":

int foo = (int)Session["openproject"];
or
int foo = Convert.Int32(Session["openproject"].ToString());

I have implemented a serializable class with private "int" variables for the session object. Help!

Tom


 
Old March 8th, 2007, 07:13 PM
Registered User
 
Join Date: Mar 2007
Posts: 3
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via MSN to Woodman
Default

Here is the class definition...

[Serializable]
public class Project
{
    public int projectid;

    public Project()
    {
        //
        // TODO: Add constructor logic here
        //
    }

    public override string ToString()
    {
        return String.Format("Project Object: {0:c}}", projectid);
    }

}

Here is the get/set implemented within the System.Web.UI.Page subclass...

    public Project OpenProject
    {
        get
        {
            return (Project)Session[OPENPROJECT];
        }
        set
        {
            Session[OPENPROJECT] = value;
        }
    }



 
Old March 9th, 2007, 04:42 PM
Registered User
 
Join Date: Mar 2007
Posts: 3
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via MSN to Woodman
Default

Nevermind. Found the problem. I'm stupid...

this.OpenProject.projectid








Similar Threads
Thread Thread Starter Forum Replies Last Post
strongly-typed DataSet.Rows r n't getting Updated srkvellanki ASP.NET 2.0 Professional 3 October 1st, 2008 05:26 PM
"Strongly typed" roman BOOK: Beginning ASP.NET 3.5 : in C# and VB BOOK ISBN: 978-0-470-18759-3 2 June 26th, 2008 10:35 AM
Sorting Gridview bound to strongly typed object kulkarnimonica ASP.NET 2.0 Professional 10 September 20th, 2007 03:32 PM
Record Locking & Transactions in Strongly Typed DS Kia Visual Basic 2005 Basics 4 July 23rd, 2007 06:23 AM
Crystal Report and Strongly-Typed dataset jaucourt Crystal Reports 1 February 9th, 2004 07:39 AM





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