Saturday, April 6, 2013

Its All About Afilioplace.com place to buy and sell web designs(landing pages)

Afilioplace is the best place to boost Affiliate marketing campaigns.  It the place where Affiliates can buy and sell all the resources required for Successful Affiliate Marketing. This is the best Affiliate Marketplace This site provides quality tools for those who want to be successful in affiliate marketing no matter who they are, they can be simple affiliate marketers, writers, web designers or some programmer.. No matter who you are Afilioplace is the one site which will enhance your marketing campaings...

This site has many things to offer, we can MAKE MONEY WITH AFILIOPLACE...
  1. Designer can sell landing pages for Affiliate purpose
  2. Writers can sell pages, ebooks
  3. Programmers can sell softwares
  4. Marketers can sell their ideas....
Whatever sale this site makes we earn 70% of it which is actually a Really good marketing strategy, we can use this platform to make decent amount of money as well as we can sell our ideas and our own work...

Submit this story to DotNetKicks

Read more...

Wednesday, February 13, 2013

specified cast is not valid. asp.net checkbox

While working on Grid view with Checkboxes and binding dynamic data, I came across an Erroe saying "Specified Cast is Not Valid", it was related to following code
  
                    
                

Then after doing search for specified cast is not valid. asp.net checkbox, I made following changes in the same code it worked.
 
                    
                
I am not going into More details for specified cast is not valid for asp.net checkbox in this article. Submit this story to DotNetKicks

Read more...

Monday, February 4, 2013

The 'System.Web.Security.SqlMembershipProvider' requires a database schema compatible with schema version '1'. Solved...

While working with Asp.NET and Membership, using MS SQL 2008 R2 I came across following error. My web application was working perfect on my local machine but when I hosted it on remote server I got following error.
The 'System.Web.Security.SqlMembershipProvider' requires a database schema compatible with schema version '1'. However, the current database schema is not compatible with this version. You may need to either install a compatible schema with aspnet_regsql.exe (available in the framework installation directory), or upgrade the provider to a newer version.
After R&D I had came across three possible solutions "WHICH I THINK ARE RIGHT, AS THEY WORKED FOR ME IN DIFFERENT SCENARIOS."

  1. Check "aspnet_SchemaVersions" table in database and make sure CompatibleSchemaVersion is set to "1" for all the Features (e.g. common, membership, role manager etc) available in table. Also make sure IsCurrentVersion column values are set to 'True" for all Features.
  2. In Web.Config, and aspnet_Applications table check if application Name is matching or not. Application name in web.config's Membership>Providers, Profile>Providers, RoleManager>Providers are matching with application name in database.
  3. In Membership>Provider I had "AspNetSqlMembershipProvider" type as type="System.Web.Security.SqlMembershipProvider" which I modified (after referring to some articles online) to type="System.Web.Security.SqlMembershipProvider, System.Web, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
Application worked for me when I checked all these things and made changes in my application.
Submit this story to DotNetKicks

Read more...