Tagged Questions
4
votes
4answers
1k views
ASP.NET Login control without a Username
Is it possible to use the standard ASP.NET login control, but just ask the user for a password? I am using a template, but the runtime complains that;
Login1: LayoutTemplate does not contain an ...
3
votes
2answers
352 views
Is it possible to let my c# wpf program know if the user has a touchscreen or not?
I've got an login application that has a swipe system that people only can use when they have a touchscreen. They can login by swiping their personal pattern swipe code.
Is it possible to check in C# ...
3
votes
1answer
3k views
ASP.NET MVC2 Login form in master page
I'm trying to find an elegant way of having login form in the master page. That means unless user logs in, login form should appear on every page. (This is very common these days)
Taking the example ...
2
votes
3answers
171 views
asp.net login control with internet explorer
I have asp.net login control in my webapplication.while I run the application in internet explorer and type password it will displayed as question mark. Can anyone able to solve the problem means its ...
1
vote
1answer
231 views
ASP.NET login control connection string error : Keyword not supported: 'metadata'
I was working with normal connection until now and everything was smooth
but now I have switched to data entity model and with new connection string, I am having this error... How can i keep my entity ...
1
vote
4answers
69 views
Communicating between login.aspx and default.aspx
I'm new to web development. I have a login.aspx page that has an Asp.Net login control on it. When the users logs in and it successfully authenticates, the page automatically redirects to ...
1
vote
2answers
107 views
how to allow login in with email using the asp signup component
as the title says how do o allow users to sign in using the email they specified when they registered.
using asp 3.5 , both the login and signup are the ones that are built-in visual studio.
also is ...
1
vote
3answers
294 views
Login user after signup
how to auto login the user after he created an account
using asp.net 3.5, and from authentication
here is the code:
<asp:CreateUserWizard ID="mainSignUp" runat="server"
...
1
vote
3answers
352 views
asp.net Login control: what's wrong?
I'm working on ASP.NET app and in the master page C# code I want to access the login control, so I have the following code:
Login login = new Login();
login = this.Master.FindControl("login") as ...
1
vote
2answers
99 views
Windows XP/Windows 7 and Windows Servers login page
I would like to have a windows form application to popup right before when the user enters his or her windows credentials. If the validation in that particular windows form is successful then I want ...
1
vote
2answers
1k views
ASP.NET login control - can I add the FailureText as an item in a ValidationSummary?
I'm currently working with the ASP.NET login control. I can set a custom failure text and I can add a literal on the page where the failure text is displayed if the login fails. I also have a ...
0
votes
2answers
114 views
MVC3 Partial view inside Master Page
On my site, I want to display a Login box on all pages. So I wanted to make a partial view page, which I use on my _Layout.cshtml file in Shared.
But where would the controller for this partial view ...
0
votes
1answer
53 views
“DisableCreatedUser” is not working properly
I am using a ASP.NET CreateUserWizard to registering users.
I wanted user to not automatically log after registration until they login manually.
<asp:CreateUserWizard ID="RegisterUser" ...
0
votes
2answers
73 views
on login display a different page
right now when a user logs in, they see specific content on that same page:
<asp:LoginView ID="LoginView" runat="server">
<AnonymousTemplate>
Please login <br />
...
0
votes
0answers
33 views
How to check the conditon for Roles in the following code
I am working on Login Controls i write the below code for logging in
protected void LoginButton_Click(object sender, EventArgs e)
{
string[] UserNameCollection = { "User1", "User2", ...
0
votes
6answers
82 views
binding user and password
I have a question about the login control of asp.net. I defined on my application in asp.Login, and password, also I made the changes in the web config with the info needed to set the authentication ...
0
votes
5answers
86 views
Problem with a login control event
I want to have a check as soon as the user logs in whether he was banned or not.. But I have the following problem:
protected void Login1_LoggedIn(object sender, EventArgs e)
{
MembershipUser ...
0
votes
3answers
389 views
Profile variables in asp.net tracking session with login control?
I have been making a web site with a cart in asp.net using visual studio 2010. My question is concerning the Profile variable and Login Control.
I followed a pretty straight forward tutorial to add a ...
0
votes
5answers
239 views
ASP Login Control - Checking login status
I want to use my code behind (C#) to check and see if a user is logged in or not on page load. I assume this is really basic, but I'm still new to .net
This is basically what I want:
if(loggedIn == ...
0
votes
1answer
54 views
Lack of consistency with passwordRecovery control!
I have 3 controls:Login, CreateUserWizard (which works fine) and PasswordRecovery Control.
I registered in CreateUserWizard control. Logged in and everything was fine!, but then when i used the ...
0
votes
1answer
415 views
how to set user login name as menu item in asp.net LoginView
I am trying to create a menu item within my web app that sets the parent node to the username of the current user logged into the website. the child nodes will all be the same incontext.
Currently I ...
0
votes
1answer
273 views
Reverse DNS lookup to check remote host in MVC 2 C#
I am working on a Portal and want to detect whether the users in on our domain. I have been told that the best way to do this is to do a reverse DNS lookup to check the remote host and whether the ...
0
votes
2answers
247 views
login image url for login status
i have a login control ,it works perfectly,,and i put login status, i get a specific problem when i specify the login image URL for my login status ,,the login control can't redirect me to the default ...
0
votes
2answers
235 views
ChangePassword control does not work on unauthenticated user
Not sure what's misconfigured somewhere or whatever. An authenticated user can change his password, but for an unauthenticated user, clicking on the Change Password button does not do anything. No ...
0
votes
1answer
335 views
ASP Login control does not work inside a Sitecore 6 sublayout
In Sitecore 6, I have created a sublayout that has an asp:login control. For some reason, it doesn't work when I add it to the layout of a page. The page simply posts back, but doesn't log me in.
I ...
0
votes
2answers
229 views
How do you delete the ?ReturnToUrl query string on log out?
I have this in my LoginControl.ascx code behind:
protected void Logout_Click(object sender, EventArgs e)
{
FormsAuthentication.SignOut();
Session.Abandon();
...
-2
votes
1answer
46 views
Picture Password Source [closed]
Is it possible to recreate the picture password as a login mechanism for your .NET application? Or is there some law stating it cant be done because you'll get sued?
...