Tab Stops In System.Web.UI.WebControls.ListBox
I have an ASP C# web form that contains a System.Web.UI.WebControls.ListBox.
I would like to set the tabs in this list box so that I can align columns of
data. I can not find a way to get a handle to the control so that I can send
a LB_SETTABSTOPS message. If there is another way to set the tabs, I haven't
been able to find it.
View Replies
ADVERTISEMENT
I was wondering if you could help me with the following problem. I have 2 listboxes in my
webpage, 1 has cities, and the other lists the streets of the city from the first listbox.
When I click on a city, I want the 2nd listbox to populate with all streets in the city. The city and streets are saved in a database, so when the user selects the city, I will run a query on the database and populate the 2nd listbox with all streets.
How can I do this with normal ASP? I know how to do this with ASP.NET, but don't know how to activate this with normal ASP?
View Replies
View Related
I am running win2k3, iis6, access db's, for a web app. The
problem is that asp stops working randomly. No errors in
IIS log, no errors in even viewer. It just stops serving
asp. Restarting IIS clears up the problem. This occured
under win2k but maybe once a month. Not that I switched to
win2k3, it happens 4-5 times a day. Any ideas? What would
be the difference?
View Replies
View Related
I am working on a project using classic ASP. Every time I install Windows and IIS, it works for 2-3 days and then starts having problems. Specifically, things that have to do with the FileSystemObject stop working.
I have tried Win2k, WinXP, the IISs that go with them, different partitions (fresh install), turning Windows Update Off as well as doing full updates, and cannot find a solution that works for more than 2 or 3 days. Is it a worm? A virus? A windows update glitch? It is driving me crazy. Are others having problems like this recently?
View Replies
View Related
On a heavily visited site, .ASP pages stop being processed/displayed, but .htm files are processed and displayed just fine. IIS appears to be running OK. No errors or logs anywhere to be found. Reboot clears it up, for a few days. Any clues?
View Replies
View Related
I have a price field in a cms,it can deal with full stops fine, but i cant understand why it wont accept commas.
View Replies
View Related
I've managed to construct an ASP page that reads JPG file names from a directory, then constructs a page with a table of links to bigger JPG pictures.I have a big problem.
If the page hasn't entirely loaded and I click on one of the links pictures that has loaded, then the original page will stop loading and the new popup page loads instead. I don't want the original page to stop loading. How do I do this?
View Replies
View Related
I am currently developing a final year project which is a web based
tracking system tracking exam questions. I am using IIS as the
server, MS access for the database, and ASP with VBScript for the
scripting side of things.
One of the things I want to do would be to e-mail a user/moderator
whenever a exam question is edited/completed/updated. does anyone have
any previous expierence in this? i don't even know where to start.
View Replies
View Related
What is the asp code variable for System Date and System Time? Are they built-in system variables, or is there some code involved to return the values?
View Replies
View Related
Is it possible to change the selected default option in a listbox on the 2nd page to the option selected in a listbox on the 1st page which ..i.e preventing the selected option from changing to the default option on the 2nd page (both the list boxes have the same value)...i am having a listbox which gets populated from a database using ASP.
View Replies
View Related
I want to make a listbox which will show the results of two fields (the ID and the Name) of one table , but the one field (ID) will be the one to pass.
View Replies
View Related
Rather than doing this:
<A HREF="editpatient.asp?ID=1>View</A>
Can i do something like this instead? - and make it work
<A href="EDITPATIENT.asp?ID=" & LISTBOXPATIENT & ">View</A>
where LISTBOXPATIENT refers to a database populated listbox
The idea being that when the user is completing a form they can look up additional data on a patient by clicking the hyperlink next to the listbox.
View Replies
View Related
I have a drop-down with 40 option values and only one option should be selected of the 40 options. The list size should be 1.
When I click on the list, it drops down 30 options (a very long list) with a scrollbar for the last 10 options.
Is there any way, when I click on the list it drops down only 5 options (as if the list is of size 5) and allow a scrollbar to browse the remaining 35 options.
Code is:
<select name="deplist" id="deplist"
<option value="Commerce">Commerce</option>
<option value="Instru">Instrumentation</option>
... similar such 38 options
</select>
View Replies
View Related
I have 6 list boxes and it may or may not have data from db to get fill in.
so what happens is whatever has data that comes to the size of the maximum length of the data in that list box and others comes as very small width as there are no data.
but what i want is all list boxes width should be of moderate size.
how can i make those empty list boxes appear as moderate size.
I dont have an option to put an default item in the db to load with that
View Replies
View Related
Does anyone know how to make a form take you to different pages depending on what is selected from a list box ? im using asp /sql / and dreamweaver ..
View Replies
View Related
Im new to asp and I'm having trouble with listboxes.
I have two listboxes, the first is populated from a database and I need to fill a second listbox with items from the database that are dependant on what was selected in the first list box.
View Replies
View Related
I want to select a value from a ListBox, and depending on that value, if it is the right one, it disables a textbox? Can this be done with Javascript?
View Replies
View Related
the listbox on the left contains the names of employees
the listbox on the right contains the names of employees selected from the listbox on the left (ie by hitting the buttons they move across)
when I submit the form which those two list boxes sit on - I want to access the list on the right
currently on use valus=request.form("RListBox") - then I split the returned value from valus etc - however this ONLY works if I select each item in the listbox (making each entry highlighted)
what I would like to do is itinerate through each item in the listbox and get its (option) value. Code:
View Replies
View Related
I would like to create a listbox control in asp.net that has the capability of multiple columns like the Windows.Forms.ListBox control.
I have searched high and low and have only found advice such as concatenating the strings into one or using a ListView which do not seem ideal to me.
Would it be possible(and fairly easy) to create a Custom User Control, fill it with multiple listboxes and then programatically change the selected indexes of all of the ListBoxes when the selectedindex of one is changed?Custom Web Controls is another option but its apparently more complex to implement.
View Replies
View Related
I wanna update a listbox via another listbox and sending new values into database.How can i do it in asp vbscipt?
View Replies
View Related
if it is possible to narrow in on an item within a listbox of states. For example, right now if I type "W", I will immediately drop down to those states beggining with "W".
However if I type "WI", I go to the top of the list with those states beginning with "I". I would like to continue to zero in on the state by dropping down to those that begin with "WI". Is this possible and if so, how do I go about doing it?
View Replies
View Related
I would like to be able to use an autocompleting listbox - that is, one where you can select an item in the list by typing the first few characters; the standard IE listbox only responds to the first character.
I'm happy to pay a few quid for a 3rd-party component/activex control if necessary but I imagine something equally good could be done with client-side code.
View Replies
View Related
I found out that I can't get the value of a disabled field with Request("myField"). An alternative could be 'readonly', but my field, that is a listbox <select>, doesn't have this attribute.
View Replies
View Related
I have a listbox whose MULTIPLE selected values are retrieved using
Request.Form("<listboxname>")
This returned a comma separated array.I am gonna display these values one below the other on the screen. When i retrieve the values from the array using ArrayName(0),ArrayName(1),etc.. the values along with the COMMA are also displayed. When i Remove the Comma with a function like this..
somevariable=Instr(ArrayName(0),",") -1
It errs....
How to remove the comma while displaying?anyother method?
View Replies
View Related
I have 2 tables in my database, AUTHORITY and AREA. I have 2 listboxes on my ASP page. The first one selects all from AUTHORITY. I have one recordset so far, obviously pulling out these values from AUTHORITY.
What I want is to have listbox 2 automatically populate with values from AREA where a field = the value of AUTHORITY. I know this can be done with onChange events in Javascript but I can't work it out.
View Replies
View Related
How do I get rid of the borders in a ListBox? There are atributes for TextBox and Image but I can find no way to do it for ListBox. What is CssClass artibute? If its the Css style it does not work either. Unless it has to be somewhere else rather then on the page, I tried it few times.
View Replies
View Related
i have this form, which contians list boxes. wen a user selects his choice n clicks submit button. it gives an error of type mismatch. wat changes shud i make in my database table's datatype wen recieving data from a listbox? i tried selecting TEXT but it didnt work. cud there b another reason for this error?
View Replies
View Related
You should know the difference between the javascript and asp error. When the page cannot be displayed then it is ASP error and the line number mentioned will be the one in the actual asp file. When the page can be displayed and the error pop up then it is the javascript error, for this kind of error you have to check the source file for the line number.
I hope now u will be able to differentiate the error and to look for the correct line which is causing the error. Back to the error you have mentioned. Does the main_head.asp have the javascript function called alterTab()? Remove this include file and try whether it cause the same error.
View Replies
View Related
I have a database table called Pumpdata. This table contains all the different pumps available. I had to make 2 other related tables one called pumpType which is just a description of Pump Types. ie.. (single, double, mixer etc..) and the other table is PumpManufacturer which contains a list of Pump Manufacturers.. the 2 tables are related to the pumpdatatable based on the TypeID (in PumpType) and MfgID(in PumpManufacturer)..
Ok the problem I'm faced with Is I need to create a form to get a particular pump based on the Pump Type, The manufacturer, and then the specific Model Number..
The First list box alllows the user to select the Pump Type, The second ListBox allows the user to select the manufacturers based on the pump selection. (Note in the pumpdata table there could be an occurance where a particulatar PumpManufacturer could have several Pumps of the same type (I just need to show one occurance of the PumpManufacturer here). Code:
View Replies
View Related
I am creating an update user module. and the dropdown boxes are DB driven. But when i pass the user details to this form i have problem highlighting the selected option in the listbox.
I would like to create a DB driven listbox. one recordset is used to list all the countries into the list. the 2nd recordset is used to add the selected value. But I could only list all the countries into the box and not able to preselect the country. Below is my code and hope someone could highlight to me my mistake. Code:
View Replies
View Related
I joined the group few days ago after discovering that this forum has a lot to offer and the forum threads also pops up on my google desktop almost every 5mins giving me an update on the forum.
Actually,i have a problem here.After fighting with the code found below for several weeks,it turned out to be successful.
The code is suppose to automatically load dropdown boxes from a database based on a given value from previous page,say from 1 to infinity,but after loading,it ignores the first record in each of the listboxes.Can someone help me out with this?What have i done wrong?
Code:
View Replies
View Related
I have created this array...
For x = 0 To rs.fields.count - 1
Response.Write("sampleValues[" & x & "] = '" & rs.fields.item(x).value & "';")
Next
because I need to x values to get the indexes of rs.fields.item(x).value into my asp page for use on the next page. Further down the page
I have a number listboxes created thus....
Code:
View Replies
View Related
I have a dropdown box that I list options in. I get these from an array that I created on the server side. When the user selects an item, this runs code to select the next level of items from the array. I clear the list options and reload the list with the next level and so on. The only problem that I have with this is that I have to have added enought <OPTION> slots to accomodate the longest list that I expect to generate because I don't know how to delete the former list of options then additems dynamically. My preference is VBScript but will resort to JScript if there's no other way
View Replies
View Related