when i decide to rewrite my CV, i search a lot and a lot on the internet .... i wanna have a CV look professional i get two links help me a loooot
http://www.contractorcalculator.co.uk/common_mistakes_writing_cv.aspx
http://www.contractorcalculator.co.uk/Writing_Killer_CV.aspx
Thursday, February 11, 2010
Saturday, February 6, 2010
Difference between Metric && US unit when Creating new Diagram @ Visio 2007
when i go to create new diagram @VISIO 2007, i found for diagram two templates one in US Unit and other in Metric one and asked me what is the difference so i decide to get the difference and i get this from search.......Sharing with you
The Metric System is used in over 95 percent of the world. But in the United States, Liberia, and Myanmar , the English system is used. Neither is more accurate, but only three countries use the English system.
The English system is more ancient, and it has it's roots from the then more common measurements. Hands to describe height feet yards etc. also for weight, they stemmed from stones ( 14 lbs ) ounces, pounds, hundredweight, tons etc.
The metric system is a modern system, with all measurements based on the decimal system. ( everything based on 10 or multiples thereof).
The METRIC system is based on increments of the number 10 in both volume and linear measurements. The units of linear measure are: Kilometer - 1,000; hectometer - 100; decimeter - 10; base - 1; decimeter - .1; centimeter - .01; millimeter - .001. METRIC volume is measured in kilograms, miligrams, grams, etc., which are all based on the number 10, also.
The ENGLISH system of linear measurement is based on inches, feet, yards; 12 inches in a foot, 3 feet in a yard, 5,280 feet in a mile, etc. In ENGLISH weight the measurements are based in ounces, pounds, etc., which are: 16 ounces in a pound; 2000 pounds in a ton, etc. ENGLISH volume is based on cups, pints, quarts, gallons, etc. One cup = 8 ounces; 1 pint = 2 cups or 16 ounces; 1 quart = 4 cups or 32 ounces; 1 gallon = 16 cups or 128 ounces, etc.
My Source to Get this Information
Thanks ........
Wednesday, February 3, 2010
Use Your Gmail Account @ Microsoft Services
i prefer using my Gmail account every where, i think that it is easy and user friendly and satisfied my requirements but when i go through Microsoft services like http://social.msdn.microsoft.com/Forums/en-US/categories
to submit any issue, i must use my windows live ID (Hotmail account) so i search for internet to find solution to can use my Gmail account @ Microsoft Service and i get the following blog and i tried it and it is work so i wanna share this link with every one ...................Click on the following link :::::
http://www.geekzone.co.nz/freitasm/4047
Thanks
to submit any issue, i must use my windows live ID (Hotmail account) so i search for internet to find solution to can use my Gmail account @ Microsoft Service and i get the following blog and i tried it and it is work so i wanna share this link with every one ...................Click on the following link :::::
http://www.geekzone.co.nz/freitasm/4047
Thanks
Wednesday, January 6, 2010
Solution File in Microsoft Visual Studio... Have a Loo00ooK
Solution File which created when we create new solution in visual studio, it is simply a text file that contain information specific to this solution and shared between developers of this solution, this information will be like:
- A list of projects that are to be loaded into visual studio
- The Target Framework version for the solution
- The Default language for the solution
- A list of project dependencies
- Source control information
- A List of add-ins that are available
Another File is Solution user options file and it is binary file which contain user settings and specific for every developer like
- The Task List
- Dubugger break points and watch window settings
- Visual Studio Window Locations
Tuesday, December 8, 2009
Log Out Funcationality in ASP.Net
to implement the log out functionality in asp.net application use the following code in the body of log out button event handler
Session.Clear();
Session.Abandon();
Response.Clear();
Response.Redirect(context.LoginPage);
and to prevent back feature of the browser or accessing the website after log out using the following line
HttpContext.Current.Response.Cache.SetExpires(DateTime.Now);
Session.Clear();
Session.Abandon();
Response.Clear();
Response.Redirect(context.LoginPage);
and to prevent back feature of the browser or accessing the website after log out using the following line
HttpContext.Current.Response.Cache.SetExpires(DateTime.Now);
Sunday, December 6, 2009
HttpContext in ASP.Net
The HttpContext object in the System.Web namespace encapsulates all of the information related to one request and allows you to access that information within or outside of the actual aspx page that is being processed.
Let's Check Some Properties about the HttpContext Class:
The static property Current on the HttpContext class can be useful whenever the flow of control leaves the code in your Page derived web form. Using this property you can reach out and magically grab the current Request, Response, Session, and Application objects (and more) for the request you are servicing
Let's Check Some Properties about the HttpContext Class:
The static property Current on the HttpContext class can be useful whenever the flow of control leaves the code in your Page derived web form. Using this property you can reach out and magically grab the current Request, Response, Session, and Application objects (and more) for the request you are servicing
Wednesday, December 2, 2009
Difference Between XML Document & XML Fragment
XML fragments are similar to XML documents, the difference is that they are not in themselves a document. sound strange? the thought is just that an XML fragment is supposed to be part of an XML document, that is it has been taken out of the context of the document, this means that an XML fragment lacks the XML declaration () and does not have to have a root element
Subscribe to:
Comments (Atom)
