Posts by Alexandre • 53 points
3 posts
-
1
votes1
answer1442
viewsA: How to use dynamically created button event to redirect to another ASP.NET page?
Events are called after Page_load, so the solution was in the event of adding the buttons put a Response.Redirect() to the same page in the event that adds the dynamic buttons. protected void…
-
1
votes1
answer1442
viewsQ: How to use dynamically created button event to redirect to another ASP.NET page?
I’m trying to call the event the buttons that were created dynamically with a foreach public void adicionarComanda() { List<Comanda> lc = ControllerComanda.getComanda(); foreach (Comanda…
-
3
votes1
answer1017
viewsQ: How to display an ASP HTML code on a Label by sending by Code-Behind(C#) - ASP.NET
I’m having a problem, I did several tests where I wanted to send directly from a C# method an HTML code to a label, where it would display dynamically the code on the screen. But when I tell her to,…