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
What is the difference between visual basic and asp.net?
What are the steps to follow to host a web application on a web server?
Is razor a programming language?
What are the difference between function and stored procedure in .net programming language?
if i wanna deploy my asp.net project to the production server and situation is that i m still not compiled my project i have as-is on my development side now on production server we dont have a visual studio now what kind of settings i need to be to do in webconfig /machine.config file to deploy my project and in iis too....
What is round trip in asp.net?
What’s the difference between asp.net web forms and asp.net mvc?
If we remove web.config or machine.config from the application then, is this application will works?
What is session and cookies in asp.net?
How do I debug an asp.net application that was not written with visual studio.net and that does not use code-behind?
What is data cache in sql server?
What is the difference between web config and machine config files?
How would you get asp.net running in apache web servers? Explain it's limitations.
Explain Areas in MVC?
What does ascx stand for?