Popular searches

Searching for asp shopping cart



  • ASP Shopping carts
    chnique. Anyway, I did some research and thought I could as well post it here. Available at a separate subdomain not to clutter this site any more. asp shopping cart comparison
  • Implementation step 3
    ALL ARTICLES IN THIS SERIE Step 1 Step 2 Step 3 Step 4 (download) The download solution will look like this: I have tried to keep it as clean and simple - but still wanted to keep some sort of structure and object hierarchy which will ease your own implementation...
  • 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 sc...
  • Creating a simple paypal shop
    ALL ARTICLES IN THIS SERIE Step 1 Step 2 Step 3 Step 4 (download) There are hundreds (???) of examples on how to create a Paypal shop with ASP.NET so why should I write an article myself? Because ny solution fills a void. This solution will let you - create a sh...
  • Simple paypal shop part 2
    ALL ARTICLES IN THIS SERIE Step 1 Step 2 Step 3 Step 4 (download) Now when clicking on the "Click here to place your order" button we are taken to a new page - shopcheckout.aspx: Doesn't seem to do much but it is vital - I will explain more later. However - you w...
  • JQuery and ASP.NET - lets involve ASP.NET
    In this example we create a table - and a span When clicked on the span an Ajax request shold be made - from the serverside the current minute should be returned - and the the current minute is label should be updated: Really easy and it's pretty much like the first Ajax example...
  • ASP domain part from an URL
    <% Function DomainFromUrl ( sText ) ' Dim nIndex If LCase ( Left ( sText , 7 ) ) = "http://" Then sText = Mid ( sText , 8 ) End If If LCase ( Left ( sText , 8 ) ) = "https://" ...
  • ASP.NET and Ajax urlrewriting
    You might have read this article on Url rewriting and while Scotts smk:form did work at that time - I couldn't get it to work after installing VS2005 SP1. No idea why, but I decided it was time to look further. I have now started converting old apps to use Urlrewriting.net ...
  • aspECard is profiting on my script PostcardMentor
    It happens every now and then. Someone takes my free script(s) and then changes some layout, add a few things and then tries to sell it. The last one in the row is maine-net.com which with no doubt has used my TopsiteMentor and PostcardMentor. I will for now just lay out the evidence for Postca...
  • Step 3 - page2.aspx
    In this page we are using two controls (just to show you it's possible). <%@ Page Language="C#" MasterPageFile="~/MasterPage.master" AutoEventWireup="true" CodeFile="page2.aspx.cs" Inherits="page2" Title="Untitled Page" %> <%@ Register TagPrefix="headermanager" Namespace="ASPCodeHeaderM...
  • Sending mail from ASP application
    You know the problem... You download a piece of ASP sourcecode which includes some sort of sending email functionality, it might be a recommend-a-page script, forum etc: - you will now need to get it to work with the email component you are using - cause it is not the same as the developer used... ...
  • How Ajax for ASP.NET updatepanels work
    I will now try to show you the different types of updates you can do - cause there is indeed a plethora of them and the variations really got me confused today. I started working on this sample http://ajax.asp.net/docs/mref/M_System_Web_UI_ScriptManager_RegisterAsyncPostBackControl_1...
  • Step 2 - page1.aspx
    Now lets look at page1.aspx <%@ Page Language="C#" MasterPageFile="~/MasterPage.master" AutoEventWireup="true" CodeFile="page1.aspx.cs" Inherits="page1" Title="Page 1" %> <%@ Register TagPrefix="headermanager" Namespace="ASPCodeHeaderManager" Assembly="ASPCodeHeaderManager" %>
  • ASP.NET and JQuery - updating templated controls with AJAH
    Continuing our serie on JQuery and ASP.NET we are now gonna create an interface looking like this: When selecting a filter we want to spawn an Ajax request and update only the table part of the interface: So far we have used ASHX handlers and returned JSON structures cont...
  • ASP.NET name mangling problem with JavaScript
    One "problem" with ASP.NET is the automatic generation of names for form variables. Sure it is convinient - and more or less a must when it comes to templated databound server controls to be able to separate the different client side controls. And it works beatifully as long...
  • Our free ASP.NET server controls
    I needed to create this page as a shortcut for you all to find my free controls. Site content is growing at an incredible speed, so some sort of extra structuring is needed. Free ASP.NET server controls     ASP.NET Thumbshots Not an actual control, but a ha...
  • ASPMail ( SMTPsvg.Mailer )
    Function SendEmail( sEmailServer, sFromEmail, sToEmail, sSubject, sText )    Dim objMail    set objMail = server.createobject("SMTPsvg.Mailer")    objMail.FromName = sFromEmail    objMail.FromAddress = sFromEmail    objMail.RemoteHost = sEmailServer...
  • ASP.NET repeater control - databind with style
    If I had to name *one* single control as my favorite ASP.NET server control, it would most probably be the asp:repeater . When I started ASP.NET programming the datagrid was my best friend - or I wanted it to be - I tried in every way to use it whereever possible. I even used the inline ed...
  • Your first ASP.NET script with Ajax
    This is just a very basic example on how to deliver Ajax functionality from your ASP.NET applications. The downloadable solution contains two code files - but lets start with looking at the screenshots: The idea is we should be able to just click the "Refresh time belo...
  • Creating an RSS feed for your ASP.NET site
    How useful a RSS feed actually is is hard for me to say something about, I personally have a hard time understanding the buzz about blogs (why should that be better than a regular website). While the content people present in blogs might be really good - I just love Scott Guthries blog...
  • ASP.NET 301 redirect
    When moving your pages from one place to another it is very tempting to handle old inlinks by creating a simple Response.Redirect( sNewPage, true ); This sure will work, but this type of redirect is a 302 and is meant for temporary relocations of pages. But your pages are permanentl...
  • Buy license of PicMentor now
    SOFTWARE Product ID Price BUY PicMentor Single Site License PMSS1 $49 Add to cart ...
  • ASPEmail
    Function SendEmail( sEmailServer, sFromEmail, sToEmail, sSubject, sText )    Dim objMail    Set objMail = CreateObject("Persits.MailSender")    objMail.From = sFromEmail    objMail.Host = sEmailServer    objMail.AddAddress sToEmail    obj...
  • Creating an ASHX handler in ASP.NET
    Today a typical web application is not only about serving HTML to browsers, but also serving XML and other types of content. Say you are creating a RSS feed for your site, for example. RSS should be presented as XML and I will cover that specific case in another article (will be available in rela...
  • Timed Ajax calls with JQuery and ASP.NET
    This article is part of an article serie - please start by reading ASP.NET and JQuery - first example , JQuery and ASP.NET - lets involve ASP.NET   and Ajax loading animation with JQuery and ASP.NET . Now this is an exact port of the case we solved using Ajax.NET in thi...
  • JQuery and ASP.NET - returning classes with JSON
    This article is part of an article serie - please start by reading ASP.NET and JQuery - first example , JQuery and ASP.NET - lets involve ASP.NET   and Ajax loading animation with JQuery and ASP.NET   and Timed Ajax calls with JQuery and ASP.NET . Now we are gonn...
  • Master pages in ASP - free template engine
    We are here gonna create a three page website - all pages should use a "template" for layout. This will enable us to easily keep a consistent layout for all our pages and also, it sure brings  structure to your code. I have used this technique for 5 years or so, one lar...
  • Dynamically select CSS in ASP.NET
    By setting a control in your ASPX page  to runat="server" you make the control available to serverside modifications. While you most often use it for pure asp.net server controls, such as <asp:TextBox ...>, <asp:Label ...> etc you can in fact use it for other elemen...
  • asp:repeater and css table gallery
    Ever seen CSS Table Gallery before? Just found it yesterday and since I am pretty useless when it comes to design I bookmarked it in a hurry and then found that this is also the perfect reason as to why you shouldn't use asp.net dataview or datagrid for table rendering. Use repeaters ...
  • asp:repeater and css gallery - adding hovering and odd rows
    This article begins here . Odd rows in another color Easy enough. We just change the alternatingitemtemplate to include a CSS class:
  • Suckerfish menu with ASP.NET and JQuery
    This time I am giving you the ASP.NET code for creating a Suckerfish menu in ASP.NET. I really like the multiple level/hover shows next level type of menus like in these screenshots:       I keep trying to push for JQuery - not only is it small, wellwritten, MIT licen...
  • Old ASP application fixed and quick shortcuts
    I have now fixed up the download links for my old free ASP scripts. Sorry about the trouble and I do agree it wasn't too smart going on vacation the very days after a new site release, but hey, it's just a website nothing more right :) PostcardMentor http://www.aspcode.net/Download-latest-vers...
  • JQuery tree viewer in ASP.NET
    Here's a ASP.NET and JQuery based tree viewer example. I'm using Jörn Zaefferers treeview for the javascript tree rendering for the simple reason it's completely unobtrousive. You mark the tree up by regular ul/li structure - meaning if someone doesn't have Javascript activated (say a search en...
  • Use NetSpell in your ASP.NET 2.0 application
    This simple beginners tutorial will show you how to start using the free spellchecking component NetSpell from Loresoft from within your ASP.NET 2.0 application. When you download it http://sourceforge.net/projects/netspell/ you will see there is a full featured ASP.NET forms examp...
  • ASPCode.net.History released
    The need for a history plugin for my own Ajax paging problems in Microsoft Ajax made me create this plugin. It's best described in another article, so instead of just repeating myself http://www.aspcode.net/articles/l_en-US/t_default/ASP.NET/ASP.NET-2.0/Ajax/ASP.NET-AJAX-formally...
  • ASPCode.net.Cookie released
    This library (or plugin or whatever it should be called) extends Microsoft Ajax by offering easy client side support for cookies. Not much to say about it - the code to use it in your project looks like this:
  • Simple ASP.NET SOA architecture
    Overview Here we will create a ASP.NET driven application providing a domainname to ip service for a Windows client application. Foreword Ok, here I will get into a "hot" concept - SOA - but to be honest - I don't care about the names and terminology - I just wanted a so...
  • 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...
  • Using ASP scripts from HTM pages
    1. What does he mean? Well I guess that's what you must be asking yourself - and I really have to agree the title looks kind of cryptic. I understand I'd better motivate you to keep reading, so I do my best: Imagine you have this site and you have a Latest news-function where news headlines are ...
  • Including WebResource in ASP.NET server control
    Embedding resources (such as images, javascript, stylesheet information) into your server control makes it a lot easier for redistribution - and reusing the control in other projects is indeed the reason as why to create a control at all. This example will show you how to embed a javascript ...
  • A watermark texbox with JQuery and asp.net
    Finally I have managed to fix the search box here at aspcode.net. I upgraded CMS, changed the layout and everything but didn't manage to get everything up and running before by summer vacation. Anyway - have you tried the search box? It is one of those  watermark textboxes  - me...
  • 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 del...
  • Using thumbshots.org in ASP.NET and C# - part 2
    Please start reading this from the beginning Part 2 - we continue our development of the thumbshots.org cache handler: Our img src will point to: img src="thumbshot.ashx?u=www.yoursite.com" and lets start with looking at the handler code: public void Proce...
  • Sorting .NET 2.0 collection
    Please start by reading Part 1 Now lets add sorting. We want typesafe sorting just like in the . NET 1.x solution . So while someone smarter than me probably could whip up a solution using generics more to the extreme, my solution for sorting my collections in .NET 2.0 uses the same...
  • What is this?
    You know the problem... You download a piece of ASP sourcecode which includes some sort of sending email functionality, it might be a recommend-a-page script, forum etc: - you will now need to get it to work with the email component you are using - cause it is not the same as the developer used...&...
  • Simple RSS reader class
    Being able to read RSS feeds are becoming more and more important today, even for website publishers.  Here's a very simple (ASP.NET 2.0) example - but the class and code could easily be used in .NET 1.1 as well. The top of our default.aspx looks like this when running: Af...
  • .NET 2.0 Collections with generics - the basics
    I just created a simple tutorial on creating typesafe collections and adding (typesafe) sorting capabilities to it in .NET 1.x  - now the time has come to .NET 2.0. Some of the reasons at all for creating custom collections (instead of just using an ArrayList for example) are type s...
  • Configuration
    How to get it to work? 1. When you have downloaded it you will get eight files. 2. Place them in a suitable subdirectory, maybe /stats. 3. Have all your ASP pages include incstat.asp like this: <!--#include virtual="/stats/incstats.asp"-->  4. And have ...
  • Uploading files
    While this article is placed in the upload subsection, it might not be the best place for ot. Because it's not a regular "how-to-upload- files-with-ASP.NET" article. I might write such an article in the future but this is dealning with a problem you might encounter when using some sort of template...
  • Using thumbshots.org with ASP.NET and C# part 1
    Ever heard of thumbshots.org  ? They offer a (free) service letting you retrieve thumbnail images from websites and webpages for use in your own web pages. Pretty cool and so easy to use: In short - you just point your images to their handler and add your specific url at...
Searching for asp shopping cart