| |
Top online bingo site Jackpotjoy has won eGaming's Bingo Operator of the Year award. |
| |
|
| |
| |
The launch of a brand new online bingo site this week brought with it the promise of a site 'by bingo lovers, for bingo lovers'. |
| |
|
| |
| |
Leading online bingo site Jackpotjoy gave away its biggest ever jackpot when Stephen J from Northumberland collected £99, 342 on Sunday. |
| |
|
| |
| |
Leading online bingo site Think Bingo boosted its reputation for giving away big prizes this week when one player landed a £1,245.97 jackpot on Monday. |
| |
|
| |
| |
Prestigious online bingo site Blackpool Bingo is inviting its players to earn fantastic bingo bonuses by joining an exclusive poker club. |
| |
|
| |
| |
This past Thursday the ASP.NET MVC feature team published a new "Preview 5" release of the ASP.NET MVC framework. You can download the new release here. This "Preview 5" release works with both .NET 3.5 and the recently released .NET 3.5 SP1. It can also now be used with both Visual Studio 2008 as well as (the free) Visual Web Developer 2008 Express SP1 edition (which now supports both class library and web application projects). Preview 5 includes a bunch of new features and refinements (these build on the additions in "Preview 4"). You can read detailed "Preview 5" release notes that cover changes/additions here. In this blog post I'm going to cover one of the biggest areas of focus with this release: form posting scenarios. You can download a completed version of the application I'll build below here. Basic Form Post with a Web MVC Pattern Let's look at a simple form post scenario - adding a new product to a products database: The page above is returned when a user navigates to the "/Products/Create" URL in our application. The HTML form markup for this page looks like below: The markup above is standard HTML. We have two <input type="text"/> textboxes within a <form> element. We then have an HTML submit button at the bottom of the form. When pressed it will cause the form it is nested within to post the form inputs to the server. The form will post the contents to |