Contents tagged with Web Forms
-
Posting from ASP.NET WebForms page to another URL
Few days ago I had a case where I needed to make FORM POST from my ASP.NET WebForms page to another external site URL. More specifically, I was working on implementing Simple Payment System (like Amazon, PayPal, MoneyBookers). The operator asks to make FORM POST request to a given URL in their website, sending parameters together with the post which are computed on my application level (access keys, secret keys, signature, return-URL… etc). So, since we are not allowed nesting another form inside the <form runat=”server”> … </form>, which is required because other controls in my ASPX code work on server-side, I thought to inject the HTML and create FORM with method=”POST”.
-
jQuery UI Accordion in ASP.NET WebForms - feed with data from database (Part 2)
In the first part I’ve shown how to implement jQuery UI Accordion in an ASP.NET website in only few steps, without any server-side interaction. We’ve seen how easy is to setup the Accordion and to apply some theme to it.
-
URL Routing in ASP.NET 4.0 Web Forms
As a capability, URL routing was first time introduced in ASP.NET 3.5 SP1. The URL routing is well known in the ASP.NET MVC, but it can be also implemented in ASP.NET Web Forms Framework.