I have a list box that has a list of names, and i want when the user selects the name to bring some information from the database and put it below the drop down box. I think i need to use an onchase event but how do i get the page to refresh to show the new data, suggestions or examples woudl be great.
Is there a command within ASP similar to the Do Events command in VB6. The problem I have is that an asp page that I have written outputs many lines after extracting data from WMI. In total there are about 1000 lines generated which are displayed within the browser and saved to a database. The browser displays the correct results and they are saved into the database. But the browser only displays the results after it has completed the entire script. Is it possible to get it to output lines before continuing with the rest of the script so I can display a section at a time.
I have ASP which uses a stored Query in a Access 2000 database mdb to update a table. I am only adding records. No changing information in the records of the database. Just adding records. I also have a form that looks like this form: http://support.microsoft.com/?scid=kb;en-us;198466 So I have my Query and I have my form. All the necessary information for the form comes from the ASP page. What I need to do is provide the information from ASP to the form so that it's code can populate the table. Any suggestions how this might be accomplished with the above example? Events? Or a discussion somewhere on the Net to bind a form to data submitted from an ASP?
I know I have seen some free ASP calendars before, and even did a search of this NG, but couldn't find any references to any. I went to 4guysfromrolla and asp101, but they only .NET calendars as far as I could see.
I'm specifically looking for something that's free and has a page for editing or adding events.
I am downloading a stream which contains XML in my ASP page. I want to have MSXML XMLDocument load this in async mode, and call events as it would in VB. I am new to ASP, is there a way of hooking into the events using ASP? Code:
beeing from swedeni´ve the text in swedish. But I hope u understand. I´ve a calendar http://www45.brinkster.com/ovaasp/cal.asp
Now I want to list events, so each event gets to the correct date (i.e in the correct table-cel)
I´ve managed to list in the wat I want http://www45.brinkster.com/ovaasp/list.asp
But when I trying to put the events in the calendar, I can´t get the repeating events correct . U can see for yourselfs http://www45.brinkster.com/ovaasp/error_jun.asp if you check next month + button "forward" Eken Cup, i Solna should be writen to 3 - 7th jun
The project i am working on just now requires me to provide users with a link to download articles stored on the sites FTP server.This is not a problem to do, however, i also need to keep a record of who downloads what and when. I therefore have a downloads tablein my DB for storingthis info. The problem is, when the user clicks on the download link i need the document to be downloaded, AND a query to be executed to record the info into the DB table. I effectivley need the link to action these 2 eventssimultaneously!! Not sure if this is possible.
I recently had to build an FTP server for all of our clients to send us files. I am now asked to do something I have never done, I need to be able to alert via email any other useable method everytime new files are ftp'd into client folders on the ftp server. Can this be done?
I need to populate two select boxes So that on selecting value from one select box, the values in second select box will be populated. eg in first select box i m having the list of all project of which a particular user is manager or co-manager. eg: Query1 :"select Project from tab1 where manager = ('" & userid & "')"
on selecting any project from this list it should populate the second selectbox with workgroups that are associated with selected project from selectbox one. eg: Query :"Select workgroup from tab2 where projectid = "
In my form i have three combo boxes, all the values in combo box comes from database, Second combo box values will come according to the value selected in first combo box, third combo box values will come according to the value selected in second combo box, i think i have explianed it clearly.
eg:- first combo consists of brands which are in database, according to the brand selected categories(second combo box) values should come from database, according to the category selected products(third combo box) values should come from database
i have this code on my combo to make it reload the page to run the querys onchange='submit();' but i also need to set a variable like var=0 with the onchange function.
Trying to implement a list of online users in my application. I have SQL Server database, table Users with a column called Status, that is set to 1 if the user is online or to 0 if the user is offline.
I wrote a VBScript sub for database update, but the problem is when I try to execute it on page onLoad event or onUnload event, the onUnload event overwrites the onLoad one right away. I suspect it has something to do with server-side vs. client-side scripting.
I have some checkboxes that are generated from the results of a database search. The ASP for creating the checkboxes is as follows...
<td><input type = "checkbox" name = "chk<%= rstSearch("Product_Group") %>+<%= rstSearch("Depth_Flag") %>" > Select </td>
As you can see, it's part of a table making up a form. At the moment, the users are going through the form, clicking the boxes and saving to the database at the end with the 'Submit' command button.
Is it possible to save the changes as the checkboxes are clicked? I suppose I'd need to write some dynamic ASP event handling, 1 event for each of the checkboxes that are created by the above?? Code:
I have a usercontrol which contains ajax toolkit controls which I am using in a SharePoint siite. When the user clicks one of the buttons on the page it fires a series of events server side (creates a new project in project server, creates an new SharePoint site ... ) each of which take quite some time. I would like to display the successful completion of each event in the control to so the user can see what progress has been made.
I am struggling to understand how I can engineer the page to perform each task in turn, post the page back after each task has occurred (to update the UI that the task has been done) then fire the next server side event. It's easy to update a control with the status changes but the updated control is only displayed to the user when all of the server side events have completed.
I'd like to trap ADO Recordset object events in my ASP script (either VBS or JS, no preference). I've tried (in VBS) writing a Sub rs_RecordChangeComplete( adReason, cRecords, pError, adStatus, pRecordset ) - rs being a server-side ADODB.Recordset object - but it doesn't get called whenever rs is moved (I browse it in a loop). Is there a way to catch those events from ASP?
A drop down list is populated with certain values from the database and when the selection is changed the post is posted back to itself and ceratin other processing takes place on the same page, based on the selected value. I have modified the code to make a default list item selection (using option selected etc. ) when the page loads the 1st time. I also want the onChange event to fire the 1st time (by taking this default selected item) on page load, not just when user makes a selection from the list.
When a user changes the value in a select statement, I would like to update the recordset using a onchange event. Could someone please point me in the right direction? Would like to stay away from forms if possible.
I have a select box where the user select a branch and using the onchange, show up another select box in the same page, containing all the users within that branch. this sounds easy but I just can't get round to it.
I don't think this is possible, but thought I would ask. Is there a way to trigger an onChange event. I have a couple of radio buttons and use ASP to change them at somepoint. When it does I want to trigger the onChange.
Can any one give an example for handling a tree view web control event, inside an asp.net application? I am able to build a tree view using this control on an asp.net web form (on page load) but can not handle its events later on
html tag includes the reference to the event handler and looks like this: <iewc:treeview1 id="treeview1" runat="server" Expand = "treeview1_expand">
then the aspx.vb file includes the treeview1_expand() code: Public Sub TreeView1_Expand(ByVal sender As Object, ByVal e As Microsoft.Web.UI.WebControls.TreeViewClickEventArg s) Handles TreeView1.Expand this file also includes a withevents declaration for treeview1.
With a form a try entering recurrent events in a access db. I´ve an event = > tournament. This this takes place during 3 days (day 1, day 2 and day 3)My questions are:
- What would the > INSERT look like? - witch code would give a printout like >[color=blue] > day1 Tournamet > day 2 tournament > day 3 tournament >[/color]