in

Dotnetpanel Forums

Community support forums for DotNetPanel products

Free ASP.Net Shopping Cart Software

Last post 11-18-2007 7:46 AM by SundayBrunch. 24 replies.
Page 1 of 2 (25 items) 1 2 Next >
Sort Posts: Previous Next
  • 08-05-2007 10:48 PM

    Free ASP.Net Shopping Cart Software

    I found a new shopping cart.
    It's free paid. I'm trying to my ecommerce site
    It's very easy to create my site.
    Check it out at www.vevocart.com

  • 08-06-2007 4:29 AM In reply to

    Re: Free ASP.Net Shopping Cart Software

    Looks great and promising. Thank you for sharing this resource. Smile

    Best regards,
    Pavel Tsourbelev, COO
    DotNetPanel Software - professionally developed software for hosting businesses
  • 08-06-2007 2:02 PM In reply to

    • kent
    • Top 25 Contributor
    • Joined on 04-02-2006
    • Timisoara
    • Posts 348

    Re: Free ASP.Net Shopping Cart Software

     

    Yes, the administration part looks very promising.
    Dan Petru, S & M Specialist
    DotNetPanel Software - Professionally developed software for hosting businesses
    http://www.dotnetpanel.com
  • 08-13-2007 1:12 AM In reply to

    Re: Free ASP.Net Shopping Cart Software

     its look preety good

    Thanks

    Shalabh
  • 08-13-2007 4:15 AM In reply to

    Re: Free ASP.Net Shopping Cart Software

    Maybe I should create a App Pack for it ?

    Graham Spratt
    Direct Hosting UK
    W2K3, IIS6, .NET, PHP5, MySQL5
    DotNetPanel Authorized Reseller
  • 08-13-2007 5:05 AM In reply to

    • kent
    • Top 25 Contributor
    • Joined on 04-02-2006
    • Timisoara
    • Posts 348

    Re: Free ASP.Net Shopping Cart Software

    Let's see if they could give some benefits to DotNetPanel Hosters that will include this new app pack in their DNP ES.

    I'll write them an email.

    Dan Petru, S & M Specialist
    DotNetPanel Software - Professionally developed software for hosting businesses
    http://www.dotnetpanel.com
  • 08-15-2007 11:37 PM In reply to

    Re: Free ASP.Net Shopping Cart Software

    hello dotnetpanel members

    This is john from VevoCart.com. It comes to my attention that some of you may find that VevoCart is a userful for those who may wish to start ecommerce.

    We appreciate!!  VevoCart is faily new, we hubmly find that the cart offers essential features to start online business. Also, we keep enhancing VevoCart to be a feasible option for merchants/developers.

    please feel free to contact at http://www.vevocart.com/Contactus.aspx what you would like us to help.

    we 'll see what we can do. Note that, currently, vevocart free version is totally free and can be used in a production.

     have a succussful online business.

    Best Regards,

    john

    vevocart admin

  • 10-08-2007 6:39 AM In reply to

    Re: Free ASP.Net Shopping Cart Software

    Hello all

    This is john. I would like to update you all about a new release.

    Vevocart 2.5 is coming with new enhanced features and with more ready to use languages.

    you can review the full details at

    http://www.vevocart.com/Promotion.aspx

    http://www.vevocart.com/NewsDetails.aspx?NewsID=5

     and finally,we have a reseller program http://www.vevocart.com/Reseller.aspx

     you can earn money from VevoCart!!

    should you may have any questions , please feel free to contact us http://www.vevocart.com/Contactus.aspx 

    Best Regards,
    John

     

  • 10-08-2007 10:37 AM In reply to

    Re: Free ASP.Net Shopping Cart Software

    Hi John,

    Thanks for the update!

    It's always nice to meet people from other product companies! Smile

    Sincerely yours,
    Feodor Fitsner, Director
    DotNetPanel - professionally developed software for hosting businesses
  • 10-08-2007 10:55 AM In reply to

    Re: Free ASP.Net Shopping Cart Software

    Hi Feodor

     it's very nice to hear from you. Hopefully, VevoCart can help some DNP hosters :-)

    perhaps, we can create a App Pack in the near future.

    Best Regards,

    john

  • 10-08-2007 1:24 PM In reply to

    Re: Free ASP.Net Shopping Cart Software

    Great, just let us know if you need help with application pack!

    Sincerely yours,
    Feodor Fitsner, Director
    DotNetPanel - professionally developed software for hosting businesses
  • 10-08-2007 2:10 PM In reply to

    Re: Free ASP.Net Shopping Cart Software

    Nearly finished it
    Graham Spratt
    Direct Hosting UK
    W2K3, IIS6, .NET, PHP5, MySQL5
    DotNetPanel Authorized Reseller
  • 10-09-2007 6:46 AM In reply to

    Re: Free ASP.Net Shopping Cart Software

    Just stuck on the Password Hash and Salt

    I’ve tried to generate it my self but failed using the code below as it’s generating the wrong salt value

     

                            public void GetSettings(InstallationInfo inst)

                            {

     

                                    inst["admin.username"] = txtUsername.Text;

                                       

                                        int saltSize = 18;

                                        string salt = CreateSalt(saltSize);

     

                                        inst["admin.password.salt"] = salt;

                                        inst["admin.password"] = CreatePasswordHash(txtPassword.Text,salt);

     

                                        if (chkCreateSample.Checked)

                                        inst["CreateSample"] = "Yes";

                                       

                            }

     

      private static string CreateSalt(int size)

      {

      // Generate a cryptographic random number using the cryptographic

      // service provider

      RNGCryptoServiceProvider rng = new RNGCryptoServiceProvider();

      byte[] buff = new byte[size];

      rng.GetBytes(buff);

      // Return a Base64 string representation of the random number

      return Convert.ToBase64String(buff);

      }

     

      private static string CreatePasswordHash(string pwd, string salt)

      {

       string saltAndPwd = String.Concat(pwd, salt);

       string hashedPwd =

        FormsAuthentication.HashPasswordForStoringInConfigFile(

        saltAndPwd, "sha1");

     

       return hashedPwd;

      }

     

    Graham Spratt
    Direct Hosting UK
    W2K3, IIS6, .NET, PHP5, MySQL5
    DotNetPanel Authorized Reseller
  • 10-09-2007 8:29 AM In reply to

    Re: Free ASP.Net Shopping Cart Software

    Hm, are you sure this is a correct salt algorithm?

    18 random bytes in base64 representation...hm Huh?

    Sincerely yours,
    Feodor Fitsner, Director
    DotNetPanel - professionally developed software for hosting businesses
  • 10-09-2007 8:47 AM In reply to

    Re: Free ASP.Net Shopping Cart Software

    I don't know anything about .NET, it was set as 5 but that didn't work so I changed it to anything I could think of.

    Default Password: admin

    Default Password hash: DSOjmC/fikwVafXjyc3yOff0w/E=

    Default Password salt: lYD418JI4xB7ib0zNCjPHQ==

    Graham Spratt
    Direct Hosting UK
    W2K3, IIS6, .NET, PHP5, MySQL5
    DotNetPanel Authorized Reseller
Page 1 of 2 (25 items) 1 2 Next >
Powered by Community Server (Commercial Edition), by Telligent Systems