Categories:
Android (1)
Audio (7)
C/C++ (2)
Compression (7)
Database (6)
Document (14)
Email (3)
General (50)
Graphics (17)
Image (8)
Java (1)
Picture (1)
Presentation (7)
Programming (17)
Spreadsheet (11)
Video (8)
Web (13)
Windows (63)
XML (4)
Other Resources:
.ASPX - File Extension for ASP.NET Script Files
What is ASPX? ASPX, short name for ASP.NET Script, is used as the file extension for ASP.NET Script files. .ASPX files are text files that are used to store ASP.NET script source code. See the sample .ASPX file included below.
✍: FYIcenter.com
File Extension: .ASPX
MIME Type: text/plain
File Content: ASP.NET Script
.ASPX files are ASP.NET Script files, that are used to store ASP.NET script source code. Here is a sample .ASPX ASP.NET Script file, viewstate.aspx:
<%@ Register TagPrefix="Acme" TagName="Address" Src="address.ascx" %>
<html>
<script language="C#" runat="server">
void Page_Load(Object Src, EventArgs E ) {
if (!IsPostBack)
ViewState["PanelIndex"] = 0;
}
void Next_Click(Object Src, EventArgs E ) {
String PrevPanelId = "Panel" + ViewState["PanelIndex"].ToString();
ViewState["PanelIndex"] = (int)ViewState["PanelIndex"] + 1;
String PanelId = "Panel" + ViewState["PanelIndex"].ToString();
System.Web.UI.WebControls.Panel p =
(System.Web.UI.WebControls.Panel)FindControl(PanelId);
p.Visible=true;
p = (System.Web.UI.WebControls.Panel)FindControl(PrevPanelId);
p.Visible=false;
}
...
</script>
<body style="font: 10pt verdana">
<h3><font face="Verdana">Using PageState</font></h3>
<form runat="server">
<ASP:Panel id="Panel0" Visible="true" runat="server">
<table width="500" height="200">
<tr>
<td style="padding:10,10,10,10" valign="top">
...
</tr>
</table>
</ASP:Panel>
...
</body>
</html>
.ASPX ASP.NET Script file sample: Click sample.aspx to download.
Since .ASPX files are in text format, you can use Notepad or any text editor to create or modify them. No special software is needed.
For for information on how to use .ASPX ASP.NET Script files, see links below:
2012-10-22, 23425👍, 0💬
Popular Posts:
What is DOT? DOT, short name for Document Template, is used as the file extension for files in Micro...
File extension CLASS is used for Java compiled class files. A CLASS sample file is provided. Free JV...
What is CS? CS, short name for C Sharp, is used as the file extension for C# (C Sharp) files. .CS fi...
What is DOTX? DOTX, short name for Document Template XML, is used as the file extension for files in...
What is WMF or EMF? WMF stands for Windows Metafile. EMF stands for Enhanced Windows Metafile WMF or...