Sunday, May 6, 2012

Error Message for JavaScript CurvyObject Warning Pop Up Box – Fixed

This error comes up when using CurvyCorners in IE8 and 7: curvyObject warning: zero-width box with no accountable parent tag: NAV id: nav-main class: row rounded Parent tag: DIV Parent class: container To fix it I had to put in my javascript: var curvyCornersVerbose = false;

Sunday, May 15, 2011

Windows Azure Instance Aborted/Busy - Error

After deploying my service to windows azure my service was simply looping through the standard busy loop with no end in sight.

I resolved that issue by going to: AzureLocalStorageTraceListener.vb
change file name: ".svclog" file.
replace with your project name for example. MyWinAzure1.svclog.
change in both places New() and GetLogDirectory() function.

Tuesday, January 25, 2011

Amazon S3 EZ Upload .NET Component by NetFix, LLC

NetFix EZ S3 Upload is .NET dll component that developers can use to upload files on Amazon S3 account. Easy to integrate into your existing web projects or windows projects. Just add reference to project and call UploadToAmazonS3 method. Your files will get uploaded to your Amazon S3 account. Also you can delete file by calling DeleteToAmazonS3 method.

Click Here to Download: http://www.netfixllc.com/OurProducts/NetFixEZS3Upload.aspx


Supported Platform: Vista 32 bits, Windows XP, Windows Server 2003/2008, .NET Framework 2.0,3.0,3.5 and 4



Click here to watch demo.

Click Here for: How to add NetFix EZ S3 Upload into your web application.

Wednesday, December 29, 2010

YouTube EZ Upload .NET Component

NetFix EZ YouTube Upload is .NET dll component that developer can use to upload videos on YouTube.Com. Easy to integrate into your existing web projects. Just add reference to project and call YouTubeUpload method. Your video will get transfer to your YouTube account. Click here to watch video.

This sample source code package will be sent to your on your purchased email address.

Supported Platform: Vista 32 bits, Windows XP, Windows Server 2003/2008, .NET Framework 2.0,3.0,3.5 and 4.0

NetFix EZ YouTube Upload



Click Here to Purchase & Download.


Click Here for: How to add NetFix EZ YouTube Upload into your web application.

Thursday, December 23, 2010

How to enable SQL Dependency on SQL 2008 Server for .NET Website Caching




How to enable SQL Dependency on SQL 2008 Server for .NET Website Caching

I am unable to put the code on blogget.com don't know why.
So please visit: my blog on word press for complete blog post.

In your web.config make sure have tag declared as shown below:
Then run these commands using your command prompt:

To Enable Sql Dependency:
aspnet_regsql.exe -S localhost -E -d pubs -t authors -et
or if this doesn't work then try this:
aspnet_regsql.exe -S localhost -U your_db_username -P your_db_password -d pubs -t authors -et

or if you want to allow to whole database then try this:
aspnet_regsql.exe -S localhost -U your_db_username -P your_db_password -d pubs -ed

To Disable Sql Dependency:
aspnet_regsql.exe -S localhost -E -d pubs -t authors -dt

or if this doesn't work then try this:
aspnet_regsql.exe -S localhost -U your_db_username -P your_db_password -d pubs -t authors -dt

or if you want to allow to whole database then try this:
aspnet_regsql.exe -S localhost -U your_db_username -P your_db_password -d pubs -dt

Than just add the output cache in your asp.net page or contols (.aspx or .asmx) pages.
<outputCache enableOutputCache ="true" duration = "1000" varByParam="None">

Hope this helps!