Skip to main content

Posts

jNotify Example for Disply animated boxes (information, errors, success) in asp.net

jNotify : Disply animated boxes (informations, errors, success) in just one line of code jNotify  can display information boxes in just one line of code in asp.net . Three kind of boxes are allowed :  information, success and failure. The whole box is entirely skinnable with css. For example, you could use it for a mail being successfully sent or a validation error of a form , or alert message . Previous post  Show jQuery UI Dialog Popup Window from Server Side ( Code Behind ) in ASP.Net First download  JNotify from GitHub   Implementations   Add links to master page , copy images into your folder  <link href="Styles/jNotify.jquery.css" rel="stylesheet" type="text/css" />   <script src="Scripts/jquery-1.4.1.min.js" type="text/javascript"></script>   <script src="Scripts/jNotify.jquery.min.js" type="text/javascript"></script> Master page look like ...

Microsoft's New Plan To Make People Love Windows 8 Is Starting To Work- Holy Grail app development

When it comes to Windows 8 and Windows Phone, Microsoft has been caught in a Catch-22. People buy devices for the apps. Developers only want to write apps for devices that already have a lot of users. Microsoft has to convince app developers to write for Windows, not just iOS and Android, in order to sell more devices. This week during its developer conference, the company unveiled a grand strategy to break the stalemate. It announced a plan to deliver what's known as the "Holy Grail" of app development: write the app once and it runs on everything, Windows 8 devices, Windows Phone 8, Xbox, iOS and Android. Microsoft's plan consisted of lots of new development software, updates to existing software and new features in its app-hosting cloud Azure. Plus, Microsoft also launched a new software foundation that will bring even more "Holy Grail" tools to app developers, for free. Many people who attended the conference liked what they heard. A lot. Busin...

How to GZip content enabled in ASP.NET and GoDaddy

Enable Gzip compression in ASP.NET using web.config configuration . Referring to the article “ Best Practices for Speeding Up Your Web Site” from YUI,  Gzip compression reduces the response time. Gzip compression generally reduces the response size by about 70% and approximate 90% of today’s internet traffic travels through browsers. After searching around for answer on how to implement gzip compression on ASP.NET application, I found the solution below is the easiest to implement. See also :   Multi-Device Hybrid Apps (Preview) - in asp.net Add the configuration shown below in the in web.config file. This configuration setup enable gzip compression on static and on dynamic content. I have tried it on GoDaddy’s Windows Shared Hosting and it works fine. Enable Gzip compression in ASP.NET using web.config configuration. < system.webServer> < httpCompression directory = " %SystemDrive%\inetpub\temp\IIS Temporary Compressed Files " > < sc...