1,828 Topics

Member Avatar for
Member Avatar for cancer10

Hi, I am designing a small advertisement management program in asp, and Sql Server 2000 as database. My table has the following fields which are pretty self explanatory: bannerId, bannertitle, bannerurl, imageURL, bannerpirority bannerId = Autoincrement to generate unique id for a banner ad bannertitle = String title of the …

Member Avatar for Baradaran
0
108
Member Avatar for Hellodear

Hello everybody, I'm a newb of ASP. Yesterday i've practiced add to database, delete, update, search using ASP. Database: MS Access. I have fields of name, age sex, place, address; how can i make appear all fields except name as tooltip, when we drag the mouse pointer over the 'name' …

Member Avatar for Hellodear
0
164
Member Avatar for Avedis

I want to find or learn the way to create this entry box, to give the freedom to enter dynamically the way they want to. I have been learning ASP for the last 2 months (super fast learning) the only thing i'm stuck at this box problem. Need urgent help! …

Member Avatar for stymiee
0
51
Member Avatar for PrincessG

Anyone please kindly help me!! I'm working on a project, trying to make use of string tokenizer in ASP.NET, can it be done? I then want to make use of string tokenizer to read till the file extension. (.doc) so that I can assign a icon image to the different …

Member Avatar for kashko
0
73
Member Avatar for blakisa

Hi All, Anyone know of an efficient way to read a data text file in comma delimited format and displaying the information to a table. I read some of the previous post, but they did not seem too informative. Basically, Check file existance, display if not availible Load variables from …

Member Avatar for wim2440
0
142
Member Avatar for Morn

I have is a set of HTML checkboxes and a Access database at the back end, when I retrieve the values of the checkboxes to process with Classic ASP I am running into a problem with undefined values. What I have discovered from research is that if a checkbox is …

Member Avatar for madmital
0
222
Member Avatar for Hellodear

hi, I'm a newb of ASP. I have an access database with two fields namely 'name' and 'comments'. And is working properly with add, delete, update, search etc. But if the search output is gone beyond 10 items, then how is it possible to make appear the 11th item at …

Member Avatar for Hellodear
0
96
Member Avatar for Goitse

Hi Guys I'm new in ASP and Access and I 'm trying to create a login page. Please Help!! :confused: Thanks in Advance

Member Avatar for katarey
0
554
Member Avatar for Hellodear

Hi, I'm a newb of ASP. Can anybody help me for the following topic? I want to make a questionaire using ASP with four options using radio button. Questions and answer need to store in an ms access database using this format(field): Question, opt1, opt2, opt3, opt4. Must have each …

Member Avatar for katarey
0
59
Member Avatar for pravly

Hi everybody, I am facing problem in javascript. I got javascript code for desiging a input form. That code is saved as test.html file. My Doubt is: 1) How do i use in my mainpage.aspx? PLz its very urgent. Thank you all

Member Avatar for nikkiH
0
209
Member Avatar for Hellodear

Hi, How can i add a google search bar to my web page? hope somebody can help me!!!! Anish Varghese Mahatma Gandhi Colony

Member Avatar for nikkiH
0
119
Member Avatar for Mechanix

I need to create a script that can pull data from an IIS6 log file and separate it out via directory to get page views, hits etc for a small control panel. My server is currently running Urchin, but the only way to tap into this data is my manually …

0
52
Member Avatar for erpasoleh
Member Avatar for Hellodear
0
84
Member Avatar for cancer10

Hi, I am using CDONTs for sending email using ASP. I need to send a HTML form that takes values from a MS SQL Server database. How do I send this big code of form using ASP? I am using the following code to send the email [CODE]<% Set myMail=CreateObject("CDO.Message") …

Member Avatar for Baradaran
0
181
Member Avatar for nekesa

Here is a pretty standard Verify script which searches through a database for specific records and sends the user to the next page if the record is found. The problem the script seems to be unable to find certain records (6 our of 28 in this case). I have tried …

Member Avatar for nekesa
0
195
Member Avatar for Goitse

I am developing a system that has to connect the website to the database. I have started designing the site and I need to connect it to the database and have options of creating new members, updating new records and deleting some records. If anyone has some solutions to the …

Member Avatar for Goitse
0
84
Member Avatar for Goitse

Here is the Code that you required CampKev <% Dim Conn Dim sSQL Dim rsPeople Set Conn = CreateObject("ADODB.Connection") Set rsPeople = CreateObject("ADODB.Recordset") Conn.Open "addresses" sSQL = "select Person_Id, First_Name, Last_Name, Phone_Number from Persons " rsPeople.Open sSQL, Conn %> <html> <head> <title>Connecting TO The Database</title> </head> <body bgcolor = "#FFFFFF"> …

Member Avatar for campkev
0
119
Member Avatar for quicknk

For some reason I keep getting the following error: [code=asp] error '80020009' Exception occurred. [/code] It applies to the line of code: [code=asp] If (cInt(objRS("User_ID")) = Cookie_ID) Then [/code] for some reason it freaks out with "cInt(objRS("User_ID"))" when it runs through the db to find a User ID that matches …

Member Avatar for quicknk
0
210
Member Avatar for cancer10

Hello, I am using ASP and MS SQL Sever 2000 as backend database.. I am writing a SQL query which will pick up top 5 recipes details who have scored the highest marks from the following table tblrecipes - [code] ID | recipe_name | Total [/code] [u]The following points to …

Member Avatar for msaqib
0
128
Member Avatar for iceghost

Hello Im sorry to ask such a basic question - but I am doing some development work in ASP and need to know where I can find a reference library of standard functions for string handling and Date functions. A complete library would be really great. The next question is …

Member Avatar for iceghost
0
99
Member Avatar for edmicman

I'm working in VBScript and want to sort a multidimensional array on two of the columns in it. I've got a function (based on TONS of examples around the Net) that is sorting on one column, but I can't seem to get how to then do a second column. I'm …

Member Avatar for edmicman
0
381
Member Avatar for nekesa

I'm using this code to place Time\Date stamps in specific Access Columns: [code=asp] Dim conn,strsql,sql_update,ssn,cps,hdDate,TOD,PageDate,h h=hour(now()) ssn = "Select SSN From CWCT07 where SSN = '" & Request.Form("SSN") & "'" If _ (Request.form("PageDate")) = "1/30/2007" And "h" < "12" _ Then _ sql_update = "Update CWCT07 Set Jan30AM = '" …

Member Avatar for campkev
0
111
Member Avatar for RinaM

We had recently upgraded our IIS 5 to IIS 6 version for better performance of our ASP based portal. After the upgrade we have been facing a strange issue with the portal. When we click the back button of the browser it displays “web page expired” instead of showing the …

0
56
Member Avatar for iceghost

here is the asp code: [Response.Redirect("[URL]http://www.yahoo.com[/URL]")] what i am trying to do is loop through my database and send variables through a querystring to the same target address. but if my code redirects to the target url it will stop at the first record before it gets to the next. …

Member Avatar for Cyber-SEO
0
93
Member Avatar for nekesa

Have gotten the select statement and Update statement to work separatly, but need them to work on the same page and cannot seem to make it happen. Here is the current state of things. Any help would be appreciated. [code=asp] <% Dim conn,rs,strsql,sql_update,ssn,cps strsql = "Select SSN From CWCT07 where …

Member Avatar for noman78
0
92
Member Avatar for k_en

I have a problem creating a ODBC connection. I am using MS SQL server 2000. Local access. I create it in System DSN. 1. I select the "With SQL Server authentication using a login ID and password entered by the user rather than Windows NT. But the error message occur …

Member Avatar for noman78
0
168
Member Avatar for nekesa

I hope someone can help me decide what is happening with this. It recognizes and carries out the select statement, will redirect to the proper place if entry is valid/invalid, but will not insert anything into the database. I first wanted an timestamp but am trying to troubleshoot backwards and …

Member Avatar for noman78
0
103
Member Avatar for cancer10

Hello All, I am using an ASP script on my site that reads a microsoft excel file and adds the values to the database (MS SQL Server). The script works completely fine on my LOCAL server, but it shows me the following error when I upload it to the server …

Member Avatar for katarey
0
59
Member Avatar for christine_wmw

Hi,I use Response.ContentType = "application/vnd.ms-excel" in ASP in order to print out all my records in excel file. My problem is how to make the excel file auto continue to print the data to next new worksheet if the records is more than 65536 rows (every worksheet only limit to …

0
63
Member Avatar for nephros

I need to complete a task, although I am not quite sure how? The task is to create a very unusual search system for a car rental site. There is a database of cars that the rental company possesses, and when the user specifies the rental dates - the list …

Member Avatar for nephros
0
102

The End.