ASP.NET can run C# code, so I'm not sure what you are asking. The codebehind of a C# page can access the controls that you have put on the page. You refer to them by the controlid you provided in the control markup (<asp:textbox runat="server" id="txtLastName" />).
-
Peter