MVC :: How To Access Profile (MVC 3 Razor)
Feb 4, 2011
I'm all new at MVC, so how do I access the users Profile attributes which are defined in the web.config file.With WebForms I would normally do something like this:
[Code]....
[Code]....
I really can't figure out how to do it in MVC 3 Razor.Would really like to see a working example,
View 1 Replies
Similar Messages:
Apr 30, 2010
ASP.NET profile properties are trivially available to the code-behind of an ASPX web page courtesy of the HttpContext.Current.Profile object.
In a .svc web service, how does one bring ProfileCommon and paraphernalia into scope?
View 1 Replies
Aug 9, 2010
In asp.net (using MVC, but this happens in regular too)
Profile.GetProfile(username);
will update the LastActivityDate for that user. This is not intended when someone else is viewing that user's profile.
In the membership class you can specify whether to update this date with a second param, like so:
Membership.GetUser(username, false); // doesn't update LastActivityDate
Membership.GetUser(username, true); // updates LastActivityDate
Is there anyway to do something similar in the Profile provider without writing my own provider?
View 1 Replies
May 11, 2010
I'm having trouble accessing custom profile properties that I've declared in my web.config using the TableProfileProvider available at [URL] I set everything up according to the instructions but keep receiving an error stating "The type or namespace name 'Profile' could not be found" whenever I refer to the Profile object in my codebehind. My web.config is:
<profile enabled="true" defaultProvider="TableProfileProvider">
<providers>
<clear />
<!-- below is the asp.net default provider -->
<!--<add name="AspNetSqlProfileProvider" type="System.Web.Profile.SqlProfileProvider" connectionStringName="WebPortalDb" applicationName="/" />-->
<add name="TableProfileProvider"
type="Microsoft.Samples.SqlTableProfileProvider"
connectionStringName="WebPortalDb"
table="_ExtendedUserProfileData"
applicationName="WebPortal" />
</providers>
<properties>
<add name="FirstName"
type="string"
defaultValue="[null]"
customProviderData="FirstName;nvarchar" />
<add name="LastName"
type="string"
defaultValue="[null]"
customProviderData="LastName;nvarchar" />
<add name="EmailAddress"
type="string"
defaultValue="[null]"
customProviderData="EmailAddress;nvarchar" />
<add name="LastUpdateDate"
type="datetime"
defaultValue="[null]"
customProviderData="LastUpdatedDate;datetime" />
</properties>
</profile>
View 4 Replies
Jun 4, 2010
I'm having trouble getting started with the SqlTableProfileProvider. The documentation is here:[URL]I have set up my project exactly like the whitepaper example but I can't access the Profile.SomeProfileField. When I build the project it shows that the Profile object doesn't exist in the current context. I have included the System.Web.Security and System.Web.Profile namespaces. I tried to add a reference to System.Web.Profile but can't find that DLL anywhere to add. Can anyone push me in the right direction?
View 3 Replies
May 14, 2010
i'm trying to run a conditional statement in a class i'm placing in my App_Code folderthe condition is whether the person is logged in or not. I normally have two ways to do this in my masterpage and ASPX's
if (!User.IsAuthenticated) or if(Profile.username = "anonymous")
however neither of these things seem available to me in the .cs i'm making. anyone know what i'm missing? maybe a using namespace up top?
View 1 Replies
Feb 19, 2010
I want to access membership and profile objects and wants to access profile properties that I have defined in my web app web.config file, from a windows service. Anyone have any idea on how to do this?
View 3 Replies
Feb 23, 2010
I want to access membership and profile objects and wants to access profile properties that I have defined in my web app web.config file, from a windows service. I have used this code
foreach (MembershipUser user
in Membership.GetAllUsers())
{
ProfileCommon userProfile = profile.GetProfile(user.UserName);
}
But its giving the followin errors The type or namespace name "ProfileCommon" could not found (are you missing a using directive or an assembly reference?) The type or namespace name "MembershipUser" Could not found (are you missing a using directive or an assembly reference?)
View 6 Replies
Jan 3, 2011
I am using profile services to store some attributes of users registered in the website. Now I am making a display profile page for a user. The problem is that the profile loads easily when I am running the site from VS 2010, but it gives the following error when I run it from IIS7 on my local machine:
System.NullReferenceException: Object reference not set to an instance of an object.
Source Error:
[Code]....
[code]....
View 4 Replies
Aug 6, 2010
I'm trying to update/create the user profile for a specific user that will not be the logged on user of the moment. I'm able to do this with the following code:
'Dim p As ProfileBase = ProfileBase.Create(Email, False)
View 3 Replies
Feb 4, 2010
I am logged in as user1, and while creating a user in which I have additional information which would store first and last name into the profile database. I have the following code
[Code]....
But because I just have profile like that, it is updating the profile of user1 not the new user i just created
[Code]....
View 5 Replies
Dec 5, 2010
I'm being stupid but don't know what I'm missing.I want to use asp.net profile and have a profile property.So in the webconfig for my site I've added:
<profile>
<properties>
<add name="Name"/>
</properties>
</profile>
But in the code behind a page I cannot use Profile.Visual Studio is just saying the Profile is not known in the current context.Thus I cannot do
Profile.Name = ....
or
x = Profile.GetPropertyValue(....)
View 13 Replies
Jun 25, 2010
I got the followig task.Create a website (Profile.aspx) in which the User can create and edit his profile.Well, I know how to write in a database, but how do I get the UserName oder the UserID to make a PrimaryKey?If the user is logged in a session will be started. In this session is the UserName but I don't know how to read out the UserName with ASP.NET to make an PrimaryKey. If I would try to read out the UserName with C# I must save it in an variable and give it somehow to my form.
asp:sqldatasource id="SqlDataSource1" runat="server"
connectionstring="<%$
ConnectionStrings:MyConnectionString %>"[code]....
View 4 Replies
Feb 17, 2010
Is there anything missing in IIS 6.0 that prevents me from (Insert into table) using MS-Access?
Explain: The application works fine under Visual Studio 2008 IDE the insert into table works fine with no error, Also I tested with hosting provider and works fine with no problem. but now I have published the same exact app in a dedicated server windows 2003 with
IIS 6.0 .NET framework 2.0 with latest service pack I gave IIS_WPG write/modify access to the folder where MS-Access database is located and database but at the time of insert an error pop-up. I need to install in the Server or settings in the IIS to recognize my MS-Access db is it some office runtime that I am missing. (BTW I am using OLEDB connection string in my C# )
Using System.Data.OleDb;
I can retrieve data off of it with no problem but when I try to insert is when it fails I thought the problem was Access Rights but I do not think is the case.
View 4 Replies
Dec 14, 2010
We tried to add a Entity model using Razor here was the syntax: @ModelType BID.Data.Entities.PlumbingPermit
View 4 Replies
Feb 28, 2011
I'm following the ASP.NET MVC Tutorial and having started in VB.NET I'm having trouble converting the following razor code:
I have got
<ul>
@For Each g As MvcApplication1.Genre In Model
<li> @g.Name </li>
Next
</ul>
but getting
Attribute Sepcifier is not a complete statement on both the <li> tags. I understand I need to use line continuation but can't figure out where.
View 3 Replies
Jan 23, 2011
Now that ASP.NET MVC 3 with the new Razor engine has been officially released, is there any official documentation for it?The question asp.net mvc3 razor documentation? has some good links to introductory texts. But I'm looking for a reference documentation that contains a complete description of all @keywords.
View 2 Replies
Sep 15, 2010
Here is what I would like to express by Razor:
<b>@parameterMapping.Title</b> (Category: @parameterMapping.Category.Title, Regexp: @parameterMapping.Regexp)
But to make it parseable I have to write it this way:
<b>@parameterMapping.Title</b> <text>(Category: </text> @parameterMapping.Category.Title <text>, Regexp:</text> @parameterMapping.Regexp <text>)</text>
Are there better ways to solve this problem?
View 1 Replies
Feb 27, 2011
How does one create a .cshtml page in an ASP.NET web application? The option to choose Razor is obvious when using MVC - it appears when adding a view. But I can't seem to figure out how to accomplish this in a plain ASP.NET Web Application. Is it even possible?
View 1 Replies
Jan 18, 2011
I've recently switched over to using the Razor view engine, and I want to specify a namespace to use in a view. I've tried adding an entry to the Web.config file, ie:
[Code]....
But none of my views recognise any of the classes inside that namespace, so I have to declare the namespace in every view that needs it. why the Web.config approach isn't working?
View 13 Replies
Sep 2, 2010
If I look at the Razor View Engine, then I see a very nice and concise syntax that is not particularly tied to generating html. So I wonder, how easy would it be to use the engine outside asp.net in a "normal" .net environment for example to generate text, code,...
View 3 Replies
Jul 10, 2010
Will or is T4MVC compatible with Razor?
[code]....
Does it make sense to use both at same time?
View 6 Replies
Nov 24, 2010
I've just installed the new MVC3 RC ,and have no idea about where the *.ascx template stuffs live in?
View 1 Replies
Mar 11, 2011
I try to generate this HTML code with Razor:
[Code]....
This is my Code in .cshtml, i have to select the "current" Style and insert <span> </span> tags wraping item.Text, but it doesnt work ....
[Code]....
View 2 Replies
Feb 10, 2011
what is the best way to migrate MVC2 project to MVC 3.
View 4 Replies