Hi
This code below gives at the end label1 = "via jv". I was expecting label1 = "via code".
So why is it "via jv"? I thought the order of execution was:
1) aspx file with javascript => "via jv"
2) code-behind.=> "via code"
Thanks
protected void Page_Load(object sender, EventArgs e)
{
Label1.Text = "via code";
}
Sachin SinghPosted Aug 8, 2022, 2:52 PM
Valerie MeunierPosted Aug 11, 2022, 8:46 AM
Valerie MeunierPosted Aug 8, 2022, 12:46 PM
protected void Page_Load(object sender, EventArgs e)
{
Label1.Text = "via code";
}
Sachin SinghPosted Aug 7, 2022, 3:17 PM