• Style File upload control in ASP / HTML

    As most of us know that we cannot style the file upload control to much level, still we can give it a stunning effect with the help of CSS. There is nothing in code to explain. I took three upload control and one button to give effect. Lets say upload control is in ASP.net or…

    Read more…

  • Highlight Current field using JQuery

    Write below HTML code : This will create two text boxes. Using jQuery, we can watch for an event where an input form comes into focus: Add link to JQuery file in script tag as shown in below line: Now, add below CSS in document. Then at last write JQuery / javascript code on focus…

    Read more…

  • Install Avast Antivirus in Ubuntu

    avast! Home Edition is a complete anti-virus package, that is is free for registered home non-commercial users. It contains an on-demand scanner with two interfaces (simple for novices and advanced for experienced users), an on-access scanner with Standard Shield (which protects against execution and opening malware programs) and an embedded e-mail scanner which scans incoming…

    Read more…

  • Install MySQL and Query Browser in Ubuntu

    To open the Terminal, go to Application > Accessories > Terminal Type the following command at terminal. $sudo apt-get install mysql-server mysql comes with no root password. To set the root password, type: $mysqladmin -u root password your-new-password $sudo /etc/init.d/mysql restart Install mysql query browser $sudo apt-get install mysql-query-browser After installing, go to Applications >…

    Read more…

  • How to change the Meta Tag link in WordPress

    How to change the Meta Tag link in Wordpress

    Read more…

  • Change the Login Image of WordPress in Simple steps

    Change the Login Image of WordPress in Simple steps

    Read more…

  • Salesforce Interview Questions – Part 1

    Set of most often asked questions on the salesforce.com developement

    Read more…

  • ASP.Net Error: Response is not available in this context

    This error occurred when  i tried to call Response.Redirect method from a class file. Then i tried to find the solution and i got to know that when we use the response object from an aspx page either from aspx page or it’s codebehind page, the response object is directly available because all these derived from…

    Read more…

  • App_Offline.htm in ASP.NET

    If you place a file with the name App_Offline.htm in the root of a web application directory, ASP.NET 2.0 will shut-down the application, unload the application domain from the server, and stop processing any new incoming requests for that application. ASP.NET will also then respond to all requests for dynamic pages in the application by…

    Read more…

  • Use FXcop with ASP.NET

    FxCop, an abbreviation “Framework Police,” is a rules-based engine that checks managed code assemblies for Microsoft’s .NET Framework design guidelines and custom guidelines. FxCop is a rule based engine which helps the development team to follow best practices of the .NET platform and development standards (based on every company standards). You can apply to any…

    Read more…