494 Topics

Member Avatar for
Member Avatar for pthorsel

I can connect to my SQL database(remote machine) using VBScript and ASP. I now am trying to connect to the same SQL database using VB.NET in the Microsoft Visual Studio .NET 2003 environment. I get the "SQL Server does not exist or access denied" error. I then took my code …

Member Avatar for NetDev
0
87
Member Avatar for Gunapriya

Hi all, I want to display certain messages depending upon the option selected in the combo box. As soon as the option is selected i want the corresponding messages to be displayed. That is I dont want to use submit button. Please let me know how this could be done …

Member Avatar for william_stam
0
149
Member Avatar for aarya

i m getting the error as Error Type: Microsoft VBScript compilation (0x800A0401) Expected end of statement /myweb/updat.asp, line 18, column 181 my code is <% if session("bvuser")="true" then struser=request("usercode") stremail=request("email") strfname=request("fname") strlname=request("lname") straddress=request("address") straddress1=request("address2") straddress2=request("address3") strcity=request("city") strcountry=request("country") strpassword=request("password") struser=session("usercode") dim rsupdat,Conn,sql Set Conn = Server.CreateObject("ADODB.Connection") Conn.Open "Driver={MySql ODBC 3.51 Driver}; …

Member Avatar for aarya
0
310
Member Avatar for goldeagle2005

Hi all, here's a bit of code for a registration page im working on. <%@ Language="VBScript" %> <%reg=Request("reg")%> <% if reg <> 0 then %> <SCRIPT LANGUAGE="JavaScript"> alert("Confirmed. The information has been entered.") </SCRIPT> <% End If Set Con = Server.CreateObject ("ADODB.Connection") Set rs = server.CreateObject ("ADODB.Recordset") Con.Provider="Microsoft.Jet.OLEDB.4.0" Con.Open(Server.MapPath("cesa.mdb")) sql …

Member Avatar for msaqib
0
130
Member Avatar for aarya

i m trying to use mysql database with asp,i m trying to code regsiter.asp. but i m getting the error this is my code <%dim struser,strpass,stremail,strlname,strfname,straddress,straddress1,straddress2,strcity,strcountry,strsql stremail=request.from("email") strfname=request.form("fname") strlname=request.form("lname") straddress=request.form("address") straddress1=request.form("address1") straddress2=request.from("address2") strcity=request.form("city") strcountry=request.from("country") struser=request.form("usercode") strpass=request.form("pass") response.write(user) response.write(pass) ' Open database Dim Conn, RS Set Conn = Server.CreateObject("ADODB.Connection") Conn.Open "Driver={MySql …

Member Avatar for aarya
0
205
Member Avatar for goldeagle2005

Hi, Okay, here's the deal. I've created a project which requires user registration. Now, the registration part works like a dream. However, when I tried implementing an option where the user can update his details, the update isn't working. It says I have an error in my update statement. I'm …

Member Avatar for goldeagle2005
0
89
Member Avatar for goldeagle2005

Hi, For a project of mine, I've implemented user registrations. However, one thing I have NOT implemented is the ability to check if the username requested by a new registration exists in the database. How do I do this? The code for the registration page is as below: (btw, I …

Member Avatar for william_stam
0
134
Member Avatar for samaru

Here's a thread I posted on previous forum regarding the three: I've used PHP, ASP, and ColdFusion, and out of the three, ColdFusion is probably the most fun to play with. Of course, this is a very biased question to begin with. If you ask a C++ programmer what the …

Member Avatar for chrisranjana
0
820
Member Avatar for hoyasaxa

For those of you who have ever had a problem with this, there is a simple solution... You need to re-register Jscript.dll and Vbscript.dll Its very simple-- Click Start, and then click Run--In the open box, type regsvr32 jscript.dll, and then click OK. --Click Start, and then click Run again …

Member Avatar for joowithau
0
183
Member Avatar for Geek-Master

I'm looking for any API's php has that could be used to interact with Windows Server configurations. I know that I could use VBScript or some other Windows based scripting language. I'm basically looking for networking API's.

0
82
Member Avatar for sumeet.leo

[B]Hello, I have over 7+ years of experience in software development. I am software developer looking for freelance or Full Time work, do you have any work that need to done.. buzz me at sumeet.leo @ gmail.com my skill sets: .NET(ASP.NET / C# / VB.NET) VB, ASP (VBScript & Javascript), …

0
97
Member Avatar for wchitamb

<html> <head> <title></title> </head> <body> <% Function NewConn() Set NewConn= Server.CreateObject("ADODB.Connection") NewConn.ConnectionTimeout=100 NewConn.Open "Provider=sqloledb;Data Source=[192.168.160.1];uid=[sa ];pwd=[topland]" NewConn.CommandTimeout=1200 End Function %> </body> </html> I am trying this functions.inc code then use the include ext and i keep on getting this error message Error Type: Active Server Pages, ASP 0126 (0x80004005) The …

Member Avatar for madmital
0
103
Member Avatar for ohgosh

i came across this error and i dont seem to understand what actually cause the error to occur.. Can anyone explain the error if you know or have any idea.. THANKS~ [CODE]Error Type: Microsoft VBScript runtime (0x800A01C9) This key is already associated with an element of this collection [B]Loader.asp, line …

Member Avatar for ohgosh
0
382
Member Avatar for ramareddy_dotne

In my application I allow my user to delete a transaction at extreme cases only so I want to a confirmation msg from user whether he is sure to delete the transaction(Are you sure? yes or no).I know about "confirm" msgbox but I dont know how to use it please …

Member Avatar for Letscode
0
101
Member Avatar for EBHscales

Greetings, I just want to go ahead and say thank you in advance to everybody on these forums. I've been reading and trying to apply all the useful information here to fix my problems myself but I just cant do it alone. Heres my deal: This computer must have been …

Member Avatar for swatkat
0
569
Member Avatar for goldeagle2005

Hi, I've created a password protected website using ASP for a project. However, for authentication, the username and passwords are passed as clear text parameters to the ASP. How can I implement a one way hash mechanism so that the database stores the hashed values of the password, and not …

0
67
Member Avatar for goldeagle2005

Hey all, Heres the code of an ASP I'm working on... ------------------------------------begin ASP------------------------------------- <%@ Language=VBScript%> <% artist=Request("artist") album=Request("album") Set con1 = server.CreateObject ("ADODB.Connection") Set rs1 = server.CreateObject ("ADODB.Recordset") con1.Provider="Microsoft.Jet.OLEDB.4.0" con1.Open (server.MapPath ("\databasecore\mediaguide.mdb")) sql = "UPDATE artistinfo SET UserAlbumReview='"&TRIM(Request.Form("AlbumReview"))&"' where artist ='"&artist&"' and album = '"&album&"'" rs1.Open sql,con1 %> <html> <head> …

Member Avatar for senexom
0
175
Member Avatar for goldeagle2005

I'm having a wee bit of trouble. The code is as below: <%@ Language="VBScript" %> <% AlbumArt=/music/Request.Form("artist")/Request.Form("album")/Folder.jpg %> The values of artist and album are obtained through a form. What I want is that whenever a user submits the form with, say artist as "Dream Theater" and the album as …

Member Avatar for william_stam
0
116
Member Avatar for ikkyusan

Hello.... I currently use a login script to change specfic HKCU values for each user. This is for use of a piece of software which requires unique serial numbers per user. I use 1 script per user & this is increasing daily is it possible to consolodate these scripts into …

0
51
Member Avatar for aarunraaj

Hi, I install IIS in windows 2000 Professional computer for Development purpose. in Administrator the IIS is Working Fine. But when i try to login a user with Power user Privilige means its giving some Problem. Problem is the power user cannot see the Default Wesite in IIS Manager and …

Member Avatar for Paladine
0
240
Member Avatar for aarunraaj

Hi, I install IIS in windows 2000 Professional computer for Development purpose. in Administrator the IIS is Working Fine. But when i try to login a user with Power user Privilige means its giving some Problem. Problem is the power user cannot see the Default Wesite in IIS Manager and …

Member Avatar for Zachery
0
136
Member Avatar for vhinehds

i have this problem some couple of days back...and honestly im just new to ASP so to some maybe my problem is not that big...here it is: im practicing making a web site using ASP and i have on my html two buttons, and inline with that i also used …

Member Avatar for zippee
0
157
Member Avatar for akoloff

this seems to be a very simple problem, but i just can't get it done. how do i set a variable which is to display url response? let's say my request is "http://domain.com/datavalue.htm". the request returns some value ( let's say "30.0" ) when i use it with browser. now, …

Member Avatar for william_stam
0
145
Member Avatar for bluebeen

The data that is entered is creating the error page when I suibmit it ti the db. Can anyone help? :confused: HTTP 500.100 - Internal Server Error - ASP error Internet Information Services -------------------------------------------------------------------------------- Technical Information (for support personnel) Error Type: Microsoft VBScript runtime (0x800A0035) File not found /threecubePlus_IIS/formProcess.asp, line …

Member Avatar for william_stam
0
495
Member Avatar for pomahony

Hi, I have an application (a web browser control within a vb6 form) which shows users their weekly schedule. At the moment they have to input their user id to see the schedule. What I want to do is have their schedules automatically appear according to their network login. I …

Member Avatar for Comatose
0
415
Member Avatar for sham
Member Avatar for OurNation

I looked at my desktop and i say a note pad shortcut with the following An unexpected exception has been detected in native code outside the VM. Unexpected Signal : EXCEPTION_ACCESS_VIOLATION occurred at PC=0x7D535AAE Function name=(N/A) Library=C:\WINNT\System32\mshtml.dll NOTE: We are unable to locate the function name symbol for the error …

Member Avatar for caperjack
0
159
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
129
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
174
Member Avatar for AlexClifford

Hi, I have an ASP.NET page that contains quite a few looping SQL queries. After either loading this page (all.aspx) or doing a few table sorts the page freezes up and just loads for about 20 seconds. Sometimes the page just loads and doesn't show any results when I know …

Member Avatar for michaelsowa
0
88
Member Avatar for red$

:?: :?: Hello, Does anyone know if the new vb.net stuff will allow me to write and test VBScript stuff? I currently use VB6 and was thinking of moving over. It would be nice to have VB.net, even better if it handled VBScript Thanks Red$

0
46
Member Avatar for QKSTechTrainee

Hello - here's my problem - trying to set up a lil bit of code that checks win2k disk quota and warns user if they are approaching their disk space threshold. here's the code - (cut down for simplicity - this version doesnt really do much but should work) Dim …

Member Avatar for TimMunro
1
397
Member Avatar for tzadikem

I have the following page that I created in Dreamweaver 2004 MX, but don't know how to get some form inputs working. So, I have hardcoded them for now. You can see them below right afte the where clause. Can someone please help me create just a simple form that …

0
89
Member Avatar for AlanM

I can not get my form to work. here is the code <% @language="VBSCRIPT" %> <% Dim myMail, myBody myBody ="website title: "& request.form("websitetitle") & vbcrlf & "websiteyurl: " & request.form("websiteurl") & vbcrlf & "websitedesciption: "& vbcrlf & request.form ("websitedes") & vbcrlf & "link: " & request.form("link") & vbcrlf & …

Member Avatar for AlanM
0
148
Member Avatar for margot

I've created a page using the ASP.VBScript server model and have two databases - a 2004 US zip code db w/logitude and latitude stats, and a database of stores with their locations including zip. Does anyone know how to create a store locator using Dreamweaver and these two Access databases? …

Member Avatar for Lafinboy
0
193
Member Avatar for Pradhuman

<%@ Language=VBScript %> <html> <head> <title>Furniture4all.com</title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> <link rel="stylesheet" href="links.css" type="text/css"> </head> <body bgcolor="#800080" text="#FFFFFF" leftmargin="0" topmargin="0"> <% function traceLine(str) traceLine = replace(str, chr(13), "<br>") end function dim con, rs, id, pass, sNo set con= server.CreateObject("ADODB.Connection") set rs = server.CreateObject("ADODB.Recordset") set rs1 = server.CreateObject("ADODB.Recordset") name=session("userName") pass=session("password") con.Open …

Member Avatar for Ral
0
204
Member Avatar for marlongill

I am currently working on a system developed some 3 years ago by a developer who used to work for our company. It is an ASP/DHTML administration system for accident reporting. The main page of the site is written in HTML and consists of a set of forms providing the …

Member Avatar for RobUK
0
96
Member Avatar for jigar_eng

When I run the following ASP email script I get error. I am sending the script and error messege both. Please help me as soon as possible as I am a fresher at ASP scripting. The script:- <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=windows-1252"> <title>New Page 1</title> </head> <body> <% Option …

Member Avatar for RobUK
0
207
Member Avatar for Trustme_007

[COLOR=DarkRed]W2K machine. Trying to cut back on pop-ups and spyware. Have used Ad-aware, Spybot, and CWShredder. This is my hijackthis log. What should be eliminated?[/COLOR] Logfile of HijackThis v1.97.7 Scan saved at 8:07:36 AM, on 7/8/2004 Platform: Windows 2000 SP3 (WinNT 5.00.2195) MSIE: Internet Explorer v6.00 SP1 (6.00.2800.1106) Running processes: …

Member Avatar for crunchie
0
203
Member Avatar for ShizNiz

I want to create a new asp file with another asp file already made using VBScript. Is there anyway I can do that without concatenating every few chars to a writeline function?

Member Avatar for Slade
0
112
Member Avatar for mengDaniWeb

Hi, I'm a newbiew in ASP, but find it very fun. I 'm now designing code for data validation using VBScript at server side, instaead of a javascript client side approach. I use an asp page (asp1) to verify the data validity, and do some additional reformating, meanwhile. ( for …

Member Avatar for DVHost
0
187
Member Avatar for QKSTechTrainee

Apologies if this was easy to find out elsewhere. I am trying to write a small script that can be run on our network by each user, which captures their user login name and uses this to look up in a spreadsheet of all users to provide them with info …

0
66
Member Avatar for bluedos82

I got this message on my computer that was in a *.txt format on my desktop and I have no idea how it got there. Here is what it says: An unexpected exception has been detected in native code outside the VM. Unexpected Signal : EXCEPTION_ACCESS_VIOLATION (0xc0000005) occurred at PC=0x88D7C29 …

Member Avatar for Tatootie
0
232
Member Avatar for Ben Martin

first post! hello all. :) i'm in the process of converting some vbscript into jscript at work, and not being an expert when it comes to any sort of javascript (or c syntax generally) i am now stuck. specifically with the 'switch' statement. the application is a server-side api that …

Member Avatar for Ben Martin
0
291

The End.