How do you relate an aspx page with its code behind page ?
Answer Posted / bhavani
This is the top line of your export.aspx page.
<%@ Page Language="C#" CodeFile="Export.aspx.cs"
Inherits="Health_Export" %>
--------------------------------------...
this is the class Health_Export in your code behind which
your aspx page is inheriting.
public partial class Health_Export : System.Web.UI.Page
| Is This Answer Correct ? | 10 Yes | 4 No |
Post New Answer View All Answers
Is oauth for authentication or authorization?
How to disable validator control by client side JavaScript?
What is the purpose of master page?
How do you declare static variable? What is its lifetime?
What do you mean by marshalbyref?
How do you open a page in a new window?
What is the adavantage of using ASP.NET routing?
What is the difference between page.registerclientscriptblock and page.registerstartupscript?
What do you mean by authentication?
If 200 is for all successful operation then why do we have 201 response codes?
How do we access view state value of this page in the next page?
How can I configure asp.net applications that are running on a remote machine?
What is a postback in asp net?
What is the difference between localization and globalization?
Describe the Server Control Events of ASP.NET?