I have an asp page created in Dreamweaver with a form that is supposed to write to an Access database. It redirects to a formmail.asp that sends the info to my email. Everything works except the fact that no new info is written/inserted into the database.
I can connect, read, etc, it just doesn't write anything new. I get the email just like I'm supposed to only it has old entries and nothing new. There's nothing new added to the database when I check it. I've tried about everything I can think of. I've checked and double checked that the file can be written to, added all the default users, etc. Moved the file around, recreated the database, etc. I'm using DW 8, Access 2003 and Windows Server 2003. Code:
trying to set up my first windows hosted site with database i have a folder db with my database and i'm using macromedia can i use macromedia to set write permissions for this directory?
For a while I am working with ThumbsPlus ( http://www.cerious.com/ ) as manager for pics. The benefit of the program is that it stores all kind of information in a central Microsoft Database that easily can be manipulated. A thumbnail of the picture is also stored in de MDB as long binary (jpeg format)
I made a small script that extracts all kind of information of the MDB by use of queries and ASP. This works perfect for string/numerical information.
I am wondering if I can also write the stored (jpg)thumbnail to the asp file so that I have a preview of my picture.
Can this be done? What is the syntax?
I tried already:
Response.BinaryWrite BinData
Where BinData is the contents of the Thumbnail field. When I take a look at the MDB table in design view, the DataType of this field is "OLE object", if I open the table, the contents of the field displays "long binary data".....
i am having a problem with ASP not doing the requestion action of Response.Write based on conditions of a code entered on a first page. The codes are below. I made the second page from template of another that yall helped me with and it aint working.. Code:
Was curious if someone could help me out. I'm setting up a website and using Server side includes to make it easier for maintaining. I've got a contact form that will be included on several pages and I need to know from what page the forms is getting posted from. If I can figure out how to pass one value to a hidden field I can use the form as an include instead of hard coding the whole form into each page.
Ideally the value to be passed could be coded into each page then asp could pick it up and insert it into the hidden field. Any one point me in the right direction for accomplishing this. I don't have a clue about asp other than the basic include statement.
May i know isit can use asp to send an automail when customer fill up the registration form. i need to send a automail to his email verify the customer details. is it any free source code to write?
Since ASP server scripts use VBScript by default, does it mean it is redundant to put the following in ASP page? Then when do we need to use this? In client-side VBScript?
I want to be able to write a gif in my ASP app. Not even sure if it is possible with response.write. I want to replace the 'Member Log In' text with XXX.gif, and still have it linked to login.asp....
I am trying to retrieve info from database and display it in the form. The problem I having is when I try to change the info in the form, it is not changing and I don't know why. table.fieldname = payroll
Code:
payroll = rs("payroll") If payroll = "something" Then payroll = "Some Payroll" End If
In the form table: <input type="text" name="payroll" value=<%response.write(payroll)%>>
I want "Some Payroll" to be displayed in the form instead of "Something".
<% username = Session("username") if ("" = username) Then Response.redirect "login.asp" response.Write("Sorry, you are not logged in.") response.End End if %>
How do i write that Sorry, you are not logged in ... to the login.asp?
I've tried using a FSO to write to it directly. I've even managed to write a script for windows scripting host and invoke it from ASP, using standard output redirection (">") to redirect output to a file with no problems.
However, I can't seem to send writes to LPT2: from ASP, even through the other script.
It works perfectly fine if I invoke the WSH script at a command prompt using precisely the same command line, but when I do it from inside an ASP page, I get nothing.
Are there some permissions for the port I have to set or some such? I honestly have no idea how to get it to work.
If it is relevant, LPT2: is a mapped port for a network printer.
Yes, this is related to my previous thread, but I'm down to a much, much more specific problem.
I am trying to check for the final sql statement before passing it to a database. I want to build the statement using user input in three text boxes. However, the sql statement does not give me the right statement. Instead it gives the following message: Error Type: Request object, ASP 0102 (0x80004005) The function expects a string as input. /sailors/loginverification1.asp, line 14 CODE: <% strSQL = "select PeopleNameFirst, PeopleNameLast, PeopleClubCode from People where " & _ "PeopleNameFirst ='" & Request.Form(txtFirstName) & "' AND " & _ "PeopleNameLat ='" & Request.Form(txtLastName) & "' AND " & _ "PeopleClubCode ='" & Request.Form(txtPassword) & "'" Response.Write strSQL %>
Does any one know how I can position the output at certain point? Such as If I want to print "hello" starting at position 50 from the left in the file.
I am creating html string in a component that transforms xml into html. Works o.k. with small html strings, but takes forever to response.write big html strings. Is it possible to speed it up?
I am having trouble trying to output an image using Binary.Write. I have a page which displays a record. One of the fields is an image and I want to display this on the page.
My question is this: Is it possible to use the Binary write command i.e. Binary.Write("MyDatabaseField") on the same page that I want the image displayed on?
If not Is there a way to nest it inside an image tag as follows:
I have a specific access db field that holds visitor website url's and I am currently displaying it onto a page as text but instead I need it to be displayed a clickable hyperlink.
The field datatype within access is set to url but when the entry is written to an asp page it doesn't bring the hyperlink properties with it.
I think I should be enclosing the RS within an <a href=''></a> type tag but can't seem to get it right.
Current code: Response.Write RS ("website") & "<BR><BR>"
1. Files to be browsed 2. Anonymous upload to this directory 3. Allow uploaded files to over-write the existing file
I use the following to create new folders, but all above options are off. Set fs = CreateObject("Scripting.FileSystemObject") set b = fs.CreateFolder(newFolder)
I write classes in php, beans in jsp, what "modularity" does asp have? Can I write classes? Or "com" what can I do? which advantages exist with these paths: classes, com, etc.