|
it
newsgroups
|
|||||||||||||||||||||||
|
|||||||||||||||||||||||
Active Server Pages (ASP) Programming Discussionmicrosoft.public.inetserver.asp.general
validating input boxes
MadMike42 -
28 Oct 2006 11:30 PM - 3 messages
This is really starting to annoy me, I've got a form, that has some input boxes, a example of the code is here:- <form action="admin_save_stock.asp" method="post" name="MyFormData"> <input name="Make" type="text" id="MenuText" value=<% response.write ...
Generate Email from Form Submission
Dave -
28 Oct 2006 9:00 PM - 3 messages
I have a form on my ASP 3.0 web site and I need to monitor submissions. Is it possible to generate an email upon form submission? If so, how do I invoke the email functionality from an ASP 3.0 page? ...
How do I get the parameter and value of clients web browser temporary system path?
thisis -
28 Oct 2006 9:30 AM - 8 messages
Hi All, myGetImage.asp is suppose to create a temporary file in the client side, and display in on the client web browser. myGetImage.asp needs to know the clients web browser temporary system path, in order to create the temp file. ...
How do I assure/be certain/check in ASP that an html element was fully loaded in the client side?
thisis -
28 Oct 2006 9:17 AM - 6 messages
Hi All, Hi All, (this is not the same topic as the my previous topic) What objects/methods/properties does VBScript offer for: Assuring/guarantee/make certain that ASP/VBSCript an ELEMENT - e.g. <img ... /> - was FULLY Loaded into web Browser ...
Question of programming principle
CB -
28 Oct 2006 8:12 AM - 6 messages
I am an experienced but self-taught ASP programmer, and sometimes wonder about major issues of principle in programming. For example: I have a web application that iterates over a set of database records, and displays each one on screen. The details of how each record is displayed can ...
bubble sort!?
joesindel -
27 Oct 2006 8:58 PM - 1 message
So heres the deal... I work for a company in which numbers are dropping. The owners created a game where calling potential clients racks up points for crap like basketball ticekts and such. The owners called upon me to develop a ...
bubble sort!?
joesindel -
27 Oct 2006 8:57 PM - 1 message
So heres the deal... I work for a company in which numbers are dropping. The owners created a game where calling potential clients racks up points for crap like basketball ticekts and such. The owners called upon me to develop a ...
bubble sort!?
joesindel -
27 Oct 2006 8:57 PM - 3 messages
So heres the deal... I work for a company in which numbers are dropping. The owners created a game where calling potential clients racks up points for crap like basketball ticekts and such. The owners called upon me to develop a ...
Display one object multiple times
Mangler -
27 Oct 2006 8:15 PM - 2 messages
The object I have is a barcode: <% RMABarCode = Session("rmaID") IF Len(RMABarCode) Then response.write "<img src='barcode.asp?code=" & RMABarCode & ...
Write one entry multiple times??
Mangler -
27 Oct 2006 8:10 PM - 7 messages
I created a barcode: <% RMABarCode = Request.Form("idrma") IF Len(RMABarCode) Then response.write "<img src='barcode.asp?code=" & RMABarCode & ...
unable to create MSHTML.HTMLDocument COM object
Steve -
27 Oct 2006 3:10 PM - 1 message
hi , i'm trying to get a reference to the DOM of an HTML file by using MSHTML from asp set HTMLDoc=server.createObject("MSHTML.HTMLDocument") but this is not workin , i get an "invalid class string" now i've looked everywhere for a way around this but i found nothing ...
Display text before ending the script
andre.labonte -
27 Oct 2006 1:49 PM - 2 messages
Hi! I have a script that is taking some time to run and in my page, i've placed some comments to be displayed on the webpage so I can know what the script is currently running. Unfortunately, the HTML page is displayed ONLY when the script is ...
Hide an external script address
twiggy182 -
27 Oct 2006 1:11 PM - 2 messages
Hi, I have a ASP site that needs to call a Perl CGI script with some parameters. Currently, the Perl script is called directly by a <form> and the script retreive the form's parameter. My problem is that I want to restrict access to the Perl script ( I ...
need more help on split, replace and inserting into a databse
MrHelpMe -
27 Oct 2006 12:10 AM - 10 messages
Hello again experts, I have successfully pulled data from an LDAP server and now what I want to do is drop the data into a database table. The following is my code that will insert the data but that has problems. ...
? How to - streaming audio and video using windows media... ?
hzgt9b@nopost.com -
26 Oct 2006 6:16 PM - 3 messages
Using VS 2003, VB.NET and/or ASP.NET 2.0, BACKGROUND I have a window forms based application that contains a TreeView control and a WebBroswer (AxSHDocVw.AxWebBrowser) control. The TreeView is populated with nodes that when clicked play an audio clip from specified local or web URL ...
ASP returning 404
Mohammed Hamama -
26 Oct 2006 5:56 PM - 6 messages
Hi all, I am using a windows 2000 server with IISLockdown and ISAPI_Rewrite installed on it. I have 2 websites A & B. ASP pages on A are working properly, but when placed one B they return 404 error. All other pages ...
Microsoft VBScript runtime (0x800A000D) Type mismatch: '[string: "
Snow -
26 Oct 2006 4:41 PM - 4 messages
Hello: I have Error Type: Microsoft VBScript runtime (0x800A000D) Type mismatch: '[string: "2, 0"]' The error happened at this line: if session("systemIdCount" & arrSystems(iLoop)) > 0 The code like this: strSystems = session("strSystems") '' Capture SystemId Array arrSystems = split(strSystems, ",") ...
ASP: Exchange 2003 Free/Busy Lookup
Andy -
26 Oct 2006 2:04 PM - 3 messages
Hi, I'm trying to get a users free/busy status from exchange from within a website and using the code below, but when I run this a login page from MS Outlook Web Access is retrieved from the server rather than a XML file containing the ...
MS Access Scripting?
Leslie Coover -
26 Oct 2006 4:50 AM - 14 messages
I want to script real-time data FROM financial Web sites TO an MS Access db. on a PC (no server issues). Is this possible? If so what should I use ASP VBScript, ASP.NET VB or something else, and ...
can I load database data in global.asa
c676228 -
25 Oct 2006 10:34 PM - 7 messages
Hi everyone, I never used global.asa. I am thinking of load some data in application_onstart which is read only from database(I mean the data will never be changed in any asp pages of the applcation) and so any session for ...
How to create a file in ASP/VBScript?
thisis -
25 Oct 2006 9:33 PM - 3 messages
Hi All, What options/methos/properties/functions/objects do I have in order to create a Function in ASP/VBScript that process/create binary data as an image file type? The Function is supoosed to get 2 parameters: 1. The file image content type defined as "image/bmp" , strContentType ...
How to select and insert using asp
MrHelpMe -
25 Oct 2006 5:52 PM - 7 messages
Hello experts, O.k I give up on this. I have an LDAP query from asp working correctly. It is returning data fine. Now I need to know how to take this data and then submitt it into the database. Can this be done in ...
Error Line Number
aljamala -
25 Oct 2006 5:19 PM - 4 messages
Hi, I have a page that whenever an error occur, I send an email to support with the error description, script name, server, referer, etc... However, I want to add the line number to the email message. So far, I ...
Session Var Issues
Agent H -
25 Oct 2006 1:18 PM - 3 messages
Hi all, Anyone out there using session vars to hold user information when a user logs in to your Web site, and sometimes having the Session Vars not get set (especially in IE)? My situation involves a Web site that uses a Session Var to hold a ...
Form to Email
David -
25 Oct 2006 11:37 AM - 15 messages
Hi, I have some database records which are listed out in a table on an asp page. The table is within a <form> tag. At the end of each record (and table row), I have created a <select> ...
How to Use SQL OLAP in Web application
Prabakar Samiyappan -
25 Oct 2006 10:52 AM - 1 message
Dear all, Is there is any way to use SQL OLAP in Web application .IS possiable How plz give me some example Links Regards Prabakar ...
file rename Problem in asp upload
hardik -
25 Oct 2006 7:45 AM - 2 messages
can anyone tell me how i can change the filename which is going to uploaded here is a code for uploading a file <!-- #include file="clsUpload.asp" --> Set objUpload = New clsUpload If objUpload.Files.Count > 0 Then ...
Chinese Del key on web forms - problem
jenp -
25 Oct 2006 7:17 AM - 1 message
Hello I'm currently having trouble with porting our classic ASP web app for Chinese users - in any web form, the Del key on a chinese keyboard clears all of the fields in the form, which is not ideal... I'm at a complete loss so any help would be most appreciated :-) ...
tracking sessions
panda -
25 Oct 2006 6:47 AM - 4 messages
Hi, I have a section of my intranet that i track with a session. That is to make sure that users have to login before they are able to use / view certain web pages. In my wwwroot directory i have two locations where these files are placed. ...
multiple forms in one asp page?
c676228 -
25 Oct 2006 5:00 AM - 6 messages
Hi everyone, my colleagues are thinking about have three insurance plans on one asp page: I simplify the plan as follow: text box:number of people plan1 plan2 plan3 ...
Update Multiple Records
cancer10 -
25 Oct 2006 4:47 AM - 1 message
How do I update multiple records in a table in ASP using loops ? For example. I have a table with the following colums ID | Col1 | Col2 ------------------------- 1 | 50 | 100 2 | 25 | 130 3 | 55 | 70 I want to add *66* and *77* into the ID # *1* and ID # *3* ...
How to Write into a Cross-Subdomain Cookie
flip79 -
25 Oct 2006 1:48 AM - 3 messages
Hello and sorry for my english, I'm italian... I manage a site with a normal address like: [link] I'm using a cookie to store nicks of my users, with a code like this: ---- Response.Cookies("mycookie").Expires = #January 1, 2030# ...
Classic ASP: Is there a way to add to the results of a posted form
Brian J. Matuschak -
25 Oct 2006 12:27 AM - 7 messages
Greetings: We have a survey site where the responses are returned as new static ASP pages. What we'd like to do is to have a section below the "Comments" that the original respondent that is a "rebuttal" to the comment that we can fill ...
IIS and WebDav problems
zdaudert@gmail.com -
24 Oct 2006 3:12 PM - 1 message
I am trying to setup IIS 6 to allow web developers to connect up to the web root of a website via WebDav and work on site files including .asp and .aspx files. I have setup a website for this purpose in IIS. The home directory is ...
Response.Write
Mangler -
24 Oct 2006 1:19 PM - 9 messages
Here is an easy one for the pros, yet hard for me (newbie). If my recordset is empty I want to write "Not Complete" and if there is a value, I want to write the value. Can someone tell me what I am ...
Comparing fields
bvlmv -
24 Oct 2006 12:47 PM - 4 messages
Greetings, I have a simple html/asp form that submits data to an access DB. The idea is when calling a record back from the db, the page will have an option to change certain fields (drop down) then a new submit option. ...
Update Scoreboard - ASP
cancer10 -
24 Oct 2006 10:32 AM - 1 message
Hello, I am facing a problem in ASP. The scenario is... I have a database with the following Colums and the data type of all Colums are integer id|score1 | score2 | score3 ------------------------------------ 1 | 10 | 4 | 10 | 2 | 5 | 51 | 10 | ...
Change the returned rows in a gridview
Oystein@Norway -
24 Oct 2006 9:31 AM - 3 messages
Hi! I've got a DropDownlist with predefined numbers(5,10,15,20 etc.) which I want to do a postback to the GridView pagesize, so that the user manually can change returned rows. Is there a way to do that in the properties of the ...
Service unavailable error
maansi.creations -
24 Oct 2006 7:42 AM - 3 messages
Service unavailable error comes randomly while accessing our website and gets alright in matter of seconds....Could some one tell the possible reasons for these to happen: i got a earlier suggestion to our error as follows: ------------------------------------------------------- If the error continues, it means that your website is exceeding the ...
VERY new to ASP, http 401.5 error
DaveS -
23 Oct 2006 9:21 PM - 11 messages
I've been trying to start out learning some ASP and I've been trying to create the classic 'Hello world' program. I'm running the ASP pages on some webspace I have, rather than on my computer. Everytime I try and run the asp ...
Unique Way to Detect if Cookies are set - opinions?
Victor -
23 Oct 2006 7:50 PM - 4 messages
I was thinking about an easy to determine if cookies are set or not in ASP. I began thinking about how the Session ID is dependent upon a cookie - right? Well, I disabled cookies in Firefox and then loaded a webpage that displayed ...
Trigger
Mangler -
23 Oct 2006 7:23 PM - 2 messages
Need some help/advise. I need 2 colums of one table to equal the value of 2 columns on another table any time data is inserted there. Never messed with a trigger before so I'm want to get help so I dont screw something up. ...
classic asp - returning records from access in a random order
InnoCreate -
23 Oct 2006 4:20 PM - 7 messages
Hi everyone. I've recently written a classic asp website which uses an MS Access datasource. I know this is less than an ideal data source as it has limited functionality. I have a search form on my website which allows ...
INSERT statement error.
BaWork -
23 Oct 2006 3:54 PM - 7 messages
I have the following to insert a new record: <% .. Set Conn = Server.CreateObject("ADODB.Connection") Conn.Open "DSN=qqqqq;" SQLStmt = "INSERT INTO tbl_qqqqqq (main_cat, cat_fee, fee_amount) " SQLStmt = SQLStmt & "VALUES ('" & main_cat & "','" & cat_fee & "','" & fee_amount & "')" ...
Add to exsiting value on update
Mangler -
23 Oct 2006 3:16 PM - 2 messages
I need a quick suggestion on the best way to accomplish the below: A user can update a record in the db on the front end so.... if this is the first entry they input the value and submit it.... ...
Problems using ASP and Crystal Reports 8.5 to create dynamic PDF reports
PughDR@gmail.com -
23 Oct 2006 2:50 PM - 1 message
As the subject of this topic suggestions I am trying to find a way to use ASP, SQL Server, Com+ and Crystal Reports 8.5 to Create Dynamic PDF Reports Over The Web, but the only article I found that decribes this ...
Form to Email question
David -
23 Oct 2006 2:36 PM - 6 messages
Hi, I have an asp page which I am designing. On this page will be a set of records pulled from my db. These records will be displayed within a form. Each record will have a 'dropdown' displayed on the right hand side of ...
"Non-persistent" session variables
Arnost Sobota -
23 Oct 2006 1:46 PM - 4 messages
Dear ASP community, I have a question regarding ASP session variables. My assumption was that a session variable has the same lifetime as the session itself: as a consequence, given that closing the browser doesn't terminate the session, the session variable is kept alive until the ...
Request.Form not working?
Drew -
23 Oct 2006 1:17 PM - 6 messages
I am having an issue with an app that I built, it seems that Request.Form doesn't want to work sometimes, and only sometimes. For instance, I got a call last week about an error, I had the user screenshot it and email it to ...
Looping code for an unknown reason!
Luke - eat.lemons@gmail.com -
23 Oct 2006 8:40 AM - 7 messages
Hi, Im pretty new to asp so all light on this question would be great. Basically i need to test to see what value is set (where to retrieve the data from) so ive done it like this: If Request.Querystring("id") = "" then ...
Evaluate a recordset value
altreed -
23 Oct 2006 7:09 AM - 12 messages
Hi, I am new to ASP, HTML and iis. I have my asp code working so that I can retrieve my desired record from the database. I can place the data on the screen in table form. All works fine. ...
Update Column Serial Wise
cancer10 -
23 Oct 2006 3:19 AM - 1 message
There are 2 columns in 1 database for -Id- and -name- but the serial number is random. I want to update those serial number in serial order, how to? Like id Name ------------ 1 Shouvik ...
Using Visual Studio to test ASP pages
Victor -
22 Oct 2006 9:48 PM - 3 messages
I've downloaded both MS Visual Basic 2005 Express Edition and MS Visual Web Developer 2005 Express Edition. All I want to do is be able to write some code snippets, in ASP (VBScript) and then run them locally for debugging purposes. I've been going through the docs for both these ...
|
|||||||||||||||||||||||