1,828 Topics

Member Avatar for
Member Avatar for vasudha k

Hi everyone, I have small query..... I am new to ASP coding..... I just want to know if I can use MS Access as my database or is anything else more optimum ... my application to be designed is quite a small one..... so will this be a good combination …

Member Avatar for Jx_Man
0
104
Member Avatar for mrt.work

Hi i would like to know how can we set the cookie by just typing url for example, [url]www.test.com/default.asp?field1=mark&name=john[/url] so when the user type in the url above, the two cookies will be set, which is field and name with the value mark and john. any replies, i'd appreciate. thanks

Member Avatar for mellamokb
0
125
Member Avatar for janicefernandes

we are a small website company. I make the user interface of the website while my colleague develops the admin side in asp. The admin pages alow our client to change the text and images on certain pages like products, gallery etc. i want to study code examples of such …

Member Avatar for mellamokb
0
210
Member Avatar for nikie_2007

Hi All, I have a software module(enquiry) developed in ASP using MSSQL as back end. In the index page , i display 4 new enquiries for the logged in user, clicking on which land to the enquiry pages. This has been working fine. But now recently i have come across …

Member Avatar for nikie_2007
0
240
Member Avatar for mrt.work

Hi, I need somebody's help on asp template. I used to build page with visual web developer and that had masterpage. Right now i'm using dreamweaver, with asp and i want to use a site as the masterpage. I'm considering about using include file, but i can't edit it. Can …

Member Avatar for mrt.work
0
45
Member Avatar for zhk

Hello, I am new to Microsoft web development. I need help with plain old ASP. Not ASP.NET I would like to users to my web site to upload .PDF files into the database. I have IIS 5 on Windows 2000 server. Other modules are working flawlessly, but my employer want …

Member Avatar for hielo
0
59
Member Avatar for doraima29

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, …

Member Avatar for doraima29
0
126
Member Avatar for vicshoup

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, …

Member Avatar for vicshoup
0
162
Member Avatar for minbor

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 …

Member Avatar for minbor
0
109
Member Avatar for beingoll

Sorry guys, i am pretty new at asp so this is probably an easy to solve problem. I have the following code: Dim customerID customerID = Session("userID") If customerID = "" Then Response.Write ("Access denied") Response.Write ("<a href=" & chr(34) & "age1.html" & chr(34) & ">Click here to login.</a>") Response.End …

Member Avatar for hielo
0
84
Member Avatar for purplegerbil

Hi, I have the following code: [CODE]<% Dim myMail Set myMail=CreateObject("CDO.Message") myMail.Subject="Information from website" myMail.From="mymail@hotmail.com" myMail.To="someone@hotmail.com" myMail.TextBody="This is the information I want to email" myMail.Send set myMail=nothing %>[/CODE] When I use the above code I do not get an email sent to me. Any ideas? pG

Member Avatar for purplegerbil
0
62
Member Avatar for doraima29

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 …

Member Avatar for hielo
0
93
Member Avatar for gilroda

Hi there, I'm new to the forums and a programming novice. I've set up a CDOSYS form to email (a newsletter sign-up) and I'm trying to get my form field data to display on separate lines after the form has been processed - like the following: Name: [value] Company: [value] …

Member Avatar for gull
0
166
Member Avatar for karthikcyano

Hi to All, I want to Export an Report to XML format from ASP. Herewith i also want to include the XSLT (i mean the stylesheet) also. Can anyone provide me the Sample code. Thanks in Advance, Karthik.

Member Avatar for zhk
0
85
Member Avatar for HemantK

Hi Everybody! How to upload a image / pdf file in mysql table blob column with ASP pls help me HemantK

Member Avatar for zhk
0
430
Member Avatar for FallenPaladin

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 …

Member Avatar for SheSaidImaPregy
0
114
Member Avatar for doraima29

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 …

0
52
Member Avatar for doraima29

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, …

0
63
Member Avatar for doraima29

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 …

0
65
Member Avatar for doraima29

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 …

0
86
Member Avatar for doraima29

Hi Everyone, I'm trying to import data from an .xls or .txt file, so the data can be shown on the body of the email. I have a list of coupon codes I have entered on a .xls spreadsheet, and want to import data when a user uses a registration …

0
39
Member Avatar for hoasabi

Hi, I need some help with ASP. I''m only familiar with the language but now I have to do project. I have 3 pages: login.asp, login_script.asp and admin.asp and i'm using access database When the user logs into the login.asp page, it checks the database to see if that username …

Member Avatar for CertGuard
0
121
Member Avatar for scottrdj

There is probably an easy answer for this but I cant find it. I am based in the Uk and server is in the US. Differnce between server time and my time is 8 hours. When a customer order comes through it is in the US time and not mine, …

Member Avatar for CertGuard
0
60
Member Avatar for aparnesh

I am trying out the process of uploading a file from a browser to the IIS 5 server. I have installed the MS Posting Acceptor (cpshost.dll) and the file exists in the C:/InetPub/Scripts folder. I restarted IIS after the installation. The Code for Posting the file is [CODE]<FORM EncType="multipart/form-data" ACTION="http://localhost/Scripts/cpshost.dll?PUBLISH? …

Member Avatar for SheSaidImaPregy
0
190
Member Avatar for knowledgelover

hi there , I need to know if an ASP.net project written with VB can send data to excel sheet and perform specific mathematical operations (but simple)and then save it in SQL database created using SQL provided by the.Net environment ? your help is appreciated I really need to know …

Member Avatar for SheSaidImaPregy
0
63
Member Avatar for nick0123

Hopefully someone can assist me with this, I've searched all over and other than an inkling that maybe a counter is required I've drawn a blank. Basically from an access database comes a list of schools and their details. At the top of the asp page is the list of …

Member Avatar for CertGuard
0
178
Member Avatar for scottrdj

Hi, I have a website that was developed a few years ago for me, site is proburn.com and has been happily running for a few years, however I have had to chnage hosts and I am now gwetting all sorts of errors. latest one is where a customer is trying …

Member Avatar for CertGuard
0
196
Member Avatar for tinggg

Hi this is my first asp form so please be gentle with me :) I've setup this form and when I test it and 'send' the email isn't coming through. Can anyone spot a problem in the code? Thanks for your help FORM Code [code] <div class="feedback"> <form action="sendorder.asp" method="post" …

Member Avatar for SheSaidImaPregy
0
140
Member Avatar for bondbot

I am new to web development language and I am trying to write a program. I am in dire need of help. Thanks!

Member Avatar for SheSaidImaPregy
0
93
Member Avatar for ix27

Browsing an aspx page results with the following error: [I]The page cannot be displayed The page you are looking for is currently unavailable. The Web site might be experiencing technical difficulties, or you may need to adjust your browser settings. [/I] When I checked the Event Viewer, I get "Fatal …

Member Avatar for SheSaidImaPregy
0
49

The End.