... Please, no flame fests ... take it off-list if you must. -- Regards, Manas. __________________________________________________________________________ ...
Well actually ... My first point was flippant of course. And quite specifically had a smiley attached to it. The second was serious advice. The third was a...
In my first message, all I was asking for was some guideance. Your reply in this message has done just that. Thankyou for your time and reply. ... here, ... ...
I must admit, employing inconvenient tactics to minimize the sharing of website accounts usually does more harm than good. It's hard enough to attract and...
hi! in Access, when inserting a new record, all i had to do was strUserID = RS.Fields("ID") before closing the RS, inorder to get that specific ID. is this...
depends if its an auto number field or not. SQL Server has an @@identity value you can use. Anna _____ From: Moshe Tapnack [mailto:elists@...] Sent:...
Yep, its an auto number. Could you expand a little on this identity value? How is it used? Thanks! Moshe ... From: Anna Crooks [mailto:anna.crooks@...] ...
Hi Moshe, Your question is not clear..can you tell us what you are trying to do... Venu Moshe Tapnack <elists@...> wrote: hi! in Access, when inserting...
sure thing. It's a built in value that returns the last *numeric* identity (from the field set as primary key) inserted. have a look at the following ...
Hi Moshe, ... Yep. Here's a good article on it: http://www.aspfaq.com/show.asp?id=2174 You can do a similar thing in MySQL using "LAST_INSERT_ID()" Regards, ...
Thanks all - Anna, Ray and Shawn for the replies. I'm on MSSQL (this time) and looks like I have a few options. Thanks again Moshe ... From: Shawn K. Hall...
Hello Guys: We have an application that will list all the current applications developed in house, with a hyperlink to each application This works great, no...
Hi Andy, ... In what sense would you like it to 'work'? Is the EXE on the server? Is it on the client? What is the path (pseudopath is fine)? Is the ...
Dear all ...... I need to count array, and that array came from checkbox, like : myarray = Request.Form("CheckMark") <-- CheckMark si a checkbox response.write...
Hi Susetio, ... When you perform a simple assignment in VBScript it assumes the content is what is being passed - and in this case it'll be converted to either...
Shawn: We would like the application to actually run when the link is clicked. The .EXE file is on a different server, and we were using a path such as <A...
Hello Shawn, Saturday, July 10, 2004, 4:46:10 AM, you wrote: SKH> Hi Susetio, ... SKH> When you perform a simple assignment in VBScript it assumes the SKH>...
Hi Andy, ... There's a couple ways - secure ways (create a signed activex that shells out to it and propogate rules to trust this activex across your network)...
I've used some confirmation and alert boxes via javascript, but I haven't tried to get data. Is there a simple way to get a userid and password input via a...
Hello, I am using formmail.asp to process the forms on our Web site. Here is the customizable section of that code: ///////// '- Customization of these values...
Yes you can get user inputs using JavaScript by using the prompt() method of window object: var sUserId = window.prompt("Enter your User ID: ",""); var...
hello guys, i'm a student doing practical training in this company. i am doing this project with ASP and SQL SERVER. i am havind probelm deleting the records...
Hi Nice Guy, ... Using a DELETE sql statement you have already deleted the records, assuming that the WHERE clause is valid. You do not need the .Delete method...
hi, i am problem editing my data in database. i search for the record, then click edit, which goes to a form that displays the records, after editing, i press...
i am still unable to delete the record. thank u for the earlier help SQLApp = "DELETE * " SQLApp = SQLApp & "FROM APPLICATION " SQLApp = SQLApp & "WHERE...
Hey Nice Guy try removing the *.. ... From: nice guy [mailto:mclaren_spr@...] Sent: Wed 14/07/2004 12:14 PM To: active-server-pages@yahoogroups.com Cc: ...
Paul Lucas
PaulL@...
Jul 14, 2004 3:39 am
9445
Hi Pekoe, ... There's a pretty close to step by step instruction of how to work with CDO here: http://www.aspfaq.com/show.asp?id=2026 ...the important aspect...