I'm using ASP to gernerate an RTF file as the result of a form. But, I need to have an image be at the top of the first page. I'm generating the RTF file from an example that I found on Microsoft.com using statements like below...
I have a website I am working on that I did not create. It is ASP and SQL based. There is a content management system created using ASP and saving in the SQL server database. A user can enter a news article into a big text box/area, and choose to add an image. The text and image are stored in the database via ASP and pulled out to the website via ASP.
The image shows up in the website to the top left of the article. I need to make it so the user can enter an image where their cursor is in the paragraph (like a word document) and have it also show up there on the website. Any ideas?
i created a table and a field with blob datatype. now i want to insert an image into the mysql database.i tried through the insert command but i assume that is not the right way. I gave the path where the picture is stored. but it stores it on the database as a string.
i created a table and a field with blob datatype. now i want to insert an image into the mysql database.
i tried through normal insert command adn realised i cannot do that way.. I want to store some picture in mysql and retrieve it on the web through asp i am unable to find out how to do it.
I AM NOT ABLE TO DISPLAY IMAGES FROM ACCESS DATABASE JUST 11 BLACK IMAGE BOXES OF SIZE 400 X 250 Code:
sql="SELECT [IMAGES] FROM ITEMS" rsAuthors.open sql, cnnNorthWind, 3, 3 %> <%Set rsAuthors = cnnNorthWind.Execute(sql) IF rsAuthors.EOF then 'No records found Response.End ELSE 'Display the contents DO WHILE NOT rsAuthors.EOF 'Response.BinaryWrite(rsAuthors("IMAGES")) %> <img src="image/<%=rsAuthors("IMAGES")%>" height="400" width="250"> <%rsAuthors.MOVENEXT LOOP END IF %>
my form contains two text fields(name, address) and two file field control where user can insert image(photo1 and photo2), i want to insert this data in to ms access when the user submits the form?
this is my code for insert text fields to access data base.but i have no idea about the code for image fields. In my access data base i set photo1 and photo2 as herf (binary data). Code:
I have a form that uploads a file (i'm using Freeaspupload) and I wish to insert the name of the uploaded file into the database. I'm just a little unsure of what code to use from the upload script to insert the name of the file.
<% updatenewssql = "UPDATE news_tbl SET news_image = '" & Upload.UploadedFiles(fileKey).FileName & "' Where news_id = " & Request.Form("news_id") & " " set updatenews = crofts.execute(updatenewssql) %>
I'm trying to make a form that allows the user to select multiple files from their computer, and then INSERTS those file names into an access database using ASP. I also don't want to have a seperate <input = file> tag for each one??? Is this possible?
I would like to split my gui into 3 parts. First 2 row and then at the second row, into 2 column. How do i code so that the button form column 1 can result in the change of page in column 2.
I am making a masters page with delete, update , and insert fuctionality, i am using the insert.asp page with a form to submit the data and insert it in the database by prossesing a seperate page called insert_prosessor that has the Insert Statement to insert the data.
Now i am having trouble with the insert_prosessor as it's ERROR message reads" syntax error in INSERT Statement" I cant find the problem.. Code:
I am trying to create an application feature for an inventory database and I am wondering about the most efficient way to process the updates. Here's the background information: Code:
Can someone please (i dont even know where to start on this as i am completely incapable of file or image functions at the moment) help me do this:
i want to write a script that will copy an image from an internet page, then save it in a folder with the speficied filename. The url link is like this : http://ipaddressort/BufferingImage?ImageAdr=123456.
The image is captured by the webcam, of course I can view it in the browser by typing the url, but I want to save it without any popup window or right click, I want to do it in the script.
I use upload.asp (an open source file) to upload image file to a hosting folder, and save the file name to a field of database (I use mysql). But sometime (not all time) when I upload a new image file, I lost all the old value (old image file name) that saved in the field of database, the file name field in all old record are all changed to NULL, but the new file name is correctly saved into the right place.
Does any body know why it happened? Is it because the upload action or insert action? And "insert into" sentence can change old record value?
Using the HttpRequest object to gather material (potentially from an external server), is it possible to write the response stream into which ever file type is required e.g. I request not just text, but an image - is is possible to write the image to file? Or is this just not possible? I can only find reference to create a text file.
I'm building some dynamic image links based on if the image file exists. How can I check 'if files exists' using asp or javascript? I've messed around some with FileSystemObject but so far no success.
I'm tryin to make a image file uploader. How do I do this in ASP with out the use of any of those components, just pure ASP. If someone has a tutorial, or code or somethin that's pure ASP it would be good to look at.
I have no idea how to browse an image file and then view it, in this case i developed HR application that can browse their own photo and view in the page. but anyone have a script or idea for doing that?