how to open an aspx type file on android?

  • Thread starter Thread starter Android Central Question
  • Start date Start date
You don't as far as I'm aware. It requires the ASP.NET framework which is I don't think is available for Android. Without that framework, you can't open it.
 
An aspx file is usually a text file with tags - you should be able to read it in a text editor. (You won't understand it, but you can read it.)
 
ASPX files are server-side code. The server will generate HTML or other client-side files.
The files themselves are text-based code, which you can open in any text editor. Some text editors that are designed for programmers will even color-code the syntax for you.
Running the ASPX files on Android would require some type of interpreter that can mimic Microsoft's ASP.NET framework, which you will probably not find.