"Profile" and "Session" not accessible in ASP.NET app

R

R.A.M.

Hello,
I am writing ASP.NET application in which I need to use User Profiles and
Session mechanisms.
Here I include part of my source code (Admin.cs):

using System;
using System.Data;
using System.Data.Sql;
using System.Data.SqlClient;
using System.Data.SqlTypes;
using System.Configuration;
using System.Web;
using System.Web.Security;
using System.Web.SessionState;
using System.Web.Hosting;
using System.Web.Profile;
using System.Diagnostics;

/// <summary>
/// Administrative settings and functions
/// </summary>
public static class Admin
{
/// <summary>
/// Default database name
/// </summary>
public static string DefaultDatabase
{
get
{
if (Profile.Database != null) // HERE PROBLEM #1
return Profile.Database.ToString();
...
}
}

/// <summary>
/// Current database name
/// </summary>
public static string Database
{
set
{
Session["Database"] = value; // HERE PROBLEM #2
}
...
}
...
}

I have compile-time errors:
#1: Name "Profile" doesn't exist in current context
#2: Name "Session" doesn't exist in current context

In Web.config I have:
....
<profile defaultProvider="SqlProfileProvider">
<providers>
<clear/>
<add name="SqlProfileProvider"
type="System.Web.Profile.SqlProfileProvider"
connectionStringName="SqlServices" applicationName="MIMMagazyn"/>
</providers>
<properties>
<add name="OperatorName" type="String"/>
<add name="Database" type="String"/>
<add name="DefaultStockName" type="String"/>
<add name="DefaultCategoryName" type="String"/>
<add name="Remarks" type="String"/>
</properties>
</profile>
....

Could you tell me please how to use Session and Profile in my code? Did I
missed something?
/RAM/
 
M

Michael Nemtsev, MVP

Hello R.A.M.,

What's the the Profile.Database? where did u get this?

---
WBR,
Michael Nemtsev [.NET/C# MVP] :: blog: http://spaces.live.com/laflour

"The greatest danger for most of us is not that our aim is too high and we
miss it, but that it is too low and we reach it" (c) Michelangelo


R> Hello,
R> I am writing ASP.NET application in which I need to use User Profiles
R> and
R> Session mechanisms.
R> Here I include part of my source code (Admin.cs):
R> using System;
R> using System.Data;
R> using System.Data.Sql;
R> using System.Data.SqlClient;
R> using System.Data.SqlTypes;
R> using System.Configuration;
R> using System.Web;
R> using System.Web.Security;
R> using System.Web.SessionState;
R> using System.Web.Hosting;
R> using System.Web.Profile;
R> using System.Diagnostics;
R> /// <summary>
R> /// Administrative settings and functions
R> /// </summary>
R> public static class Admin
R> {
R> /// <summary>
R> /// Default database name
R> /// </summary>
R> public static string DefaultDatabase
R> {
R> get
R> {
R> if (Profile.Database != null) // HERE PROBLEM #1
R> return Profile.Database.ToString();
R> ...
R> }
R> }
R> /// <summary>
R> /// Current database name
R> /// </summary>
R> public static string Database
R> {
R> set
R> {
R> Session["Database"] = value; // HERE PROBLEM #2
R> }
R> ...
R> }
R> ...
R> }
R> I have compile-time errors:
R> #1: Name "Profile" doesn't exist in current context
R> #2: Name "Session" doesn't exist in current context
R> In Web.config I have:
R> ...
R> <profile defaultProvider="SqlProfileProvider">
R> <providers>
R> <clear/>
R> <add name="SqlProfileProvider"
R> type="System.Web.Profile.SqlProfileProvider"
R> connectionStringName="SqlServices" applicationName="MIMMagazyn"/>
R> </providers>
R> <properties>
R> <add name="OperatorName" type="String"/>
R> <add name="Database" type="String"/>
R> <add name="DefaultStockName" type="String"/>
R> <add name="DefaultCategoryName" type="String"/>
R> <add name="Remarks" type="String"/>
R> </properties>
R> </profile>
R> ...
R>
R> Could you tell me please how to use Session and Profile in my code?
R> Did I
R> missed something?
R> /RAM/
 
R

R.A.M.

----- Original Message -----
From: <Michael Nemtsev>; "MVP" <[email protected]>
Newsgroups: microsoft.public.dotnet.framework.aspnet
Sent: Saturday, October 06, 2007 4:28 PM
Subject: Re: "Profile" and "Session" not accessible in ASP.NET app

What's the the Profile.Database? where did u get this?

I wanted to access "Database" profile field for current user. Isn't it a
proper syntax? (My friend told to use Profile.Database). How should I write
it?
/RAM/
 
J

Jesse Houwing

Hello R.A.M.,

Because you're not accessing them from either a page or a user control, there
is no access to these *properties* of the Page and UserControl class.

You can find these from any location by using the static HttpContext.Current
property. Like this: HttpContext.Current.Session and (though I haven't checked)
HttpContext.Current.Profile.

Jesse
Hello,
I am writing ASP.NET application in which I need to use User Profiles
and
Session mechanisms.
Here I include part of my source code (Admin.cs):
using System;
using System.Data;
using System.Data.Sql;
using System.Data.SqlClient;
using System.Data.SqlTypes;
using System.Configuration;
using System.Web;
using System.Web.Security;
using System.Web.SessionState;
using System.Web.Hosting;
using System.Web.Profile;
using System.Diagnostics;
/// <summary>
/// Administrative settings and functions
/// </summary>
public static class Admin
{
/// <summary>
/// Default database name
/// </summary>
public static string DefaultDatabase
{
get
{
if (Profile.Database != null) // HERE PROBLEM #1
return Profile.Database.ToString();
...
}
}
/// <summary>
/// Current database name
/// </summary>
public static string Database
{
set
{
Session["Database"] = value; // HERE PROBLEM #2
}
...
}
...
}
I have compile-time errors:
#1: Name "Profile" doesn't exist in current context
#2: Name "Session" doesn't exist in current context
In Web.config I have:
...
<profile defaultProvider="SqlProfileProvider">
<providers>
<clear/>
<add name="SqlProfileProvider"
type="System.Web.Profile.SqlProfileProvider"
connectionStringName="SqlServices" applicationName="MIMMagazyn"/>
</providers>
<properties>
<add name="OperatorName" type="String"/>
<add name="Database" type="String"/>
<add name="DefaultStockName" type="String"/>
<add name="DefaultCategoryName" type="String"/>
<add name="Remarks" type="String"/>
</properties>
</profile>
...

Could you tell me please how to use Session and Profile in my code?
Did I
missed something?
/RAM/
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,755
Messages
2,569,537
Members
45,020
Latest member
GenesisGai

Latest Threads

Top