You ve defined one page_load event in aspx page and same
page_load event in code behind how will prog run?
Answers were Sorted based on User's Feedback
Answer / js_m
The Page_load method in the aspx page will only run.It takes
precedence over the one in the code behind.
Is This Answer Correct ? | 18 Yes | 0 No |
Answer / vijaykumar
The Page_load method in the aspx page will only run.
Is This Answer Correct ? | 12 Yes | 1 No |
Page load of aspx will be given preference
e.g:
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default"%>
<script runat="server">
protected void Page_Load(object sender, EventArgs e)
{
Response.Write("Page");
}
</script>
<head runat="server">
<title></title>
</head>
<body>
<form id="form1" runat="server">
<div>
</div>
</form>
</body>
</html>
And in Code Behind:
public partial class _Default : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
Response.Write("Behind");
}
}
SO Page will be shown as output not behind
Is This Answer Correct ? | 2 Yes | 0 No |
Answer / arvind kumar
Hi frnd,
In this case, Page_Load() method of aspx.cs takes precedence
over the Page_Load() method of aspx file.
The code assosicated with Page_Load() of aspx would not run.
Is This Answer Correct ? | 6 Yes | 7 No |
Types of configuration files and their differences ?
How to unit test Web API?
Explain the steps needed to be performed in order to create an animation in xaml?
Tell About Web.config ?
what is Disco?what it will do?
Explain global assembly cache.
What is difference between inproc and outproc?
Suppose, I have 3 pages, Page1.aspx, Page2.aspx, Page3.aspx. All pages are in diff. server. When user req. for a page, Page1.aspx opens Ist & a session established. If user req. for IIn page, second session established. Similarly, 3rd session established if user req. 3rd page. In this scenario, tot. 03 sessions are established. How we can minimize it so that it will work with only one session?
What do you mean by authentication and authorization
To redirect the user to another page which method do we use without performing a round trip to the client?
Explain the Session state management options available with ASP.NET?
Which two new properties are added in asp.net 4.0 page class?