HTML Scripting on blocking an auto download?

  • Thread starter Thread starter Jake
  • Start date Start date
J

Jake

Guest
I'm making a program in html, but when I write it, it connects to a site (as its supposed to) and tries to automatically download a file from the server (a Java Server Packet file [.jsp]). Is there anyway I can code this program so it does NOT download the JSP but continues to view the site? Is there a html script that can block a auto download off a server?
 
Okay, step back for a second.

First of all: HTML is not a programming or scripting language. It's used to create web pages, not programs.

Next: JSP stands for Java Server Pages, not Packet. JSP is a way of creating dynamic web pages; they generate HTML output based on Java code and custom tags.

Finally: If your web browser is trying to download a JSP, then something on the web server is not configured properly. It has nothing to do with your HTML file.
 
Back
Top