1,828 Topics

Member Avatar for
Member Avatar for faisyshah

hello every body i have a form that will have multiple check boxes on it . and i have 20 machinery for sale. thereform i have 20 checkboxes in my form. all the checkboxes have different value but checkboxes name will be same. my requirement is that when a customer …

Member Avatar for faisyshah
0
127
Member Avatar for Reena

Hello! I am very new to ASP. I have written some simple ASP scripts and that I was able to view in my server (IIS), but since last 15 days i am not able to view the ASP pages. There is this error msg displayed when ever i run the …

Member Avatar for dexterz
0
141
Member Avatar for lsurebel4

I am working on a project for work. MY form gathers simple data, and submits to an access database. all that is ok. My form results are to submit an email to a specific email address. The form absolutly will not email the info. Please be advised that this form …

Member Avatar for william_stam
0
136
Member Avatar for william_stam

I am building a file repository for the press industry. The independent publisher pays for bandwidth used (ie: sum file size uploaded and downloaded). My problem is that if you click to download it logs it as a download, is there a way that one can find out which button …

Member Avatar for william_stam
0
93
Member Avatar for Jason_tdot

I'm a newbie with inputing into a database. Can someone help me with the script below. There is probably a few errors. Can you spot them please :) Thanks in advance Dim conn, rsadd, sql Set conn=Server.CreateObject("ADODB.Connection") conn.Open "seneca_book_db" Set rsadd=Server.CreateObject("ADODB.RecordSet") sql="Select * From Customers" rsadd.Open sql, conn rsadd.AddNew rsadd("Custaccount")=request("T3") …

Member Avatar for hollystyles
0
108
Member Avatar for Forikan

Hello, My question is about an HTML form using "POST" method. I'm using a simple HTML form, from which I get back my variables with this code : sLastName = Request.Form.Item("LastName") This work correctly. But when the user fill the blank field with a string containing " ' ", I …

Member Avatar for zippee
0
161
Member Avatar for raywood5

I am trying to remove a function call for a pop up window because so many people have pop up blockers. The line below shows a call to have msg.asp..... shown in a pop up. However i want it to just be a normal page. Is there a way I …

Member Avatar for zippee
0
115
Member Avatar for faisyshah

hello every body my problem relate from combo box. for example iam using three links in my home page (1) contact us (2) technical support (3) sales the fourth will be contact form . when i click on contact us link the page jump on contact form similarly when i …

Member Avatar for zippee
0
84
Member Avatar for tommytx

I have a windows 2000 server that was working just fine, until all of a sudden it won't let me update or add records to any microsoft data base mdb that I have on the server. It comes back with Permission denied, so I tried to write a simple text …

Member Avatar for dexterz
0
205
Member Avatar for orionm

Hi, I am very very new to ASP. So far i have been able to connect to the SQL database using dreamweaver mx 2004 but im not sure where to go from here. I have a support databse that i have setup with a few records. The table structure looks …

Member Avatar for dexterz
0
194
Member Avatar for Taffy-Taff

Hi - I can't believe that I have played around with different programming languages before and never heard about ASP. I have started doing some reading on it and it seems really exciting. I have a problem, however. I am using a Laptop that runs the Windows XP Home Edition …

Member Avatar for VSBrown
0
277
Member Avatar for sindhu_at

hi I am just a beginner to ASP and at my work got this task to complete.There is an existing website with around 1000 asp pages.Now i have to add one table in all the pages in very short time. Can u please help me with ideas and codes, how …

Member Avatar for VSBrown
0
91
Member Avatar for faisyshah

i want to use "search for web" option in my site just like in msn home page. any body can tell me whats the procedure or script for this purpose.

Member Avatar for VSBrown
0
103
Member Avatar for aspuser27

hi in my first form i have a drop down menu.on selecting a choice from it i open the popup.in the popup i display the all types of products avaible in the selected category. he can enter the quantity he wants. now i have some 10 choices in the drop …

Member Avatar for dexterz
0
93
Member Avatar for neilpollick

UPLOAD PROCEDURE RUNS UP AGAINST "PERMISSION DENIED" I have access to a folder on a server and I am running my website from there. I can access the site with ftp, even eith a line in the address bar of IE [url]ftp://username:password@theremoteserver.com[/url] I have used this access to download the …

Member Avatar for dexterz
0
124
Member Avatar for Ross36

Hi, I have the below code in an asp page. When I run this page in IE or Opera it correctly displays the header info and does not redirect me to 'test.html'. However, when I run this in Netscape it goes straight to the redirect page 'test.html' which indicates that …

Member Avatar for dexterz
0
125
Member Avatar for faisyshah

Assalam Alaikum in my site ( using ASP ) i have some products for sale. purpose is that when customer purchase product one by one the total sum of products price store in data base. for example if customer purchase 1 monitor price will be RS 4000 after that he …

Member Avatar for dexterz
0
86
Member Avatar for dexterz

I have use it in my site article,freeware,recipe,link directory,lyrics,template and games section. I was able to display the data in 3 cols and rows using CSS layout. It took me quite a while to figured it out. In ASP, you should know where the loop start and end, otherwise the …

0
67
Member Avatar for samaru

[size=4]Sams Teach Yourself Active Server Pages in 24 Hours[/size] [b]by Christoph Wille, Christian Koller[/b] Worth it for its price, but prepare to work - If you buy this book, then be prepared to work. If you're new to the whole programming field, or maybe just web programming, don't think the …

Member Avatar for Aykon
0
168
Member Avatar for lingriff

I am wanting to add some code to my asp page that will create a timestamp.. My asp page creates a file using XML and I want one of the tags in the XML file to have a timestamp.. Any ideas?? I can post an example if that will help. …

0
134
Member Avatar for lalpert

Please help! Why doesn't my home page, called mysite/index.asp load when calling the domain name without the 'index.asp'? The domain name is [url]www.treasurymgr.com[/url]. The old index.html is loading fine. When I delete that page from the root directory, the index.asp file isn't recognized. Anyone have any ideas? Much appreciated... Lisa

Member Avatar for zippee
0
194
Member Avatar for TheBlueRocker

I am new to asp programming and I am trying to alter an existing asp file. The html file will process a form, go to the asp page and display the data that was filled out and send that data to an email address. What I need is when the …

Member Avatar for zippee
0
136
Member Avatar for Deepa

iam sending mail using cdonts in asp there is no error but the mail is not send. can some one help me in this. this is the code set objMail=Server.CreateObject("CDONTS.NewMail") objMail.From=FromId objMail.To=ToId objMail.Subject=MailSubject objMail.BodyFormat=0 ' for HTML objMail.MailFormat = 0 ' for MIME objMail.Body=MailMessage objMail.Send set objMail=nothing

Member Avatar for faisyshah
0
197
Member Avatar for JWINVT

Greetings, I am new to this site and am in hopes that someone can help me out with a problem I am having. I have a calendar that was built by someone else that I need to slightly modify. The guy who built this calendar is an asp genius but …

Member Avatar for JWINVT
0
174
Member Avatar for raywood5

I am building a links pages in asp using an Access db. Some of the pages display correctly. Some of the other pages give me this error: The page you requested, has produced an error An email alert has been sent to the web site administrators regarding this error. In …

Member Avatar for zippee
0
108
Member Avatar for raywood5

I am trying to use an ASP upload file to upload banners. I am receiving this error: ADODB.Recordset error '800a0bb9' Arguments are of the wrong type, are out of acceptable range, or are in conflict with one another. /links/add_banner_upload.asp, line 98 Below is the code Query = "SELECT * FROM …

0
110
Member Avatar for Deepa

:( how to change the image after each second in asp. in case of banner,i have to change the image after one second. how to do this in asp.

Member Avatar for zippee
0
79
Member Avatar for vicury

Please help! Can't seem to be able to figure out the syntax I need to include a file that is located on the entirely deferent website. Here's what I need to do, which, obviously doesn't work: <!--#include virtual="http://www.another-site.com/xxx.asp"-->

Member Avatar for zippee
0
114
Member Avatar for Belvee

Hi All, Can someone please help me with this...I have a search page which searches for users on the database. I need to get the username first and last names and write them to another page. I am not sure how to do this. an someone please help....so far I …

0
64
Member Avatar for faisyshah

HI EVERY BODY CAN ANY PERSON TELL ME THAT HOW I CAN CHANGE PRODUCT IMAGE (MAY BE JPG,GIF. ) ONE BY ONE IN ASP. FOR EXAMPLE IAM DESIGNING A TEXTILE SITE. I WANT MY TEXTILE PRODUCT CHANGE ONE BY ONE IN ONE SPACE. :cool:

Member Avatar for Deepa
0
79

The End.