494 Topics
![]() | |
Hi I want to read a source code of a web page & then write it into a text file using vbscript. I have used this code but not working properly. Error : ActiveX component can't create the object [code=vb]Option Explicit Dim objHttp Dim strUrl Dim strData ' Create a … | |
I am unable to browse my asp page on Internet Information Services (IIS). Please help. [COLOR="Red"][B] The page cannot be displayed HTTP 500.100 - Internal Server Error - ASP error Internet Information Services[/B][/COLOR] Technical Information (for support personnel) Error Type: Microsoft VBScript compilation (0x800A0400) Expected statement /localdir/Hellotest.asp, line 12 <tr> … | |
Hi, I am having a problem using Dreamweaver CS3 standard recordset paging behavior. It doesn’t seem to work when I pass parameter values from a FORM on my search page, to the recordset on my results page. - Recordset Paging works if no parameters are used in the recordset sql … | |
Well I need some help understanding some sections of code. I'm a complete newb at web development so all explanations are greatly appreciated. I am having trouble understanding how to set the attributes of an object. I have a myProject object declared in the global.asa file and then I am … | |
Hi, Is there a way to separate strings in Classic ASP? Here is the sample of the CODE: <%@ Language=VBScript %> <% Option Explicit %> <% ' ----------------------------------------------------- ' CDONTS Email send script ' © [url]http://www.designplace.org/[/url] ' Comments must remain intact for re-use of this code ' ----------------------------------------------------- dim strFName, … | |
Can someone take a look at this and possibly tell me what I'm missing here? [code=VBScript] <!-- #includes file="DBConnect.inc" --> <% u_CDNum=request.form("u_CDNum") u_CDDesc=request.form("u_CDDesc") u_CDStock=request.form("u_CDStock") %> <% SQL = "INSERT INTO CDNumber (nCDNumber, tCDDescription, bStockorMiscImages) VALUES ('"&u_CDNum&"','"&u_CDDesc&"','"&u_CDStock&"')" conn.Execute(SQL) %> [/code] Get's this: Microsoft VBScript compilation error '800a0409' Unterminated string constant /rsd_image_library/X/input_text_to_db.asp, … | |
Hello, I am trying pull data from a 2-dimensional array but am getting an error like: [QUOTE] Microsoft VBScript runtime error '800a0009' Subscript out of range: '1' /test.asp, line 39 [/QUOTE] the message gives the line number but i don't see whaats wrong with it this is a simplified version … | |
Hi, I'm kind of new on the field of ASP, I wanted to export the body of the email as a text file. Is there any way to create the data on a text file. Please provide some suggestions how to go about this problem. Let me provide the send … | |
Hi I am experimenting with VBScript and SQL and am unsure if the following code will actually work. I do not have access to IIS at present so I am unable to test it. I would be greatfull if anyone could just take a brief look at the code to … | |
Hi, I have 2 questions on how to get this code working from a form I am building. Notes-- I only have Classic ASP running on all of the servers that I am working on. My other option is that I have CGI and Perl running too. First, I have … | |
Hi, I'm trying to import a .csv file containing discount codes on 1 column. I was wondering if it's possible to import data to the send_it.asp(This is a web form application) without any database like MySQL. Also, I want to read each line until one user fills out a form, … | |
I'm trying to export body of email into .txt. here is the sendmail.asp: <%@ Language=VBScript %> <% Option Explicit %> <% ' ----------------------------------------------------- ' CDONTS Email send script ' © [url]http://www.designplace.org/[/url] ' Comments must remain intact for re-use of this code ' ----------------------------------------------------- dim strName, strEmailOne, strEmailTwo, strMessage, optSuggestions, strEmailTo … | |
HI, I'm trying to import data coming from a .csv file. The .csv file contains a column of coupon codes. I have constructed a send email form made with ASP earlier. This will send a coupon code taken from the .csv file one at a time after a person completely … | |
Hello, First I apologise if this isn't the right forum... I have a vbscript that is non-asp. It is run in a program called EFI-Logic that is an ERP. EFI-Logic caonnects to our MSSQL database for normal operation. The problem is that on some computers I get the following error: … | |
I am new and very lost. Any help is greatly appreciated I have an html page that I am using VBScript to redirect to another page I want to bring over data pulled to a textbox on form1 to a textbox on form2. This is what I tried This is … | |
Hello, I'm a newbi to both scripting and asp. I aneed to understand this error message being received from an existing web page. This is displayed on most page refreshes. “Microsoft VBScript runtime error 800a0005 invalid procedure call or argument ‘mid’ /notify_shipped asp, line 24 The website uses MySQL for … | |
Good Day, I have a customer requirement to extract test log information from a CSV file into an array so I can export the information into Word in tabular format. Does anyone on this forum have sample code on how to extract data from CSV? Regards, Keith | |
Good Day, How would you code in VBScript to read the content of multiple HTML files into an array? Please observe the below sample and modify as necessary. My requirement is read multiple files by extension and not simply specify a single file. Const ForReading = 1 Set objFSO = … | |
Good Day, I am a novice with VBScript but would like to leverage its power to effectively manage HTML files. I am looking for sample code. Here is my scenario. I have a collection of a dozen HTML files and would like to automatically merge each file to one concatenated … | |
Hi to all am new to asp and am parcipating a project on asp in our company... here i got one prob that passing the parameter thru onclick.. i tried a lot but nothing materialize.. i have 5 buttons here.. for all buttons same function that i have to submit … | |
I have done the back-end code in the ASP, I was wondering if there's a way to produce a text file on a server, after form has been submitted by user. I am also putting a script to put via email, but want to save it as a text file … | |
Can you please show me how to access a dynamically created table in an iframe. The table can have 1 or more rows and 4 cells each. I need to go through the table to format a message and email it. The page is a classic ASP. Am lost right … | |
I'm building a dynamic form with radio buttons. These radio buttons will hold values that have specific email addresses of respective people in a company. here is the html and asp code shown below: <FORM METHOD=POST ACTION="mailform.asp" ONSUBMIT="DoctorElements();"> <INPUT TYPE=HIDDEN NAME="urlSendTo" VALUE="/suggestions/thankyou.htm"> <INPUT TYPE=HIDDEN NAME="urlFromPath" VALUE="/suggestions/default.htm"> Name: <INPUT TYPE=TEXT NAME="txtUser.Name"><BR> … | |
I have been receiving the 'Error on Page' indications when I access a number of different websites for about 4 months since I set up a new computer with Windows Vista and IE7. The detail error message shows the error - Class doesn't support automation. I have searched everything I … | |
Howdy, I need to pull database information into an XML defined form. One of the db fields has to be contained in a CDATA node. This line of code returns data, no errors [code] <HTMLCONTENT type="html" width="400"><![CDATA[<body><p>]]><%=aContent%><![CDATA[</p></body>]]></HTMLCONTENT>[/code] It works until I try to use it within an application which uses … | |
Hi :) I am yet another person posting my HijackThis log as I have tried for a while now to make sense of it but I just cant get my head around the jargon. I have compared my log to others posted and havent found anything too suspicios....well not that … | |
Hi Every one every body uses internet donwload manager knows it So there is a feature in it, it's that you can donwload multi files using [B]Download All Links with IDM [/B]that methodfrom registry is like that "C:\Program Files\Internet Download Manager\IEGetAll.htm" so i went to the file and i found … | |
Hi friends i have a question here.. i am using Win Xp SP2.....i have installed VM ware Player on which DebianEtch linux is running... there in Debian Linux i am runnint say telnet service on port 23... earlier i had some executable through which i had forwarded the port 23 … | |
I'm logging employees' internet access for compliance with company policy. As soon as an employee visits a blocked site, he is redirected to a warning page (on the intranet). This warning page gets their IP addresses & emails them to the IT department. [COLOR="Red"]I also need their usernames.[/COLOR]I have found … | |
![]() | hello everyone A bit about me: My name's Matt. I'm a 19 year old dude from Switzerland. I am currently studying at a Swiss college to become an application developer. I go to classes two days a week and the other three days I go to work at an office … |
im writing a app that u write some vbscript or javascript or html and u can run it does anyone know how to run any of these languages from in vb | |
Hi, I have an Access database that I have to create text files, fixed length field width, from a table - actually 3 text files from 3 tables. There's a module that does all 3 for me and puts them in the right place. How can I call that module … | |
does any 1 know how to give a picture a tag or name and then in javascript or vbscript change it ? | |
Hi guys, My p.c isn't running any better. It's still booting up very slow. I've removed everything with the tools advised. Here are three logs, hopefully this can lead to the removal of this problem. Thanks in advance Atky [B]HijackThis Log[/B] Logfile of HijackThisv1.99.1 Scan saved at 17:23:22, on 08/08/2007 … | |
im writing a app that u write some vbscript or javascript or html and u can run it does anyone know how to run any of these languages from in vb | |
I've added a vbscript to an asp page in order to print without showing the print dialog box. Everything works fine when you first load the page, but when you try and navigate away from the page, you get the "A script on this page has caused internet explorer to … | |
I want to create an application. It shouldn't be OS-specific but I'm running 98SE so I'll be explaining things in terms of that. I've already written it as a working script in VBScript, but it's too slow [i]and[/i] gets exponentially slower as it handles larger and larger files. I want … | |
Could someone point me to a tutorial on how to write a vbscript that will auto install software when the user logs on? I will be applying this to a GPO. Also, will I need a (not sure if this is the right name for it) answer file/script to attach … ![]() | |
I am going to be writing a test script soon, and I will be using vbscript. Can someone give me an example of a test script? | |
I was asked to help make some test scripts at my work, and they use VBScript to write all their code. I pretty much only know c/c++ how hard would it be to learn VBScript if I am decent at c++? And does anyone have preference to which website they … | |
How would I go abou practicing VBScript. I have never used it before. | |
I first touched VBscript 4 days ago and so far so good except for one issue I am having. I have written a scheduling form for Outlook that takes 4 names and then sends out about 20 meeting invites. The problem I am having is directing the program to schedule … | |
[B][COLOR=red]Hello everyone, [/COLOR][/B] [B][COLOR=red][/COLOR][/B] [B][COLOR=red]someone help me ? i have a problem with vb script i paste the coding here just chek it out where i am wrong [COLOR=green]raj.ActiveConnection = MM_ravi_STRING[/COLOR] i got error here:( Thanks email me on [email]ravindrakale007@gmail.com[/email][/COLOR][/B] [B][COLOR=red][/COLOR][/B] [B][COLOR=red]<[/COLOR][/B][EMAIL="%@LANGUAGE="][B][COLOR=red]%@LANGUAGE="VBSCRIPT"%[/COLOR][/B][/EMAIL][B][COLOR=red]> <!--#include file="Connections/ravi.asp" --> <% Dim raj Dim raj_numRows[/COLOR][/B] … | |
Hello, I need help. I have been searching the web to try and find to somehow add vbscript in my visual basic application. I'm not sure how to go by doing that. What I'm really trying to do is to use visual basic as a GUI and then use vbscript … | |
I know the HTMl and CSS isn't right yet and am not to fussed yet. But the ASP is returning a 405 resource unavilible. My hosting is with 1&1 and it is turned on. booking form is [URL=http://www.chabrisloirevalley.com/booking.htm]here[/URL] ASP source code is: <% @LANGUAGE="VBSCRIPT" CODEPAGE="1252"%> <html> <head> <title></title> <meta http-equiv="Content-Type" … | |
I have a simple login screen where I want the user upon entering the correct userid/password , for his userid to be inserted into a table in a database so to keep track who visited his web page. My ISP is supposedly has created a DS named "win5_zjconstructioninc_com" but the … | |
Good morning, I have created a registration page with a few little things built in to eliminate duplicate users. I am getting the follow error after clicking the register button: cannot find 'file://C:/CTGR/_access/%3C%=MM_editAction%%3E'. Make sure the path or Internet address is correct. Ideas on how to get this error to … | |
i want to change background color in panel if checkbox checked is true i am used vb script; but i wrote given code but the expected end of statement error happend please help me how define use vbscript... <script> Sub Changed() Try Dim lcnt As Integer If Me.c1.Checked = True … | |
I put together a fairly complex website and it doesn't function on some computers, especially macs. I used the Microsoft script editor to write the pages and used vbscript as the scripting language. I originally thought it might of been because I didnt have the <!DOCTYPE> tag as the first … | |
:sad: I am trying to connect to a mysql database. ideally, i'd like it dumped into a grid view so i can edit it... no matter how i try it, i get this error- [B]Compiler Error Message: [/B]BC30002: Type 'ODBCConnection' is not defined. here is the code for this page: … |
The End.