473,473 Members | 1,917 Online
Bytes | Software Development & Data Engineering Community
Create Post

Home Posts Topics Members FAQ

I don't want to use buttons

I have an asp page that is attached to database and I want to update
the database when the window is closed.

It is basically 5 text boxes wide by 8 text boxes high and these are
all dynamically built by the database loading. I know exactly what
textbox has what in it. I can do everything by submitting a form but
I do not want a button to submit.

Is there a way to when the window is closed run update code for a
database.

I can also open and close another page to do the update if need be.

This is the code that I can use from the submit button. I load an
array with all the values and can loop through these with the
database.

<FORM ACTION=:"array.asp" METHOD="get" id=frmName name=frmName>

I can dynamically build the following which is currently produced by
the submit button.

array.asp?WeekFrom=8/12/2004&WeekTo=8/17/2004&tempid=2&line1text1=21&line1text2=&line1text3 =&line1text4=&line1text5=55&cmdSubmit=Submit

Any help stopping people from pushing my buttons would be greatly
appreciated.

Thanks,

Brent
Jul 19 '05 #1
5 1855
Brent Webster wrote:
I have an asp page that is attached to database and I want
to update the database when the window is closed...


Four copies of the same post in a 1-minute span is FOUR copies too many. If
you are still trying to learn how to post, I suggest [microsoft.test].
--
Dave Anderson

Unsolicited commercial email will be read at a cost of $500 per message. Use
of this email address implies consent to these terms. Please do not contact
me directly or ask me to contact you directly for assistance. If your
question is worth asking, it's worth posting.
Jul 19 '05 #2
On 17 Aug 2004 09:26:29 -0700, br***@webstyler.ca (Brent Webster)
wrote:
I have an asp page that is attached to database and I want to update
the database when the window is closed.

It is basically 5 text boxes wide by 8 text boxes high and these are
all dynamically built by the database loading. I know exactly what
textbox has what in it. I can do everything by submitting a form but
I do not want a button to submit.
I can see why, you have a habit of hitting Submit buttons multiple
times. Like when posting this message...
Is there a way to when the window is closed run update code for a
database.
It's problematic. You can use a session end as a trigger, but it
could take a while to time out. You could possibly write some
Javascript to detect the window focus change. Maybe even an ActiveX
control.

The real issue is that ASP and HTML are not the same as writing a
program. The browser requests something, the server sends it. Until
the browser sends something back to the server, it's tough to know
what the browser is doing.
I can also open and close another page to do the update if need be.
You can do that but not use a Submit button? Kinda weird...
This is the code that I can use from the submit button. I load an
array with all the values and can loop through these with the
database.

<FORM ACTION=:"array.asp" METHOD="get" id=frmName name=frmName>

I can dynamically build the following which is currently produced by
the submit button.

array.asp?WeekFrom=8/12/2004&WeekTo=8/17/2004&tempid=2&line1text1=21&line1text2=&line1text3 =&line1text4=&line1text5=55&cmdSubmit=Submit

Any help stopping people from pushing my buttons would be greatly
appreciated.


Perhaps rethinking your button phobia is the real solution. What do
you have against a Submit button on a form that makes this method
unusable?

Jeff
Jul 19 '05 #3
Use the code below on the client to be called on the onchange event of any of the text boxes.
Create the SaveChange.asp and use it to record the data on each change.

function savedata(dblPositionID,dblValue) {
document.body.style.cursor='wait';
uniqueID++
var XMLHTTP = new ActiveXObject( "Microsoft.XMLHTTP" );
var URL = "SaveChange.asp?PID=" + dblPositionID + "&VALUE=" + dblValue + "&UCALLID=" + uniqueID
XMLHTTP.open( "GET", URL, false );
XMLHTTP.send();
var result = XMLHTTP.responseText ;
document.body.style.cursor='auto';
}

--
dlbjr
Pleading sagacious indoctrination!
Jul 19 '05 #4
Bear in mind that ActiveX only works in IE, your solution could be done in Javascript

check out http://www.experts-exchange.com/Web/..._20972905.html
On Tue, 17 Aug 2004 15:44:26 -0500, "dlbjr" <oo**@iforgot.com> wrote:
Use the code below on the client to be called on the onchange event of any of the text boxes.
Create the SaveChange.asp and use it to record the data on each change.

function savedata(dblPositionID,dblValue) {
document.body.style.cursor='wait';
uniqueID++
var XMLHTTP = new ActiveXObject( "Microsoft.XMLHTTP" );
var URL = "SaveChange.asp?PID=" + dblPositionID + "&VALUE=" + dblValue + "&UCALLID=" + uniqueID
XMLHTTP.open( "GET", URL, false );
XMLHTTP.send();
var result = XMLHTTP.responseText ;
document.body.style.cursor='auto';
}


Jul 19 '05 #5
Sorry for the multiple posts, I used google groups and pressed submit
button only once. Guess I will have to stop using google posting so I
don't irritate the people that are helping me.

Thanks,

Brent Websterr
Jul 19 '05 #6

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

0
by: Brent Webster | last post by:
I have an asp page that is attached to database and I want to update the database when the window is closed. It is basically 5 text boxes wide by 8 text boxes high and these are all dynamically...
3
by: Douglas Buchanan | last post by:
Buttons don't work if form is opened on startup A2k If 'frmMain' is set to open by default at startup none of the buttons work. If 'frmMain' is opened from the database window then all the...
3
by: Peter Aitken | last post by:
I am working on a VC++ program in VS.Net 2003. I am following the instructions in the help for putting a group of radio buttons on a form. 1) Put 3 radio buttons on the form. 2) Make sure they...
1
by: fasenjof | last post by:
Hi everybody! I need some help here. I have some .aspx pages in my application with some textboxes, Submit buttons, etc. All of them work perfect, but I don't know why, when I press the Enter...
0
by: memanwar | last post by:
Throughout our system we use the DataGrid. One problem we've noticed is that the arrow buttons don't always work with our grids, clicking on them sometimes won't move the columns at all, or may...
24
by: Mike Otten | last post by:
Any help greatly appreciated. The validated page is at: http://myweb.stedwards.edu/michaelo/ddtab.htm The trouble is with the radio buttons (2/3-down the left column). The radios are...
1
by: subbugannamani | last post by:
I want to retrieve the text property of the buttons in another form (for C# desktop application).For ex in Form1.cs I have four buttons I want to get the text property of that 4 buttons in...
0
by: Johnny Jörgensen | last post by:
I'm doing a Visual Studio Add-In, and I had added an icon (let's say "MyIcon.ico") to the project resources to use it as icon for the Toolwindow tab. Then I decided I didn't want to use that...
2
beacon
by: beacon | last post by:
Hi everybody, I have a form that has a combo box that asks the user to select the program they work on. Once the user selects the program, a SQL statement populates the row source for 4 staff...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
1
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
1
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...
0
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and...
0
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
0
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated ...
0
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.