Google Groups no longer supports new Usenet posts or subscriptions. Historical content remains viewable.
Dismiss

Javascript help

13 views
Skip to first unread message

John Hayes

unread,
Sep 27, 2004, 9:51:50 AM9/27/04
to
Hi,

I am a complete newbie when it comes to javascript and I need some help. Our
web site creates a text file which I would like the system to ask the user
what to do with, either open, save or cancel. Currently we use the code
below but that only puts it in the browser window and for the text files
that is fine but some of the files are csv and that won't work. If I can't
it to ask me what to do with it, can I force it to open in a new window?

Any and all help, ideas greatly appreciated.

John

<html>

<head>

<link href="/design1.css" type="text/css" rel="stylesheet">

</head>

<body>

<%

String FileName="";

if (request.getParameter("FileName")!=null) {

FileName=request.getParameter("FileName").toString();

}

String ReportName="Report Viewer";

if (request.getParameter("ReportName")!=null) {

ReportName=request.getParameter("ReportName").toString();

}

%>

<%

if (FileName.length()==0) {

%>

<h3>Report Viewer - No report Passed!</h3>

<%

}

else

{

//Got a file name

if (ReportName.length()==0) {

out.println("<h3>Report Viewer</h3>");

}

else {

out.println("<h3>" + ReportName +
"</h3>");

}

%>

[<a href="<%=FileName%>" target="_blank">Printer
Friendly Format</a>]

&nbsp;

[<a href="" onclick='window.print();return false;'
>Print This Page</a>]

<pre>

<jsp:include page="<%=FileName%>"/>

</pre>

<%

}

%>

</body>

</html>


Michael Winter

unread,
Sep 27, 2004, 6:23:32 PM9/27/04
to
On Mon, 27 Sep 2004 13:51:50 GMT, John Hayes <haye...@yahoo.com> wrote:

> I am a complete newbie when it comes to javascript and I need some help.
> Our web site creates a text file which I would like the system to ask
> the user what to do with, either open, save or cancel. Currently we use
> the code below but that only puts it in the browser window and for the
> text files that is fine but some of the files are csv and that won't
> work. If I can't it to ask me what to do with it, can I force it to open
> in a new window?

A potential solution is mentioned in the group FAQ. It might also be a
good thing for you to read as someone new to the language.

<URL:http://jibbering.com/faq/>

[snip]

Good luck,
Mike

--
Michael Winter
Replace ".invalid" with ".uk" to reply by e-mail.

0 new messages