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



You ve defined one page_load event in aspx page and same page_load event in code behind how will pr..

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 ?    17 Yes 0 No

You ve defined one page_load event in aspx page and same page_load event in code behind how will pr..

Answer / vijaykumar

The Page_load method in the aspx page will only run.

Is This Answer Correct ?    11 Yes 1 No

You ve defined one page_load event in aspx page and same page_load event in code behind how will pr..

Answer / sudhir sheoran

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

You ve defined one page_load event in aspx page and same page_load event in code behind how will pr..

Answer / arun

page load of aspx will run first 

Is This Answer Correct ?    1 Yes 0 No

You ve defined one page_load event in aspx page and same page_load event in code behind how will pr..

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

You ve defined one page_load event in aspx page and same page_load event in code behind how will pr..

Answer / 6y787y

tu

Is This Answer Correct ?    2 Yes 5 No

Post New Answer

More ASP.NET Interview Questions

When would you set this property to false?

2 Answers  


How will create assesblies at run time?

0 Answers  


Define data caching?

0 Answers  


What is binding in web service ?

1 Answers   TCS,


Why is mvc better than asp.net?

0 Answers  






What is WCF? Pls Explain clearly with exmple.

3 Answers   HCL, iGate,


What are the event handlers that can be included in the Global.asax file?

0 Answers   MindCracker,


In a page u have Web user controls . So what is the order in which the Page life Cycles takes place?

1 Answers  


Name the namespace which is used by ado.net?

0 Answers  


What is the difference between a cookie and a pixel?

0 Answers  


What are the steps involved to fill a dataset?

0 Answers  


what are the events raised in asp.net page life cycle?in which stage view state can be loaded?

0 Answers   EDS,


Categories