Log in
16
July

CSS Compressor

Written by Adnan Rashid. No comments Posted in: Development, User Interface
Tagged with

As a web designer, we use resources like CSS and javascript. These files should be optimized using compression for reducing the file size and hence the load time.
To decrease the file size web designers can follow 3 guidelines:

Remove whitespace like tabs, spaces, blank lines, etc.
Remove unused CSS classes and ID’s.
Use shorthand wherever applicable. For example [...]

08
July

Encypting query string in asp.net

Written by Adnan Rashid. No comments Posted in: Development
Tagged with , ,

When you pass information from one page to another, you are passing information that anybody can sniff. For example consider a scenario, in which you pass the customer id as a query string:
http://www.yourapplication.com?customer_id=15
Now if somebody replaced 15 with say 10 or any other number, they can pull up other customer information. And thats a bad [...]

08
July

Compare Fonts

Written by Adnan Rashid. No comments Posted in: General
Tagged with

I was designing a template for a web application and i wanted to try out something new. The user interface revolves around a compatible set of layout, colors, images and fonts. So i was Googling for a tool to help me compare Fonts and thier web compatibility. I came across a great tool called Typetester. [...]

07
July

Picnik Online Image Editing

Written by Adnan Rashid. No comments Posted in: User Interface
Tagged with

Although we cant all be photo image editing experts, tools like this can definitely help you come very close. Picknik provides a clean and easy user interface that will get you started on tweaking your favorite images in no time. With an abundant set of Fonts, special effects and other advanced settings, this tool is [...]

07
July

Prestashop-Open Source e-Commerce Solution

Written by Adnan Rashid. No comments Posted in: General
Tagged with

Prestashop is a welcome addition to the list Open source e-commerce solutions. The solution is completely configured with two sections, the front end; which deals with the online store’s user interface and the back end; which provides various tools to configure products, categories and other usual product related stuff. What sets Prestashop apart is its [...]

06
July

ASP.net Reset Password

Written by Adnan Rashid. 1 comment Posted in: Development
Tagged with , ,

If you are using Membership Provider in your ASP.net application, you might come across a scenario in which you need to have both Security Question and Answer feature and would also like to programmatically reset the password for an account.
So if you run the code

string username = “user”;
string password = “password”;
MembershipUser mu = Membership.GetUser(username);
mu.ChangePassword(mu.ResetPassword(), password);

You [...]