473,946 Members | 4,024 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Custom providers (MembershipProv ider, SiteMapProvider , ProfileProvider )

I need to have some simple examples of how to do the following:

1. Create an asp.net MembershipProvi der from scratch
2. Extend the existing XMLSiteMapProvi der that comes with asp.net to include
an image attribute in the SiteMapNode element.
3. Create an asp.net ProfileProvider from scratch.

Does anybody have any links on how to do the above?
Oct 26 '08 #1
3 3039

Please stop multi posting.

microsoft.publi c.dotnet.framew ork.aspnet
microsoft.publi c.dotnet.langua ges.vb

microsoft.publi c.sqlserver.pro gramming

Others?
Etiquette is to frually CROSS POST to 1 or (a few) more newsgroups with the
same post.

This is to keep the same answering being re-answered, wasting peoples time.

I put a response in the .aspnet newsgroup.


"Andy B" <a_*****@sbcglo bal.netwrote in message
news:%2******** ********@TK2MSF TNGP05.phx.gbl. ..
>I need to have some simple examples of how to do the following:

1. Create an asp.net MembershipProvi der from scratch
2. Extend the existing XMLSiteMapProvi der that comes with asp.net to
include an image attribute in the SiteMapNode element.
3. Create an asp.net ProfileProvider from scratch.

Does anybody have any links on how to do the above?

Oct 27 '08 #2
frually = frugally

"sloan" <sl***@ipass.ne twrote in message
news:Ow******** ******@TK2MSFTN GP06.phx.gbl...
>
Please stop multi posting.

microsoft.publi c.dotnet.framew ork.aspnet
microsoft.publi c.dotnet.langua ges.vb

microsoft.publi c.sqlserver.pro gramming

Others?
Etiquette is to frually CROSS POST to 1 or (a few) more newsgroups with
the same post.

This is to keep the same answering being re-answered, wasting peoples
time.

I put a response in the .aspnet newsgroup.


"Andy B" <a_*****@sbcglo bal.netwrote in message
news:%2******** ********@TK2MSF TNGP05.phx.gbl. ..
>>I need to have some simple examples of how to do the following:

1. Create an asp.net MembershipProvi der from scratch
2. Extend the existing XMLSiteMapProvi der that comes with asp.net to
include an image attribute in the SiteMapNode element.
3. Create an asp.net ProfileProvider from scratch.

Does anybody have any links on how to do the above?


Oct 27 '08 #3
Got it... sorry
"sloan" <sl***@ipass.ne twrote in message
news:Ow******** ******@TK2MSFTN GP06.phx.gbl...
>
Please stop multi posting.

microsoft.publi c.dotnet.framew ork.aspnet
microsoft.publi c.dotnet.langua ges.vb

microsoft.publi c.sqlserver.pro gramming

Others?
Etiquette is to frually CROSS POST to 1 or (a few) more newsgroups with
the same post.

This is to keep the same answering being re-answered, wasting peoples
time.

I put a response in the .aspnet newsgroup.


"Andy B" <a_*****@sbcglo bal.netwrote in message
news:%2******** ********@TK2MSF TNGP05.phx.gbl. ..
>>I need to have some simple examples of how to do the following:

1. Create an asp.net MembershipProvi der from scratch
2. Extend the existing XMLSiteMapProvi der that comes with asp.net to
include an image attribute in the SiteMapNode element.
3. Create an asp.net ProfileProvider from scratch.

Does anybody have any links on how to do the above?


Oct 29 '08 #4

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

5
2567
by: Graham | last post by:
I have created a custom MembershipProvider called "LassieMembershipProvider" that derives from "MembershipProvider". This providor is located in a Businesslogic layer dll called "Enlighten.LinkMad.Businesslogic". In one of my frontend websites I use this type to authenticate a user who is trying to login. The following excerpt is from the web.config of the particular site showing the reference to the custom provider, allowing .Net to do...
1
1239
by: John | last post by:
Hi I have created custom membership/role/profile providers as per the web.config below. My questions are; 1. Have I defined them correctly? 2. How can I make the Login and Create User Wizard controls to use these providers instead of the standard providers?
3
1927
by: Rich Armstrong | last post by:
I've implemented a custom profile provider following the pattern and examples provided with ASP.NET 2.0, but no Profile object ever appears in my page; that is, after executing the following, ProfileCommon profile = this.Profile; in my Page_Load method, profile is always null. My web.config file contains the following section:
0
1412
by: shapper | last post by:
Hello, I need to create a custom SiteMapProvider. I searched in Google for examples but I am still completly lost. The custom SiteMapProvider I need to create is exactly the same as the Asp.Net SiteMapProvider: The only difference is: attribute Visible = "True".
0
2146
by: Alex Brown | last post by:
Is it a problem to attach Non-static site map providers under one that inherits from StaticSiteMapProvider ? We are implementing a custom site map provider for a website that is being converted to ASP.NET 2.0. The conversion is going well because some of the features, like Master Pages and Site Maps, of ASP.NET 2.0 allow us to migrate away from a "top frame" style of navigation to a standard dynamic cascading top menu with minimal...
1
3611
by: =?ISO-8859-1?Q?Carlos_Guzm=E1n_=C1lvarez?= | last post by:
Hello: I have custom Membership and Role providers for an ASP.NET application, the problem comes when the Authentication gets done ( and i'm using the Login control, it finished properly ) but looks like the user is not really logged in ( Verified using the LoginView control ) ¿¿ What could be the possible reasons for that problem ?? Thanks in advance !!!
5
8303
by: Alias | last post by:
Hi - I'm trying to implement a custom RoleProvider based on the SqlRoleProvider. I keep receiving a an error that it can't load type 'MyRoleTest.MyRoleProvider' when trying to load my RoleProvider. However this only occurs after deployment. On my local machine it works fine. So I created the most basic role provider project I could think of. It is below: Imports System.Web.Security
9
3290
by: Kirk | last post by:
I have successfully, implemented a custom Membership Provider to a SQL 2000 table, however, I am having problems doing the same with a Profile Provider. As I understand it, the steps for both of these are similar: Create a new class (MyMembershipProvider and MyProfileProvider). Add the "Inherits..." value to the provider (MembershipProvider and ProfileProvider). Modify the web.config file to assign this class and it's connection...
0
1630
by: =?Utf-8?B?TmVhbA==?= | last post by:
I have developed a simple membershipuser class and membershipprovider class. I basically followed the procedures referenced at http://msdn.microsoft.com/en-us/library/44w5aswa.aspx and made it even simpler by inheriting sqlmembershipprovider, and did overrides on only a couple of methods. So far, they seem to work fine when used in code. However, I tried using the web site administration tool to edit a user and received the error below. ...
1
1670
by: Andy B | last post by:
I need to have some simple examples of how to do the following: 1. Create an asp.net MembershipProvider from scratch 2. Extend the existing XMLSiteMapProvider that comes with asp.net to include an image attribute in the SiteMapNode element. 3. Create an asp.net ProfileProvider from scratch. Does anybody have any links on how to do the above?
0
10149
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
9974
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
11140
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
11320
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
10679
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
9872
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
0
7402
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
6095
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
1
4928
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.