I used something very similar too this asp,
http://cwashington.netreach.net/depo/view.asp?Index=463
code with IIS 6.0 and it worked quite well, the download zip is at,
http://cwashington.netreach.net/downloads/scripts/component/upload_files_to_iis_web_server_via_browser.zip
It's worth a try.
If you're going to keep the images you should consider updating to JPEG2000, although it's not yet widely supported by web browsers :-( , still something to think about.
http://www.jpeg2000info.com
http://en.wikipedia.org/wiki/JPEG_2000
Why would it ?
it will replace the amount of "*n*"'s each time, if you enter "http://www.eastman.ucl.ac.uk/guide/*n**n**n**n*.gif" in the text input you'll see.
Hi All,
I'm trying to find out how I need to set up my IIS(6.0) to run two domains (different site contents on each) from one server (win 2003), I thought I was about to get the answer here,
http://www.windowsitpro.com/Articles/Index.cfm?ArticleID=21871
but then I was faced with "Subscribe...
Thanks, Feherke
you were right about the onload I should have tested it properly really, the problem was in the function its self.
I took the function out of the external js to make it easier to test as I don't yet have a link.
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"...
Hi, All
I'm going through the painstaking process of validating my pages, all was going (surprisingly) well untill I came to adding,
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
(working backwards with FF 1.5.0.2 extension "Html...
needs to be asked in the javascript forum but,
<a href="javascript:window.close()">Close</a>
if by "the on call schedule" you mean onclick event then,
<a href="#" onclick="window.close()">Close</a>
or, if that gives you a confirm message use,
<a href="#"...
if you're not using the full url remove the plus sign,
function ask(person){
window.open(+person, "askwin","scrollbars=no, height=250, width=250");
}
so it's
function ask(person){
window.open(person, "askwin","scrollbars=no, height=250, width=250");
}
failing that check all the...
No, it "should" work with either the apostrophe or double quotes. Do you have a pop-up blocker ?, are you running XP service pack 2 ?, if you copy and paste then save and test the following code do you get the alert message ?,
<script type="text/javascript">
function ask(person){...
Did you try putting the full url for your popup ?
<script type="text/javascript">
function ask(person){
var win=window.open("http://www.google.com/txt-"+person+".html", "askwin","scrollbars=no, height=250, width=250");
}
</script>
<a href="javascript:ask('john')">John</a><br />
<a...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.