Hi Guys
Does anyone have any idea how to fix the new visual studio 2022 bug?
Explain
When I add more than 2 Buttons regardless
This is the simple code, and remember as I mentioned only happens when I add a third button with click event to the form
//-Default.aspxExport
//-Default.aspx.cs
(Code Behind)
This does not fire when click on the button
protected void btnExportThisScreen_Click(object sender, EventArgs e)
{
//- I even tried redirecting to another site this never fire
Response.Redirect("~/Default.aspx");
}
//-Default.aspx
Export
//-Default.aspx.cs
(Code Behind)
This does not fire when click on the button
protected void btnExportThisScreen_Click(object sender, EventArgs e)
{
//- I even tried redirecting to another site this never fire
Response.Redirect("~/Default.aspx");
}
Your help is much appreciated
Thanks much.