Wednesday, September 19, 2012

The selected stored procedure returns no columns

The reason was, selecting from a temp table and EF can’t figure out the shape of the results at design time.

The solution for this write this line "SET FMTONLY OFF" in begin part of your Stored Procedure but it will not work in selecting data from another database.
Example : Create procedure SPname
      as
      SET FMTONLY OFF 

Thursday, September 13, 2012

ERROR [IM002] [Microsoft][ODBC Driver Manager] Data source name not found and no default driver specified

I got this when i trying to read a CSV file and trying to get the data in a DataSet using Microsoft Text Driver in your 64 bit machine.

Solution
  1. Go to IIS and Application Pools in the left menu.
  2. Click the project name in the listing.
  3. Click the Set Application Pool Defaults.
  4. In General Tab, make the Enable 32 Bit Application entry to "True"

Monday, September 3, 2012

CheckOut Authentication Failed Nopcommerce

This is due to configuration issues with your shipping method. Please provide valid configuration details. Learn more Programing Tips and new Features


TinyMCE Insert/Edit link not editable

 To fix this add  e.stopImmediatePropagation()  as below. $(document).on('focusin', function (e) {             if ($(e.target).close...