473,738 Members | 3,636 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Login control db

Hi

What db does the built-in user control in asp.net uses? sql server? Access?
is it possible to choose?

Thanks

Regards
Dec 5 '05 #1
5 1563
You can use the built-in providers (e.g. SQLServer) a third party
implementation or even implement something on your own.

--
Daniel Fisher(lennybac on)
http://www.lennybacon.com
"John" <Jo**@nospam.in fovis.co.uk> wrote in message
news:%2******** **********@TK2M SFTNGP14.phx.gb l...
Hi

What db does the built-in user control in asp.net uses? sql server?
Access? is it possible to choose?

Thanks

Regards

Dec 5 '05 #2
Is Access supported?

Regards

"Daniel Fisher(lennybac on)" <in**@lennybaco n.com> wrote in message
news:e2******** ********@TK2MSF TNGP14.phx.gbl. ..
You can use the built-in providers (e.g. SQLServer) a third party
implementation or even implement something on your own.

--
Daniel Fisher(lennybac on)
http://www.lennybacon.com
"John" <Jo**@nospam.in fovis.co.uk> wrote in message
news:%2******** **********@TK2M SFTNGP14.phx.gb l...
Hi

What db does the built-in user control in asp.net uses? sql server?
Access? is it possible to choose?

Thanks

Regards


Dec 5 '05 #3
not out of the box, but you can write one.

-- bruce (sqlwork.com)
"John" <Jo**@nospam.in fovis.co.uk> wrote in message
news:%2******** **********@tk2m sftngp13.phx.gb l...
Is Access supported?

Regards

"Daniel Fisher(lennybac on)" <in**@lennybaco n.com> wrote in message
news:e2******** ********@TK2MSF TNGP14.phx.gbl. ..
You can use the built-in providers (e.g. SQLServer) a third party
implementation or even implement something on your own.

--
Daniel Fisher(lennybac on)
http://www.lennybacon.com
"John" <Jo**@nospam.in fovis.co.uk> wrote in message
news:%2******** **********@TK2M SFTNGP14.phx.gb l...
Hi

What db does the built-in user control in asp.net uses? sql server?
Access? is it possible to choose?

Thanks

Regards



Dec 5 '05 #4
Is SQL Server 2000 also supported or only sql server 2005?

Thanks

Regards

"Daniel Fisher(lennybac on)" <in**@lennybaco n.com> wrote in message
news:e2******** ********@TK2MSF TNGP14.phx.gbl. ..
You can use the built-in providers (e.g. SQLServer) a third party
implementation or even implement something on your own.

--
Daniel Fisher(lennybac on)
http://www.lennybacon.com
"John" <Jo**@nospam.in fovis.co.uk> wrote in message
news:%2******** **********@TK2M SFTNGP14.phx.gb l...
Hi

What db does the built-in user control in asp.net uses? sql server?
Access? is it possible to choose?

Thanks

Regards


Dec 5 '05 #5
Hi Dear John,

The Login controls, which include the Login, LoginView, PasswordRecover y,
LoginStatus, LoginName, CreateUserWizar d, and ChangePassword controls, allow
quick, seamless integration between ASP.NET 2.0 security and your Web
applications.

Tightly integrated with the Provider Model, Login controls take full
advantage of the configured provider.

For instance, if you configured your application to use the
AccessMembershi pProvider (which is the default), you could easily add to your
page a Login control that would automatically validate a user against the
AspNetDB Access database located within your applications Data folder.

Alternatively, if you configured your application to use the
SqlMembershipPr ovider, the configured Login controls would validate users
against a SQL database instead.

You can even use XML to store and authenticate username / userid and password

Bye
Venkat_KL

Dec 6 '05 #6

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

Similar topics

3
2878
by: koolyio | last post by:
Hey, could you please tell me what is wrong with my login script. I just started learning php. CODE: login.php <? session_start(); header("Cache-Control: private"); ?>
0
1288
by: Steve Commisso | last post by:
I'm trying to create a forked login where users of certain roles will be redirected to specific pages. The easy way to do this would be to do the redirecting in the Page_Load() of the default page after login, but I'd like to skip this step and just have the Login control go ahead and do it. So my plan is this: override the OnLoggedIn() method of the Login control with my own custom method that changes the DestinationPageUrl property...
14
2630
by: clintonG | last post by:
This is an appeal for peer support sent to Microsoft as will be noted in closing. The Login control does not include a Cancel button. The only option is to convert the Login control to a template which is not such a bad thing in itself but it means all other controls in the application must also be converted to templates to maintain a consistent UI. So much for writing 70% less code when foolish morons release a control with no cancel...
1
4538
by: EricRybarczyk | last post by:
I am starting a rewrite of an existing Classic ASP web site in ASP.NET 2.0. The existing ASP application has several types of users, each with a separate login process (separate login page, separate DB tables, etc). For one of these user types, the current application has an additional input field required for login… they have a username, password, and another “location code” field. Please don’t make me explain or justify this…...
1
6983
by: Jeff Lynch | last post by:
I'd like to add the following attributes to the Login control's Login Button to create a CSS rollover effect. How can I access the control's login button from the page's code-behind? LoginButton.Attributes.Add("onmouseover", "this.className = 'buttonsmallover'"); LoginButton.Attributes.Add("onmouseout", "this.className = 'buttonsmall'"); -- Jeff Lynch
3
5790
by: ilockett | last post by:
The background: I have a web app with a simple master page that contains just one content placeholder. I have created a web form that then uses this master page. Within the content placeholder, I have placed a Login control (Login1) and a ValidationSummary control. I have set the ValidationSummary's ValidationGroup property equal to "Login1".
5
1920
by: Afshar | last post by:
Hi everybody there, I have a special Login page that wants users to enter 3 passwords rather than a single password. But can't do it with Login control. I tried following scenarios: 1. Put an Login in the page and set its Visible = False instead put my own username and 3 password on the form. Then I checked 2nd and 3rd password seperately and passed username and password to Login control via its Username and Password properties but...
2
4512
by: IdleBrain | last post by:
Hello All: I used a Login control to authenticate a user to login. The problem is that when I login with good username & password, the login view would say that the login was successful. But for some reason the login control does not redirect the control to DestinationPageUrl. Even when I hardcoded to redirect to another page, it still remains in the same page on successful login.
6
3358
by: AppleBag | last post by:
I'm having the worst time trying to login to myspace through code. Can someone tell me how to do this? Please try it yourself before replying, only because I have asked this a couple of times in the past in other places, and while the help was much appreciated, it seemed everyone just wanted to 'theoretically' explain how to do it, but when I tried to do it myself, I couldn't login. I want to simply pass the email address and password to...
6
8079
by: dan | last post by:
Hi, Could someone please let me know how to center a Login control on a page? Can I use CSS to do that? Thanks, Dan
0
8788
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
9476
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
9335
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
9263
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
9208
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...
1
6751
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupr who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
4570
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
3279
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
3
2193
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

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.