how to open an aspx file
Anyone know what program to use to open an ASPX file?
Anyone know what program to use to open an ASPX file?
JEM1980 wrote:
Anyone know what program to use to open an ASPX file?
The question should be, how did you get it (let's call it "document.aspx") and what did you expect it to be?
As Zyriab said, you can open a real Web Form file (.aspx), which contains HTML markup and similar stuff, with any text editor. It's what you'd do if you got it because you're working on a web page or web site which uses ASP.NET. But, if that's what you were about, then you wouldn't have need to ask.
If you got document.aspx by downloading it from a web page, and you were expecting something else, then chances are that you were served the right file, but something went wrong with code or script which was supposed to tell your browser to make up the correct name. In that case, you don't actually have an .aspx file, but something else; and what you need to do is to change the file name extension aspx.
Change it to what? To a file name extension which reflects the file's content; this will tell the operating system what application to use to open the file. We can't tell you what it should be, because we don't know what document.aspx is supposed to contain. If, for instance, you expected to get a PDF file, change the file name from "document.aspx" to "document.pdf". If you expected a JPEG pic, change aspx to jpg; and so on.
Any web browser should open it.
@Grant Lenahan: Any web browser should open it but only if it's served by a web-server!
@JEM1980: You can open it with any text editor, but you'll only see code in HTML and ASP.
its a "dot net" active web page. .NET is microsoft's development environment/language.
Any web browser should open it.
Often they expand into PDFs if the y download.
Whydo you need it?
Grant
how to open an aspx file