Home

Sunday, March 6, 2011

Error Code 29506, While Installing SQL Management Studio Express On Windows 7/Vista X64

I  tried to install SQL Management Studio Express on Windows 7 professional x64. But An error code 29506 encountered and installation failed and roll-back.

This problem is caused when UAC enabled. The main problem with MSI files is that you cannot right click it and “Run as Administrator” to bypass UAC validation. To solve this problem, Either you have to logged-in as Default Administrator account or disable UAC.

Exception: error code 29506

Jamboree Bliss SQL Error

Solution:

1. Run CMD as Administrator and Approve the UAC prompt.
2. Type the full absolute path of the MSI file, Such as:

c:\SQLServer2005_SSMSEE_x64.msi

3. Follow your screen instruction and that it.

Applies To:

* Windows Vista x64 editions
* Windows 7 x64 editions

CMD.EXE Path: C:\Windows\SysWOW64

Source: http://jamboreebliss.com

Saturday, March 5, 2011

Sure Shot Tips to Optimize Your Website’s Speed

How much time a website takes to load is a very important factor which determines the success of a website to a large extent. If a website takes too much time to load, it is bound to lose a majority of visitors and potential customers. When it comes to search engine parameters, website speed is a crucial factor which determines the search engine ranking. It is important to take everything into consideration when optimizing your website’s speed and availing the services of a qualified web development company is always beneficial. Discussed below are 10 sure shot tips to optimize your website’s speed.

Friday, March 4, 2011

10 Fresh jQuery Image Gallery/Slider Plugins and Tutorials Worth a Look

In the last few years jquery image sliders and jQuery image galleries become very popular in blogs and especially in portfolio sites.One of the easiest solution to attract your visitors and to show your potential clients your portfolio is the image sliders and image galleries.



Today we bring together jQuery image sliders and galleries which are released in the last few months or updated recently.
More Image Sliders and Galleries With jQuery
  

Circular Image Galleries With jQuery
Display your images or items around a shape like a circle or an ellipse.

JQuery Image Gallery with Captions and Auto Play/Pause Rotation

An awesome jquery gallery which is transparent, fixed on screen, autoplay on/off buttons and css3 stylized gallery.


JQuery Based Flipped Image Gallery with Bounce Effects

A simple jQuery based flipped image gallery. On hover the images will expand.



Tiny Circle Slider

Tiny Circleslider is a circular slider / carousel.Tiny Circleslider can blend in on any web page.


Awesome Scrolling Navigation using jQuery

The main thing flipboard do differently is to have the logo and logo background elements move at different animation speeds from each other and the main content



Rotating Image Slideshow w/ CSS3 and jQuery

You can use it to spice up your web sites, product pages and other projects with some CSS3 magic.


A Flickr-powered Slideshow

A jQuery plugin that will make it easy to create slideshows, product guides or presentations from your Flickr photo sets. The plugin will be using Flickr’s APIs and YQL to fetch the photos in the sets, after which it will create the markup of the slideshow and listen for events.


Awesome jQuery Image Gallery Plugin(Thumbox)

Browse the images via mini-gallery.Display images description.Effects for input and output images.Keyboard navigation.Navigation with the mouse wheel.


jbgallery 3.0(Big Multiple Images Slideshow With JQuery)

jbgallery is a UI widget webpage written in javascript on top of the jQuery library.Its function is to show a single big image, multiple images, multiple galleries, slideshows, as a site’s background, in a “dialog” mode or as a common pop-up.


Lightweight Thumbnails Image Gallery

Galleria is a JavaScript image gallery framework built on top of the jQuery library. The aim is to simplify the process of creating professional image galleries for the web and mobile devices

Source: http://www.queness.com

Thursday, February 24, 2011

File Upload not Working on First PostBack after loading Async through ASP.NET UpdatePanel

I was setting up a ASP.NET Wizard control.  The 3rd or 4th step had a file upload control on it, with a runat="server".  The entire wizard control I wrapped in an ASP.NET UpdatePanel so that the wizard was all AJAXified.  I had already fixed the "next" button for this wizard step so that it did a full postback to the server, not an asynchronous one - since I knew that was required to get a file upload to the server.  However, the file was STILL not being posted back, atleast not on the first post.  Subsequent posts would work fine.  On a whim, I looked at the Firebug console to inspect the details of the request while it was in progress (Set a breakpoint in your code somewhere, then look at the Firebug console -- you'll see a "POST" entry with info about what was posted, headers for the request, etc).  Below the POST entry, I saw a warning/error message I had never seen before:
 This page has a file upload.  However, the form tag does not have both the enctype=multipart/form-data and method=POST attributes.  The file will not be uploaded.
Hmm...  I thought about it a bit, and then looked at a normal page I had that had file upload controls on it.  Sure enough, the form tag (there is always just one in ASP.NET) had the enctype attribute set automagically by ASP.NET if ASP.NET knew there was a file upload control on the page.  Otherwise, it leaves it off.  The Async update by the UpdatePanel was loading the FileUpload ok, but wasn't adding the enctype=multipart/form-data to the form tag attributes. 
Solution: manually add the enctype to the page's form on Page_Load()

                                                             
 Page.Form.Attributes.Add("enctype", "multipart/form-data"); 
                                                             

Source: http://blog.anofsinger.com/