Forum: ASP.NET Feb 13th, 2006 |
| Replies: 1 Views: 6,859 What's wrong with this? I know i must have missed out something. But what's that i'm missing?
Dim ds As DataSet = New DataSet
Dim da As SqlDataAdapter = New SqlDataAdapter("SELECT *... |
Forum: ASP.NET Feb 13th, 2006 |
| Replies: 5 Views: 3,532 Hi f1_fan, thanks for ur assistance.
I cannot find a declaration known as .tag in asp.net (codebehind vb.net). I tried using C# converter to VB.net.
Any suggestions? |
Forum: JavaScript / DHTML / AJAX Feb 8th, 2006 |
| Replies: 1 Views: 4,836 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... |
Forum: ASP.NET Feb 7th, 2006 |
| Replies: 1 Views: 7,939 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... |
Forum: ASP.NET Feb 7th, 2006 |
| Replies: 5 Views: 3,532 I tried writing this. However, its not executing. |
Forum: ASP.NET Feb 6th, 2006 |
| Replies: 5 Views: 3,532 Server Side.
I am doing a movie booking page and the seats are represented by web control buttons. They are to be disabled when the seats booked values are listed in a listbox known as... |
Forum: ASP.NET Feb 6th, 2006 |
| Replies: 5 Views: 3,532 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... |
Forum: ASP.NET Feb 6th, 2006 |
| Replies: 3 Views: 5,060 <!--
function setDisableButtonTimer(){
disableButtonTimer = setInterval("disableButton()", 5000);
}
function disableButton(){
document.form1.btnSubmit.disabled = true;... |
Forum: ASP.NET Feb 3rd, 2006 |
| Replies: 0 Views: 2,702 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... |
Forum: ASP.NET Feb 3rd, 2006 |
| Replies: 3 Views: 5,060 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... |
Forum: ASP.NET Jan 31st, 2006 |
| Replies: 10 Views: 9,809 Once again, thanks f1. I got it. Since i am putting in 3 constraints and it has to meet those 3 constraints hence use AND |
Forum: ASP.NET Jan 30th, 2006 |
| Replies: 10 Views: 9,809 Er now i am stuck with a new problem. I need to ensure that the seats retrieved into the listbox not only matched with the movie title but also with the date and time as well. I tried this
... |
Forum: ASP.NET Jan 30th, 2006 |
| Replies: 10 Views: 9,809 da.SelectCommand.Parameters.Add("@title", SqlDbType.VarChar) works for me, but da.SelectCommand.Parameters.AddWithValue("@title", DropDownMovie.SelectedValue) doesn't cuz VB.net behind codes for... |
Forum: ASP.NET Jan 30th, 2006 |
| Replies: 10 Views: 9,809 |
Forum: ASP.NET Jan 30th, 2006 |
| Replies: 10 Views: 9,809 Hi, i do not quite get the part "In the line before you set the value you need to add a parameter with the name "@title".
Before this line, da.SelectCommand.Parameters("@title").Value =... |
Forum: ASP.NET Jan 30th, 2006 |
| Replies: 10 Views: 9,809 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... |
Forum: ASP.NET Jan 29th, 2006 |
| Replies: 15 Views: 7,258 Campkev,
Once again thanks alot for your explanation and assistance with your postings. I am now stuck with another issue. Now since, i have saved the data into the table with commas. I would... |
Forum: ASP.NET Jan 28th, 2006 |
| Replies: 9 Views: 14,175 Precisely its a technical assistance forum that if one knows anything, to direct with codes and assistance. What assistance you are providing are just blunt words with no clear directions.
I am... |
Forum: ASP.NET Jan 28th, 2006 |
| Replies: 9 Views: 14,175 f1fan: i would appreciate if you can speak in layman terms. None of the postings are useful if i can't understand what you are talking about.
Tracking IP is suppose to be an additional security... |
Forum: ASP.NET Jan 27th, 2006 |
| Replies: 9 Views: 14,175 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,... |
Forum: ASP.NET Jan 27th, 2006 |
| Replies: 15 Views: 7,258 Ok resolved, thanks alot campkev. !!!!!!!!!!! |
Forum: ASP.NET Jan 27th, 2006 |
| Replies: 15 Views: 7,258 Thanks, i manage to execute it, cmd.ExecuteNonQuery() . Left it out. But now i got this error. What's the problem?
Server Error in '/WebApplication5' Application.... |
Forum: ASP.NET Jan 27th, 2006 |
| Replies: 7 Views: 20,969 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? |
Forum: ASP.NET Jan 26th, 2006 |
| Replies: 15 Views: 7,258 This is what i have written to save it into the database, but nothing was save into the table and no error was displayed. What's possible wrong??
Protected Sub btn_confirm_Click(ByVal sender As... |
Forum: ASP.NET Jan 26th, 2006 |
| Replies: 15 Views: 7,258 I am getting an error that substring is not a member of integer
If seatListString.Length > 2 Then
seatListString.Length = seatListString.Length.Substring(2)
End If |
Forum: ASP.NET Jan 25th, 2006 |
| Replies: 15 Views: 7,258 I have tried rewriting this part into vb.net codes.
'To create an array of the seat names in the listbox as i have 152 buttons for seats
Dim nameArray(151) As String 'make room for 151... |
Forum: ASP.NET Jan 25th, 2006 |
| Replies: 1 Views: 7,647 I tried writing this in asp.net, (vb.net as background codes)
Dim nameArray(5) as string //make room for 5 elements in the array
Dim i as Integer
For i = 0 to Listbox1.Listcount -1
... |
Forum: ASP.NET Jan 25th, 2006 |
| Replies: 1 Views: 7,647 How can i save items in a listbox as an array? Is it possible? |
Forum: ASP.NET Jan 25th, 2006 |
| Replies: 15 Views: 7,258 campkev: Thanks, i appreciate it. I manage to find a C# to VB converter.
I'm not real great with VB (I work in c#) but if your code for getting from the buttons into the select box, I may be able... |
Forum: ASP.NET Jan 25th, 2006 |
| Replies: 15 Views: 7,258 This is what you wrote, f1_fan
Re: URGENT!: Saving Database information from ASP.NET Button
Jan 20th 2006, 02:43 AM | Add to f1 fan's Reputation | Flag Bad Post | #11
im not doing your... |
Forum: ASP.NET Jan 24th, 2006 |
| Replies: 4 Views: 15,742 |
Forum: ASP.NET Jan 24th, 2006 |
| Replies: 0 Views: 5,640 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... |
Forum: ASP.NET Jan 24th, 2006 |
| Replies: 15 Views: 7,258 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,... |
Forum: ASP.NET Jan 24th, 2006 |
| Replies: 4 Views: 15,742 I have created a random password generator function in asp.net (vb.net). How do i call this function through my asp.net button???
:cry:
Function RandomPW(ByVal myLength)
'These... |
Forum: ASP.NET Jan 19th, 2006 |
| Replies: 10 Views: 4,966 Sorry to bother you again. How can i store all the information (all the button clicks) as a session into the database |
Forum: ASP.NET Jan 16th, 2006 |
| Replies: 10 Views: 4,966 I have referred to this website,
http://www.startvbdotnet.com/aspsite/controls/button.aspx
i still can't figure out the difference between CommandArgument property and CommandName property |
Forum: ASP.NET Jan 16th, 2006 |
| Replies: 10 Views: 4,966 I notice that this half seems to be explained in C#, however i am writing my codes in VB.NET. Would appreciate if you help me with this.. ;)
Then you need the one event handler which will handle... |
Forum: ASP.NET Jan 16th, 2006 |
| Replies: 10 Views: 4,966 Thanks, i understood the command argument part. However, i am still having problem understanding the second hald as below.
Then you need the one event handler which will handle all your seat... |
Forum: ASP.NET Jan 15th, 2006 |
| Replies: 10 Views: 4,966 You have made too much assumptions. I think it will be better if u explain with some codes. Thanks |
Forum: ASP.NET Jan 13th, 2006 |
| Replies: 10 Views: 4,966 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... |