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!