Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #72.7K
~4K People Reached
Interests
Programming
Favorite Tags
Member Avatar for FaresEid

So I created a custom generated file that lets me take the username and password. It is the following: public User GetUserByUserNamePassword(string userName, string Password) { return (_DatabaseContext.Users.FirstOrDefault(user => user.Username == userName && user.Password ==Password)); } In my log in page I have a webUserControl that contains two textboxes, one …

Member Avatar for BMXDad
0
132
Member Avatar for Frank_5

//Author: Frank R. Mendez //Title: Object Oriented Bubble Sort //Description: Accepts an int array element to sort using bubblesort in ascending order #include <iostream> using namespace std; class BubbleSort { public: void bubble(int arr[], int size); void driver(); void display(); int arr[50]; int array_size; int temp; }; void BubbleSort::driver() { …

Member Avatar for mike_2000_17
0
4K