Displaying posts categorized under

ASP.NET articles

ASP.NET, MySQL and paging

In this article we will create a simple one page ASP.NET web application, implementing paging using the cool MySQL feature LIMIT and SQL_CALC_FOUND_ROWS.

One of the coolest things about MySQL is some of its non standard features. It might sound like a weird thing to say, but being a web developer I just love the simplicity [...]

ASP.NET Repeater control instead of grid

If you have read some of my articles here at ASPCode.net by now I am sure you know my strive for doing things myself instead of relying on thirdparty controls. For example, I have developed professional ASP.NET solutions almost every day for at least 5 years and still havn’t delivered a single one (well maybe one or two in [...]

ASP.NET search terms to database and listing most popular

Logging search terms your visitors are using at your site can be valuable for you as a webmaster, first of all just knowing what they are looking for at your site but also it can give you a hint if some of your content seems hard to reach by “regular” navigation making people always needing to [...]

Implementation step 4

ALL ARTICLES IN THIS SERIE

Step 1
Step 2
Step 3
Step 4 (download)

But instead we are getting redirected to shopckeckout.aspx. Here’s the secret on how to make the whole shopping cart available to Paypal.
Buy posting multiple form fields (named after a certain scheme) we can send the whole shopping cart to Paypal.:
item_name_1item_number_1amount_1quantity_1
item_name_2item_number_2amount_2quantity_2
etc
So we create those form fields [...]