Forum: ASP.NET Feb 13th, 2006 |
| Replies: 1 Views: 4,071 How to databind to textboxes 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 * FROM... |
Forum: ASP.NET Feb 13th, 2006 |
| Replies: 5 Views: 2,630 Re: Disable Web Control Button 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: 2,992 |
Forum: ASP.NET Feb 7th, 2006 |
| Replies: 1 Views: 4,724 |
Forum: ASP.NET Feb 7th, 2006 |
| Replies: 5 Views: 2,630 |
Forum: ASP.NET Feb 6th, 2006 |
| Replies: 5 Views: 2,630 Re: Disable Web Control Button 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: 2,630 Disable Web Control Button 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: 4,016 Re: ASP.NET Timer Button <!--
function setDisableButtonTimer(){
disableButtonTimer = setInterval("disableButton()", 5000);
}
function disableButton(){
document.form1.btnSubmit.disabled =... |
Forum: ASP.NET Feb 3rd, 2006 |
| Replies: 0 Views: 2,196 Disable ASP.NET Button from Listbox 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: 4,016 ASP.NET Timer Button 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: 7,459 |
Forum: ASP.NET Jan 30th, 2006 |
| Replies: 10 Views: 7,459 Re: SqlDataAdapter bind to a listbox 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: 7,459 Re: SqlDataAdapter bind to a listbox 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: 7,459 |
Forum: ASP.NET Jan 30th, 2006 |
| Replies: 10 Views: 7,459 Re: SqlDataAdapter bind to a listbox 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: 7,459 SqlDataAdapter bind to a listbox 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: 6,096 |
Forum: ASP.NET Jan 28th, 2006 |
| Replies: 6 Views: 10,130 Re: ASP.NET: Track IP Address 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 not... |
Forum: ASP.NET Jan 28th, 2006 |
| Replies: 6 Views: 10,130 Re: ASP.NET: Track IP Address 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: 6 Views: 10,130 ASP.NET: Track IP Address 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: 6,096 |
Forum: ASP.NET Jan 27th, 2006 |
| Replies: 15 Views: 6,096 |
Forum: ASP.NET Jan 27th, 2006 |
| Replies: 7 Views: 14,037 |
Forum: ASP.NET Jan 26th, 2006 |
| Replies: 15 Views: 6,096 |
Forum: ASP.NET Jan 26th, 2006 |
| Replies: 15 Views: 6,096 |
Forum: ASP.NET Jan 25th, 2006 |
| Replies: 15 Views: 6,096 |
Forum: ASP.NET Jan 25th, 2006 |
| Replies: 1 Views: 5,179 Re: Listbox Items as an array 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
nameArray(i)... |
Forum: ASP.NET Jan 25th, 2006 |
| Replies: 1 Views: 5,179 |
Forum: ASP.NET Jan 25th, 2006 |
| Replies: 15 Views: 6,096 |
Forum: ASP.NET Jan 25th, 2006 |
| Replies: 15 Views: 6,096 |
Forum: ASP.NET Jan 24th, 2006 |
| Replies: 4 Views: 10,334 |
Forum: ASP.NET Jan 24th, 2006 |
| Replies: 0 Views: 4,478 |
Forum: ASP.NET Jan 24th, 2006 |
| Replies: 15 Views: 6,096 |
Forum: ASP.NET Jan 24th, 2006 |
| Replies: 4 Views: 10,334 Call Function 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 constant... |
Forum: ASP.NET Jan 19th, 2006 |
| Replies: 10 Views: 3,774 |
Forum: ASP.NET Jan 16th, 2006 |
| Replies: 10 Views: 3,774 |
Forum: ASP.NET Jan 16th, 2006 |
| Replies: 10 Views: 3,774 |
Forum: ASP.NET Jan 16th, 2006 |
| Replies: 10 Views: 3,774 |
Forum: ASP.NET Jan 15th, 2006 |
| Replies: 10 Views: 3,774 |
Forum: ASP.NET Jan 13th, 2006 |
| Replies: 10 Views: 3,774 |