What is the extension of a web user control file?
-
.asmx
-
.asp
-
.aspx
-
.ascx
ASP.NET user controls use the .ascx file extension, which distinguishes them from regular .aspx pages and other web file types. User controls are reusable components that can be embedded across multiple pages. The .asmx extension is for web services, .asp is for classic ASP, and .aspx is for standard ASP.NET pages.
ASP.NET Web User Controls use the .ascx file extension (paired with a markup file and code-behind), distinguishing them from full pages. .aspx is the extension for regular ASP.NET Web Forms pages, .asmx is for classic ASP.NET Web Services, and .asp is the older classic ASP (pre-.NET) page extension. Since the question specifically asks about a user control file, .ascx is the correct and standard answer.