ASP Classic simple image upload [closed] - ms-access

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Closed 9 years ago.
Questions asking for code must demonstrate a minimal understanding of the problem being solved. Include attempted solutions, why they didn't work, and the expected results. See also: Stack Overflow question checklist
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Improve this question
I need to be able to upload images to a folder on a server using Asp classic and then enter its location into a database.
Everything Ive found has been pages and pages of code that I dont understand.
Does anyone know anywhere there is a tutorial on simple uploads?
thanks

If you're talking about the freeaspupload class file then you don't need to understand it, you just upload it to your server as is, include it with the include file directive where relevant, then follow the instructions here.
http://www.freeaspupload.net/freeaspupload/documentation.asp.
This question may also help
How to Insert Record and Upload file using the FreeASPUpload Script
Alternatively, look at paid for third party components like Persits ASP upload.

Related

Tool to check for unused CSS [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a book, tool, software library, tutorial or other off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 8 years ago.
Improve this question
Is there a tool to check for unused CSS tags in a CSS file?
The reason I am asking is that I have a lot of old/unused tags in my CSS file. I have a website I have been running for a while and have updated the pages many time, so old CSS tags remains there.
I would like a tool that check for all tags found ina page and cross check with the one in CSS file, and let me know all tags that were unused so I could simply delete them from my CSS file to make it smaller.
You can use chrome developer tools,refer following.
http://www.labnol.org/internet/remove-unused-css/28635/
You can use this node.js tool to find unused css: http://davidwalsh.name/uncss for tutorial or https://github.com/giakki/uncss for github

A program to edit html/css website? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
I'm looking to edit a simple html/css template into something that I want.
My only problem is that I'm not good enough with html/css to be able to layout everything fine regardless of the screen size and browser.
So I was wondering what is a good program which can help he edit this html.
I was thinking something that kind of takes the html and css as input and I can just delete certain elements or add things and it automatically creates the correct html for it.
Any Suggestions?
(I don't mind if its paid or free)
Dreamweaver is good.
You could also use Firebug in Firefox and see what the html does and delete the html from a simple html editor program.

How to show users the code of a website? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
I am trying to make a series of projects where I have users edit content of a website, but I'd like to show them the code that's being edited in real time. Similar to jsFiddle, or more similar to the way you can edit code in Tumblr themes. However, I don't want them to be able to edit any of the code, just see it.
Any ideas, tools, languages, etc, I could use for this?
Thank you!
Found an interesting way to do it, by pushing the HTML into a TextArea element, the entities will automatically be decoded:
var escape = document.createElement('textarea');
function escapeHTML(html) {
escape.innerHTML = html;
return escape.innerHTML;
}
document.write(escapeHTML('<html>'+document.documentElement.innerHTML+'</html>'));
http://jsfiddle.net/n25tD/
You may also find the contenteditable attribute interesting for teaching them.

What program can create this? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Closed 8 years ago.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Questions asking for code must demonstrate a minimal understanding of the problem being solved. Include attempted solutions, why they didn't work, and the expected results. See also: Stack Overflow question checklist
Improve this question
Hello I want to know what program can create something like this?
Business cards editor
I already tried searching in google but couldn't find nothing or dind't know how to search for it. Any help would be appreciated.
I AM NOT TRYING TO STEAL CODE OR COPY AND PASTE CODE. HAD SOME NEGATIVE VOTES EARLIER FOR ASKING FOR SOME TUTORIALS. PLEASE I JUST NEED SOME HELP
I came to this website to ask because didn't know where else to go thank you.
Right click on the application in the browser you'll see it's written with adobe flash

Good tool/software package for simple web design [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 8 years ago.
Improve this question
I am a server-side java developer without experience (nor much interest to be honest) in web design (basics on html and css only). However, I need to build a website as part of my work.
Ideally, I would like a tool with similar functionalities as http://www.jimdo.com, but with the possibility of geting the generated html files and deploy them anywhere.
I have tried Kompozer and Dreamweaver but I would like something simpler.
Any ideas ?
You could try BlueGriffon ( http://bluegriffon.org/ ) which is open source and works ok.
But in my opinion it's not going to be simpler than just using the basic skills you have and putting together a plain layout based on html tables.