Some instructions for. aspx files,. aspx.cs files, and. Aspx.designer.cs. aspx files: (page) write page code. The page design code is stored. Just put the code for each control, and the processing code is generally placed in the. cs file.. aspx.cs File: (Code-behind page) write class code. The program code is stored. Typically, you store queries related to database connections and databases. Update. Delete operations, as well as actions that occur after each button click.. aspx.designer.cs file: Write the page design code. Typically, the configuration information for a control in a page control is to register a control page. This is a code file generated by the form designer that performs initialization work on the controls on the form. <%@ page language= "C #" autoeventwireup= "true" codebehind= "document.aspx.cs&quo
1. About Aspx.designer.cs
Introduction:. aspx file: (page) write page code. The page design code is stored. Just put the code for each control, and the processing code is generally placed in the. cs file.. aspx.cs File: (Code-behind page) write class code. The program code is stored. Typically, you store queries related to database connections and databases. Update. Delete operations, as well as actions that occur after each button click.. aspx.designer.cs file: Write the page design code. Typically, the configuration information for a control in a page control is to register a control page. This is a code file generated by the form designer that acts on the control on the form
2. Summary of common ASP. NET Tips
Introduction: vs2005 Common shortcut key debugging shortcut F6: Build Solution Ctrl+f6: Build the current project F7: View Code shift+f7: View the form designer F5: Start Debugging Ctrl+f5: Start (not debug) Shift+f5: Stop Debugging Ctrl + Shift+f5: Restart Debug F9: Toggle Breakpoint Ctrl+f9: Enable/Stop breakpoint CTRL+SHIFT+F9: Remove all Breakpoints F10: Step by step CTRL+F10
3. C # Introduction to Implementing a simple form designer using DesignSurface (graphic)
Introduction: This article mainly introduces the use of C # DesignSurface How to implement a simple form designer of the relevant information, text and sample code through the introduction of a very detailed, for everyone has a certain reference value, the need for friends below to learn together.