Get UserID In Asp.net?
Mar 28, 2012
I need to get the userId of the logged in user in ASP.net, I can use
System.Web.HttpContext.Current.User.Identity.Name
to get the name, but how do I get the userID?
I tried (GUID) and Membership.GetUser as I found, but none seem to work.
View 2 Replies
ADVERTISEMENT
Feb 10, 2011
I'm creating a web project for one of my uni modules using Visual studio 2010. I'm using asp.net membership and have all of my sql-server tables set up correctly (I'm pretty sure).I have a form that I have created myself that inserts into the database using sqlDataSource.insert(). I had some problems initially with not being able to insert any data into the table at all, but I have cleared that up.My problem now is that I need to insert the currently logged in user's userID into one of the columns of the table. But every time I hit the submit button, I am told I cannot insert null values in the userID column.
I can retrieve the userID using this snippet:
Dim userID As String
Dim memUser As MembershipUser
[code].....
View 1 Replies
Feb 3, 2010
I want to set username & password in a website, like [URL] and want to submit the page.
This should be done automatically when i click a button on the simple form in VB.net.
I'm using following code, but its not working:
Dim objIE As SHDocVw.InternetExplorer
objIE = CreateObject("InternetExplorer.Application")
objIE.Visible = True
[Code]....
View 1 Replies
Feb 9, 2011
I am currently learning .net and am building my first real website using .net.I was just wondering if people considered it ok to use the generated membership UserId in the query string? and also to use this as a foreign key in a database to link relevant information to this user?
View 3 Replies
Mar 16, 2012
Using the following code, a user inputs a date into a textbox control and then clicks a button. A new record is created in table [rms_Report] and then I retrieve the ID of the record that was just added. I pass this ID onto page "CreateReport.aspx" via a response.redirect and query string.
I need to retrieve the UserId of the currently logged in user and insert it into table [rms_Report]. I need this to occur after the new record is inserted, but obviously before the response.redirect. I know how to retrieve the UserId, but I'm not sure how to incorporate into the other code.
ASPX
<asp:SqlDataSource ID="ReportDataSource" runat="server"
OnInserted="ReportDataSource_Inserted"
ConflictDetection="CompareAllValues"
[Code].....
View 1 Replies
Dec 20, 2011
I have a computer on a network and via windows forms i want to confirm someones userID and password to log them into another system.
View 1 Replies
Jul 8, 2010
I want to count length of a userId and change the string to that many asterisks. I also want to take the account number and replace all characters except the last 4 XXXX.
View 2 Replies
Oct 1, 2009
I have developed an Access database and would like to display userid from the user table on the welcome form.
View 1 Replies
Feb 12, 2010
I need to access (windows apps) the file with a specific account (file located on a share) something like this: Dim myFileInfo as FileInfo=New FileInfo(FileName) ,UserID,Password.
View 4 Replies
Aug 3, 2009
How to get userID of current user logged in from server using asp.net vb?
View 2 Replies
Mar 10, 2009
I have this string
mainString="/MyApp/ViewPage.aspx?userId=admin&password=1&id=975"
I am getting value in mainString using this code
Dim mainString As String = Request.QueryString("dest")
And I have two sting variables
1)strTempUsername
2)strTempPassword
In these variables I want to store userId and password values from mainString.
So for this requirement how I write logic in code
Dim arrArray() As String
'/MyApp/ViewPage.aspx?userId=admin&password=1&id=975"
strIndexq = mainString.IndexOf("?") ' Check QuestionMark Exist or not in mainString
If strIndexq > 0 Then
Dim strTemp As String
[Code] .....
Here I am getting userId and password but in this code I will get problem when after ? if userId and password starts wit capital letters and password maybe contain characters like "1&a"
And after getting userid and password. I want to remove userid and password from mainstring. So I want mainstring look like:
"/MyApp/ViewPage.aspx?id=975"
View 15 Replies
Jun 25, 2010
I have one table here with a list of UserIDs, Users, and ClientCodes.Each user can be assigned a client code to view that client's data else where.Right now I have to change it for everyone via SQL Server and actually going into the table manually, but I'm trying to make a simple little program that will let the user change it themselves.All I need is a textbox that pulls the user based on a certain UserID from the table, and a drop down list that will not only show the current ClientCode they're set to, but allow me to change it and save that change to the table in the database.What's the best way to go about this? I tried using the wizards but I guess that's not the best way to go about it.I have it displaying the correct user and their current ClientCode but that's about it.
View 14 Replies
Nov 22, 2011
I am trying to change the "logon as" userid and password for a service on a remote machineMy user is a domain admin Here is the code I am using...
Dim wmiScope As ManagementScope
Dim wmiConOpts As New ConnectionOptions
wmiConOpts.Impersonation = ImpersonationLevel.Identify
[code].....
View 6 Replies
Nov 18, 2010
I've spent a couple of hours trying to find the answer to this, and although there are tutorials all over the 'net none of them work for me (or I am too n00b to understand what they're telling me.I'm creating users in asp.net using Membership. What I want to do is add the generated UserId to a column in a custom table I've created, to link the stuff in the custom table with the user created in aspnet_Users.
[Code]...
View 2 Replies
Aug 25, 2009
i have a login form in a banking project.i set a userid and password for this login form and i did the code accordingly,it works good.In my form there are two fields namely:Userid and Password and a button named Login.
But i cant get any idea about what to do when the user wants to create their own userid and password?
I think i need to add a few more buttons to enable the user to create their own userid and password but i cant get the idea......i need some help.
Again,if i allow the user to create their own userid and password then anyone can use my project by creating a new account.........
Hence i am totally confused how to go with this.I need some urgent discussion so that i can get through this problem.
View 32 Replies
Feb 14, 2011
Design a form, which contain a TEXTBOX control that accept a UserID input, with a CommandButton control to perform a validation based on the criteria listed below. Display a Message on whether the UserID is Valid.
Criteria:
The UserID must contains SIX digits follow by a single character, limit the entry to a maximum of seven characters only.
The postfix character of the UserID is derived from the summation of all the six digits divided by seven and using the remain as followed:
Remain
Character
0
A
[Code].....
View 2 Replies