No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
21 Posted Topics
I am creating a update member page. I would like the page to auto retrieve the information he or she originally used while registering on my site and display them into the individual textboxes of the update profile page, this is to prevent the hassle to rekey in every individual … | |
I am using aspx.vb to create a login page. I would like to create a remember me cookie using a checkbox that will help to remember user ID but will also allow it to be destroy if a different user ID wants to log in with the same computer, but … | |
I have created a random password generator function in asp.net (vb.net). [B]How do i call this function through my asp.net button???[/B] :cry: Function RandomPW(ByVal myLength) 'These constant are the minimum and maximum length for random 'length passwords. Adjust these values to your needs. Const minLength = 6 Const maxLength = … | |
To make my site secure, i would like to track the ip address of my members to my transaction page. Is there any possible ways of achieving this? I came across many Javascript IP Address display, however they do not actually track or save the ip addresses. | |
Is it possible to send sms from an asp.net webform? :eek: I have searched multiple sites, but can't really find anything useful..any advices? | |
Hi people, I am very amateur with ASP.NET. I am working on a movie booking system and i am currently having some problems linking my normal html homepage to my membership registration page which is done with asp.net. I tried using Frontpage hyperlink propeties to link my homepage with my … | |
What's wrong with this? I know i must have missed out something. But what's that i'm missing? [CODE]Dim ds As DataSet = New DataSet Dim da As SqlDataAdapter = New SqlDataAdapter("SELECT * FROM Member WHERE MemberUserName = @MemberUserName", Conn) da.SelectCommand.Parameters.Add("@MemberUserName", SqlDbType.VarChar) da.SelectCommand.Parameters("@MemberUserName").Value = Session("Username") ' Fill DataSet with the data … | |
I need some assistance with disabling web control button. First, i need to check if the value related to the button is in the listbox. This is done. If the item is in the listbox, disable the button. I am thinking the possibility of using a loop statement. However, i … | |
Sessions DO NOT end when a user closes their browser. There is no communication with the server when a browser is closed so there is no way the server can know to end the session. The same is true when you leave the site for another. Again no communication takes … | |
Sessions DO NOT end when a user closes their browser. There is no communication with the server when a browser is closed so there is no way the server can know to end the session. The same is true when you leave the site for another. Again no communication takes … | |
I would like to code my submit web control button with a timer on it. Its suppose to allow submission until time goes up and the button is disabled from submission. Any directions or tutorials on this? | |
I would like to know how i can disable asp.net button from the items in a listbox. I am working on a movie booking seat page. The listbox retrieves the seats from the database. The buttons represents the seats and are suppose to be disabled from clicking once it has … | |
I am doing a movie booking system, my booking page consists of buttons, representing as seats. Each time this seat is clicked, the button number is listed into a listbox. For example, buttonA1, buttonA2 are clicked. The listbox display this two as A1 and A2. How can i save A1 … | |
I am using an SQLDataAdapter to bind information from a database table to a listbox. However, the user have to select an item from a dropdown list box, DropdownMovie before the information for that particular movie is bind to the listbox. No errors in the codings. But when i run … | |
How can i save items in a listbox as an array? Is it possible? | |
Is it possible to save everything in a listbox into the SQL database table? I was given a suggestion: Allow MULTIPLE in select tag to make the user select all/any of them or write Java Script code to loop thru the length of select and append them to a hidden … | |
I am working on a seat selection page for an ASP.NET school project on movie booking system. I have created the seats using buttons (A1, A2, A3) etc. When the user click on the button, the button colour changes and the user finalized the payment. I have an issue here. … | |
I need some guidelines or programming tips on writing codes for my movie system. I am planning to have auto seating arrangement. This means that when a customer purchase a ticket, the system auto assigns him a seat number. Any tips or ideas on how to get started? Best if … | |
I am creating a movie system. I am using a dropdownlist to retrieve the date slots data from the movie database and display it into the dropdown list. Anyone have any idea how to do it with some sample asp.net codes? Thanks :eek: | |
I am currently working to store passwords into my SQLDatabase table. I would like to hash the password columns to make it more secure. I know that i can use either SHA1 or MD5. Refering to this website, [url]www.codersource.net/csharp_sha_md5_encryption.html[/url], i try to write the VB.NET codes. Private Sub EncryptPassword() FormsAuthentication.HashPasswordForStoringInConfigFile(txtbox_password.Text, … | |
I am facing a huge problem. I did a registration page and i want to store the data into SQL Server. I created two stored procedures in SQL and two functions in visual basic to call the stored procedures before inserting the data into the database. My codes are based … |
The End.