In IIS 6 Select Your web site--> Go to Custom Error Tab --> Select Error Code -->Edit Property --> Set Your Error Page
In IIS 7 Select Your Web site --> Feature View --> Error Page --> Select Error Code –->Edit –->Set your Custom Error Page
Friday, December 26, 2008
Friday, December 19, 2008
Custom Control or User Control
Most of the developer knows, how to implement the Custom Control or User Control an ASP.NET Page. we have well experience in using the directive tag.
if we need to use the Custom Control or User Control on numbers of pages, it is possible to register in web.config file. It is reduce the redundancy code and we don’t need to implement the directives.
the web.config section is
<-controls->
<-add src="~/Controls/FlashNews.ascx" tagprefix="skm" tagname=" FlashNews "->
<-controls->
Once we register the control here we can access the User Control on number of pages using following syntax
skm:flashnews id="cusFlash" runat="server" cssclass="small-tab"/
if we need to use the Custom Control or User Control on numbers of pages, it is possible to register in web.config file. It is reduce the redundancy code and we don’t need to implement the directives.
the web.config section is
<-controls->
<-add src="~/Controls/FlashNews.ascx" tagprefix="skm" tagname=" FlashNews "->
<-controls->
Once we register the control here we can access the User Control on number of pages using following syntax
skm:flashnews id="cusFlash" runat="server" cssclass="small-tab"/
Monday, December 15, 2008
Integrate PHP application to Microsoft IIS server
1.Download file from here http://www.atksolutions.com/articles/php_ver5.2.3.zip
2.Install your file to here c:/PHP
3.Open IIS 7.0 Manager -> Default Website -> Properties -> Home Directory -> Configuration -> Add -> php5isapi.dll -> ok
4.Copy php.ini file and paste to c:/Windows
5.Reboot System
6.Now check PHP is working in IIS server
2.Install your file to here c:/PHP
3.Open IIS 7.0 Manager -> Default Website -> Properties -> Home Directory -> Configuration -> Add -> php5isapi.dll -> ok
4.Copy php.ini file and paste to c:/Windows
5.Reboot System
6.Now check PHP is working in IIS server
Monday, November 24, 2008
Stored Procedure Optimization
Stored Procedures Optimization
- Use stored procedures instead of heavy-duty queries.
This can reduce network traffic, because your client will send to server only stored procedure name (perhaps with some parameters) instead of large heavy-duty queries text. Stored procedures can be used to enhance security and conceal underlying data objects also. For example, you can give the users permission to execute the stored procedure to work with the restricted set of the columns and data.
- Include the SET NOCOUNT ON statement into your stored procedures to stop the message indicating the number of rows affected by a Transact-SQL statement.
This can reduce network traffic, because your client will not receive the message indicating the number of rows affected by a Transact-SQL statement.
- Call stored procedure using its fully qualified name.
The complete name of an object consists of four identifiers: the server name, database name, owner name, and object name. An object name that specifies all four parts is known as a fully qualified name. Using fully qualified names eliminates any confusion about which stored procedure you want to run and can boost performance because SQL Server has a better chance to reuse the stored procedures execution plans if they were executed using fully qualified names.
- Consider returning the integer value as an RETURN statement instead of an integer value as part of a recordset.
The RETURN statement exits unconditionally from a stored procedure, so the statements following RETURN are not executed. Though the RETURN statement is generally used for error checking, you can use this statement to return an integer value for any other reason. Using RETURN statement can boost performance because SQL Server will not create a recordset.
- Don't use the prefix "sp_" in the stored procedure name if you need to create a stored procedure to run in a database other than the master database.
The prefix "sp_" is used in the system stored procedures names. Microsoft does not recommend to use the prefix "sp_" in the user-created stored procedure name, because SQL Server always looks for a stored procedure beginning with "sp_" in the following order: the master database, the stored procedure based on the fully qualified name provided, the stored procedure using dbo as the owner, if one is not specified. So, when you have the stored procedure with the prefix "sp_" in the database other than master, the master database is always checked first, and if the user-created stored procedure has the same name as a system stored procedure, the user-created stored procedure will never be executed.
- Use the sp_executesql stored procedure instead of the EXECUTE statement.
The sp_executesql stored procedure supports parameters. So, using the sp_executesql stored procedure instead of the EXECUTE statement improve readability of your code when there are many parameters are used. When you use the sp_executesql stored procedure to executes a Transact-SQL statements that will be reused many times, the SQL Server query optimizer will reuse the execution plan it generates for the first execution when the change in parameter values to the statement is the only variation.
- Use sp_executesql stored procedure instead of temporary stored procedures.
Microsoft recommends to use the temporary stored procedures when connecting to earlier versions of SQL Server that do not support the reuse of execution plans. Applications connecting to SQL Server 7.0 or SQL Server 2000 should use the sp_executesql system stored procedure instead of temporary stored procedures to have a better chance to reuse the execution plans.
- If you have a very large stored procedure, try to break down this stored procedure into several sub-procedures, and call them from a controlling stored procedure.
The stored procedure will be recompiled when any structural changes were made to a table or view referenced by the stored procedure (for example, ALTER TABLE statement), or when a large number of INSERTS, UPDATES or DELETES are made to a table referenced by a stored procedure. So, if you break down a very large stored procedure into several sub-procedures, you get chance that only a single sub-procedure will be recompiled, but other sub-procedures will not.
- Try to avoid using temporary tables inside your stored procedure.
Using temporary tables inside stored procedure reduces the chance to reuse the execution plan.
- Try to avoid using DDL (Data Definition Language) statements inside your stored procedure.
Using DDL statements inside stored procedure reduces the chance to reuse the execution plan.
- Add the WITH RECOMPILE option to the CREATE PROCEDURE statement if you know that your query will vary each time it is run from the stored procedure.
The WITH RECOMPILE option prevents reusing the stored procedure execution plan, so SQL Server does not cache a plan for this procedure and the procedure is recompiled at run time. Using the WITH RECOMPILE option can boost performance if your query will vary each time it is run from the stored procedure because in this case the wrong execution plan will not be used.
- Use SQL Server Profiler to determine which stored procedures has been recompiled too often.
To check the stored procedure has been recompiled, run SQL Server Profiler and choose to trace the event in the "Stored Procedures" category called "SP:Recompile". You can also trace the event "SP:StmtStarting" to see at what point in the procedure it is being recompiled. When you identify these stored procedures, you can take some correction actions to reduce or eliminate the excessive recompilations.
Wednesday, November 12, 2008
Read the XML file From Javascript
//Sample Codes
var xmlDoc;
var varXSL;
function test()
{
// load XML
varXML=new ActiveXObject("Microsoft.XMLDOM");
varXML.async="false";
var res = varXML.load("XMLFile.xml");
//load XSL
varXSL=new ActiveXObject("Microsoft.XMLDOM");
varXSL.async=false;
varXSL.load("Common.xsl");
sampleex=varXML.transformNode(varXSL);
document.write(sampleex);
}
var xmlDoc;
var varXSL;
function test()
{
// load XML
varXML=new ActiveXObject("Microsoft.XMLDOM");
varXML.async="false";
var res = varXML.load("XMLFile.xml");
//load XSL
varXSL=new ActiveXObject("Microsoft.XMLDOM");
varXSL.async=false;
varXSL.load("Common.xsl");
sampleex=varXML.transformNode(varXSL);
document.write(sampleex);
}
Wednesday, October 22, 2008
ASP.NET & Network
//Read the External Web Pages Details
WebRequest reg = WebRequest.Create("http://www.google.com");
WebResponse resp = reg.GetResponse();
Stream st = resp.GetResponseStream();
StreamReader stR = new StreamReader(st,Encoding.ASCII );
string StrTest = stR.ReadToEnd();
Response.Write(StrTest);
WebRequest reg = WebRequest.Create("http://www.google.com");
WebResponse resp = reg.GetResponse();
Stream st = resp.GetResponseStream();
StreamReader stR = new StreamReader(st,Encoding.ASCII );
string StrTest = stR.ReadToEnd();
Response.Write(StrTest);
SQL SERVER - Database Coding Standards and Guidelines
The following URL it will help to Standards Coding style
http://blog.sqlauthority.com/2007/06/04/sql-server-database-coding-standards-and-guidelines-part-1/
http://blog.sqlauthority.com/2007/06/04/sql-server-database-coding-standards-and-guidelines-part-1/
.NET Framework AJAX Update Panel Problem
Sys.WebForms.PageRequestManagerParserErrorException:
The message received from the server could not be parsed.
Common causes for this error are when the response is modified by calls to Response.Write(),
response filters, HttpModules, or server trace is enabled.
Details: Error parsing near'
// Use Javascript
string url = Your URL;
string redirectURL = Page.ResolveClientUrl(url);
string script = "window.location = '" + redirectURL + "';";
ScriptManager.RegisterStartupScript(this, typeof(Page), "RedirectTo", script, true);
The message received from the server could not be parsed.
Common causes for this error are when the response is modified by calls to Response.Write(),
response filters, HttpModules, or server trace is enabled.
Details: Error parsing near'
// Use Javascript
string url = Your URL;
string redirectURL = Page.ResolveClientUrl(url);
string script = "window.location = '" + redirectURL + "';";
ScriptManager.RegisterStartupScript(this, typeof(Page), "RedirectTo", script, true);
Tuesday, October 21, 2008
Get WebSite IP details in C#.NET
// Include System.NET
IPHostEntry ip = Dns.GetHostByName("www.testsitename.com");
IPAddress [] IPDetails=ip.AddressList;
for (int i = 0; i < IPDetails.Length; i++)
{
Response.Write("IP Address :"+ IPDetails[i].ToString());
}
string [] ipHost = ip.Aliases;
for (int i = 0; i < ipHost.Length; i++)
{
Response.Write("
Aliase Name :" + ipHost[i].ToString());
}
IPHostEntry ip = Dns.GetHostByName("www.testsitename.com");
IPAddress [] IPDetails=ip.AddressList;
for (int i = 0; i < IPDetails.Length; i++)
{
Response.Write("IP Address :"+ IPDetails[i].ToString());
}
string [] ipHost = ip.Aliases;
for (int i = 0; i < ipHost.Length; i++)
{
Response.Write("
Aliase Name :" + ipHost[i].ToString());
}
Wednesday, October 15, 2008
Add Script Handler to IIS 7(Vista) for Ajax Control Tool Kit
If Ajax Control toolkit is not working in IIS7 or Windows Vista, Verify the Http Handler in web configuration file
"httpHandlers"
"add path="ScriptResource.axd" verb="GET,HEAD" type="System.Web.Handlers.ScriptResourceHandler, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" validate="false"/"
"/httpHandlers"
If Configuration file is fine,Add the following handler to IIS Handler Mappting
IIS 7 - > Handler Mapping -> Add Managed Handler
Request Path: ScriptResource.axd
Type: System.Web.Handlers.ScriptResourceHandler
Verbs: GET,POST,HEAD,DEBUG
Now Check AJAX is working Fine.
Monday, October 13, 2008
SEO Tips
Be bold. Use the tags around some of your keywords on each page. Do NOT use them everywhere the keyword appears. Once or twice is plenty.
Deep linking. Make sure you have links coming in to as many pages as possible. What does it tell a search engine when other web sites are linking to different pages on your site? That you obviously have lots of worthwhile content. What does it tell a search engine that all your links are coming in to the home page? That you have a shallow site of little value, or that your links were generated by automation rather than by the value of your site. Here is an example of deep linking, in this case to my personal happiness workbook.
Become a foreigner. Canada and the UK have many directories for websites of companies based in those countries. Can you get a business address in one of those countries?
Newsletters. Offer articles to ezine publishers that archive their ezines. The links stay live often for many years in their archives.
First come, first served. If you must have image links in your navigation bar, include also text links. However, make sure the text links show up first in the source code, because search engine robots will follow the first link they find to any particular page. They won't follow additional links to the same page. You can see this in action at the link to the home page on this web site monitoring page
Multiple domains. If you have several topics that could each support their own website, it might be worth having multiple domains. Why? First, search engines usually list only one page per domain for any given search, and you might warrant two. Second, directories usually accept only home pages, so you can get more directory listings this way. Why not a site dedicated to gumbo pudding pops?
Article exchanges. You've heard of link exchanges, useless as they generally are. Article exchanges are like link exchanges, only much more useful. You publish someone else's article on the history of pudding pops with a link back to their site. They publish your article on the top ten pudding pop flavors in Viet Nam, with a link back to your site. You both have content. You both get high quality links. (More on high quality links in other tips.)
Titles for links. Links can get titles, too. Not only does this help visually impaired surfers know where you are sending them, but some search engines figure this into their relevancy for a page.
Not anchor text. Don't overdo the anchor text. You don't want all your inbound links looking the same, because that looks like automation - something Google frowns upon. Use your URL sometimes, your company name other times, "Gumbo Pudding Pop" occasionally, "Get gumbo pudding pops" as well, "Gumbo-flavored pudding pops" some other times, etc.
Site map. A big site needs a site map, which should be linked to from every page on the site. This will help the search engine robots find every page with just two clicks. A small site needs a site map, too. It's called the navigation bar. See how the second navigation bar at the bottom of Last Minute Florida Villas is like a mini-site map?
Deep linking. Make sure you have links coming in to as many pages as possible. What does it tell a search engine when other web sites are linking to different pages on your site? That you obviously have lots of worthwhile content. What does it tell a search engine that all your links are coming in to the home page? That you have a shallow site of little value, or that your links were generated by automation rather than by the value of your site. Here is an example of deep linking, in this case to my personal happiness workbook.
Become a foreigner. Canada and the UK have many directories for websites of companies based in those countries. Can you get a business address in one of those countries?
Newsletters. Offer articles to ezine publishers that archive their ezines. The links stay live often for many years in their archives.
First come, first served. If you must have image links in your navigation bar, include also text links. However, make sure the text links show up first in the source code, because search engine robots will follow the first link they find to any particular page. They won't follow additional links to the same page. You can see this in action at the link to the home page on this web site monitoring page
Multiple domains. If you have several topics that could each support their own website, it might be worth having multiple domains. Why? First, search engines usually list only one page per domain for any given search, and you might warrant two. Second, directories usually accept only home pages, so you can get more directory listings this way. Why not a site dedicated to gumbo pudding pops?
Article exchanges. You've heard of link exchanges, useless as they generally are. Article exchanges are like link exchanges, only much more useful. You publish someone else's article on the history of pudding pops with a link back to their site. They publish your article on the top ten pudding pop flavors in Viet Nam, with a link back to your site. You both have content. You both get high quality links. (More on high quality links in other tips.)
Titles for links. Links can get titles, too. Not only does this help visually impaired surfers know where you are sending them, but some search engines figure this into their relevancy for a page.
Not anchor text. Don't overdo the anchor text. You don't want all your inbound links looking the same, because that looks like automation - something Google frowns upon. Use your URL sometimes, your company name other times, "Gumbo Pudding Pop" occasionally, "Get gumbo pudding pops" as well, "Gumbo-flavored pudding pops" some other times, etc.
Site map. A big site needs a site map, which should be linked to from every page on the site. This will help the search engine robots find every page with just two clicks. A small site needs a site map, too. It's called the navigation bar. See how the second navigation bar at the bottom of Last Minute Florida Villas is like a mini-site map?
SEO Tips
1.If you don’t want too much competition from other SEO’s, choose your keywords precisely. For example, Instead of keyowrd Loan choose keywords like Bank Loan, Equity Loan, Student Loan, Home Loan etc. Order of keyword also matter for search engines. Search engine treats “Loan Equity” and “Equity Loan” as different keywords.
2.Best seo practice is to get at least one of your primary keywords in domain or sub domain name of your website.You can use hyphens (-) to separate multiple keywords.For example: seo-service, seo-guidelines, free-seo each cover two keyords.
3.Get your second or third keywords in your directory name and filename. For example http://www.hiddentricks.com/seo/free-tips.html is best for keyword “free seo tips” , “seo hidden tricks” or "free seo tricks"
4.Keep your webpage free from any syntax error, declare document type at the beginning and validate your HTML and CSS because search engine don’t like pages with too many errors.
5.Give a short Title in of your page in 3-9 words (60-80 characters) maximum in length containing your primary keyword.Remember it will be displayed in search results so choose wisely.
6.Try to include your most important keyword phrases in heading tags on your page if you can but keep in mind it should not be exactly same as title of your page. You can use (H1 H2 H3) tag for specifying anything important. To reduce size of heading use CSS.
7.Specify Meta keywords in heading of document. Limit it to 15 to 20 words. Although not all the search engines give importance but there is no harm doing it. Search engine like Yahoo still give it importance.
8.Write Your Meta Description tag attractive containing keywords because it will appear on the search engine result pages.
9.Use text for navigation menu instead of using images or Java scripts.
10.Try to include your most important keyword in hyperlinked text and text and text that immediately precedes or follows the hyperlink. Do not use same keyword always use synonyms at few places.Jusk like instead of seo, I have use search engine optimization at many places on this page.
11.If you are using images then use “alt” attribute to describe your image with proper keyword.
12.One of the best webmaster guideline is to submit sitemap of your website to make sure all pages of your website are indexed by search engine crawlers.
13.Keep size of your webpages less than 50KB so it is downloaded fast and visitors don’t have to wait for long. For good SEO site page size ideal should be 15KB.
14.Try to avoid your content in Flash, frame, images, java script because crawler find it very difficult and it is against seo tips and guidelines.
15.Don’t use dynamic url because it don’t contain keywords so its not search engine friendly. If you are using any script which shows dynamic pages then make sure at least it should include one keyword.
16.Don’t try to spam and never use methods like cloaking, keyword spamming or doorway pages. Many seo advices to have multiple domain name and link each other but according to our SEO tips and guidelines search engine can penalize you for this.Instead of that try to add more quality content to your existing website.
17.Submit your website only once to google, Yahoo, AltaVista and other search engines and open directory.Don’t use any script or website for automatic submission.
18.If your website contents changes very often then provide visitor with Newsletter and RSS feed.
19.Write articles on website related to yours having higher page ranking and leave your websites link.
20.Get link from other sites related to yours, search engine consider it as vote in your favour.
2.Best seo practice is to get at least one of your primary keywords in domain or sub domain name of your website.You can use hyphens (-) to separate multiple keywords.For example: seo-service, seo-guidelines, free-seo each cover two keyords.
3.Get your second or third keywords in your directory name and filename. For example http://www.hiddentricks.com/seo/free-tips.html is best for keyword “free seo tips” , “seo hidden tricks” or "free seo tricks"
4.Keep your webpage free from any syntax error, declare document type at the beginning and validate your HTML and CSS because search engine don’t like pages with too many errors.
5.Give a short Title in of your page in 3-9 words (60-80 characters) maximum in length containing your primary keyword.Remember it will be displayed in search results so choose wisely.
6.Try to include your most important keyword phrases in heading tags on your page if you can but keep in mind it should not be exactly same as title of your page. You can use (H1 H2 H3) tag for specifying anything important. To reduce size of heading use CSS.
7.Specify Meta keywords in heading of document. Limit it to 15 to 20 words. Although not all the search engines give importance but there is no harm doing it. Search engine like Yahoo still give it importance.
8.Write Your Meta Description tag attractive containing keywords because it will appear on the search engine result pages.
9.Use text for navigation menu instead of using images or Java scripts.
10.Try to include your most important keyword in hyperlinked text and text and text that immediately precedes or follows the hyperlink. Do not use same keyword always use synonyms at few places.Jusk like instead of seo, I have use search engine optimization at many places on this page.
11.If you are using images then use “alt” attribute to describe your image with proper keyword.
12.One of the best webmaster guideline is to submit sitemap of your website to make sure all pages of your website are indexed by search engine crawlers.
13.Keep size of your webpages less than 50KB so it is downloaded fast and visitors don’t have to wait for long. For good SEO site page size ideal should be 15KB.
14.Try to avoid your content in Flash, frame, images, java script because crawler find it very difficult and it is against seo tips and guidelines.
15.Don’t use dynamic url because it don’t contain keywords so its not search engine friendly. If you are using any script which shows dynamic pages then make sure at least it should include one keyword.
16.Don’t try to spam and never use methods like cloaking, keyword spamming or doorway pages. Many seo advices to have multiple domain name and link each other but according to our SEO tips and guidelines search engine can penalize you for this.Instead of that try to add more quality content to your existing website.
17.Submit your website only once to google, Yahoo, AltaVista and other search engines and open directory.Don’t use any script or website for automatic submission.
18.If your website contents changes very often then provide visitor with Newsletter and RSS feed.
19.Write articles on website related to yours having higher page ranking and leave your websites link.
20.Get link from other sites related to yours, search engine consider it as vote in your favour.
Friday, October 3, 2008
Javascript
What is the difference between validation control in ASP.NET and JavaScript validation Code?
Javascript
What is the diffrence between validation control in ASP.NET and Javascript validation Code?
Saturday, September 27, 2008
All File Formats
ABK Corel Draw AutoBackup
ACL Corel Draw 6 keyboard accelerator
ACM Used by Windows in the system directory
ACP Microsoft Office Assistant Preview file
ACT Microsoft Office Assistant Actor file
ACV OS/2 drivers that compress and decompress audio data
AD After Dark screensaver
ADB Appointment database used by HP 100LX organizer
ADD OS/2 adapter drivers used in the boot process
ADM After Dark MultiModule screensaver
ADP Used by FaxWorks to do setup for fax modem interaction
ADR After Dark Randomizer screensaver
AFM Adobe font metrics
AF2 ABC Flowchart file
AF3 ABC Flowchart file
AI Adobe Illustrator drawing
AIF Apple Mac AIFF sound
ALB JASC Image Commander album
ALL Arts & Letters Library
AMS Velvert Studio music module (MOD) file
ANC Canon Computer Pattern Maker file that is a selectable list of pattern colors
ANI Animated Cursor
ANS ANSI text
API Application Program Interface file; used by Adobe Acrobat
APR Lotus Approach 97 file
APS Microsoft Visual C++ file
ARC LH ARC (old version) compressed archive
ARJ Robert Jung ARJ compressed archive
ART Xara Studio drawing
ART Canon Crayola art file
ASA Microsoft Visual InterDev file
ASC ASCII text
ASD WinWord AutoSave
ASM Assembler language source file
ASP Active Server Page (an HTML file containing a Microsoft server-processed script)
ASP Procomm Plus setup and connection script
AST Claris Works "assistant" file
ATT AT&T Group 4 bitmap
AVI Microsoft Video for Windows movie
AWD FaxView document
BAK Backup file
BAS BASIC code
BAT Batch file
BFC Windows 95 Briefcase document
BG Backgammon for Windows game
BI Binary file
BIF GroupWise initialization file
BIN Binary file
BK Sometimes used to denote backup versions
BK$ Also sometimes used to denote backup versions
BKS An IBM BookManager Read bookshelf
BMK An A bookmark file
BMP Windows or OS/2 bitmap
BM1 Apogee BioMenace data file
BRX A file for browsing an index of multimedia options
BSP Quake map
BS1 Apogee Blake Stone data file
BTM Batch file used by Norton Utilities
B4 Helix Nuts and Bolts file
C C code
CAB Microsoft cabinet file (program files compressed for software distribution)
CAL CALS Compressed Bitmap
CAL Calendar schedule data
CAS Comma-delimited ASCII file
CAT IntelliCharge categorization file used by Quicken
CB Microsoft clean boot file
CCB Visual Basic Animated Button configuration
CCF Multimedia Viewer configuration file used in OS/2
CCH Corel Chart
CCM Lotus CC:Mail "box" (for example, INBOX.CCM)
CDA CD Audio Track
CDF Microsoft Channel Definition Format file
CDI Phillips Compact Disk Interactive format
CDR Core Draw drawing
CDT Corel Draw template
CDX Corel Draw compressed drawing
CEL CIMFast Event Language file
CFB Comptons Multimedia file
CFG Configuration file
CGI Common Gateway Interface script file
CGM Computer Graphics Metafile
CH OS/2 configuration file
CHK File fragments saved by Windows Disk Defragmenter or ScanDisk
CHP Ventura Publisher chapter
CIL Clip Gallery download package
CIM Sim City 200 file
CIN OS/2 change control file that tracks changes to an INI file
CK1 iD/Apogee Commander Keen 1 data file
CK2 iD/Apogee Commander Keen 2 data file
CK3 iD/Apogee Commander Keen 3 data file
CK4 iD/Apogee Commander Keen 4 data file
CK5 iD/Apogee Commander Keen 5 data file
CK6 iD/Apogee Commander Keen 6 data file
CLASS Java class
CLP Windows Clipboard file
CLS Visual Basic Class Module
CMD Command file for Windows NT (similar to a DOS .BAT file)
CMD DOS CP/M command file
CMD dBase-II program file
CMF Corel Metafile
CMP JPEG Bitmap
CMP Address document
CMV Corel Move animation
CMX Corel Presentation Exchange image
CNF Configuration file used by Telnet, Windows, and other applications
CNM Windows application menu options and setup file
CNQ Compuworks Design Shop file
CNT Windows (or other) system content files for the help index and other purposes
COB trueSpace2 object
COD Microsoft C compiler output as displayable assembler with original C as comments
COM Command file (program)
CPD Fax Cover document
CPE Fax Cover document
CPI Microsoft MS-DOS code page information file
CPL Control Panel extension
CPL Corel colour palette
CPP C++ code
CPR Corel Presents Presentation
CPT Corel Photo-Paint image
CPX Corel Presentation Exchange Compressed drawing
CRD Cardfile file
CRP Corel Presents Run-Time Presentation
CRT Certificate file
CSC Corel Script
CSP PC Emcee On-Screen image
CSV Comma-separated values file
CT Scitex CT Bitmap
CTL Used in general to mean a file containing control information.
CUE Microsoft Cue Cards data
CUR Windows Cursor
CUT Dr Halo bitmap
CV Corel Versions archive
CV Microsoft CodeView information screen
CWK Claris Works data file
CWS Claris Works template
CXX C++ source code file
DAT Data file
DAT WordPerfect Merge Data
DBF Aston-Tate dBASE database
DBX DataBeam image
DCR Shockwave file
DCS Desktop Color Separation file
DCX Fax image (based on PCX)
DDF BTRIEVE database
DEF SmartWare II data file
DEF C++ Definition
DER Certificate file
DIB Device-Independent Bitmap
DIC Dictionary
DIF Data Interchange Format spreadsheet
DIR Macromedia Director file
DIZ Description file
DLG C++ Dialogue Script
DLL Dynamic-Link Library
DMF X-Trakker music module (MOD) file
DOC FrameMaker or FrameBuilder document
DOC WordStar document
DOC WordPerfect document
DOC Microsoft Word document
DOT Microsoft Word document Template
DPR Borland Delphi project header file
DRV Driver
DRW Micrografx Designer/Draw
DSG DooM saved game
DSM Dynamic Studio music module (MOD) file
DSP Microsoft Developer Studio project
DSQ Corel QUERY file
DSW Microsoft Developer Studio workspace
DWG AutoCAD drawing eXchange format
DXF AutoDesk Drawing Interchange format
EMF Enhanced Windows Metafile
ENC Encore file
EPS Encapsulated PostScript image
ER1 ERWin file
ERX ERWin file
EVY Envoy document
EWL Microsoft Encarta document
EXE Executable file (program)
F FORTRAN file
F77 FORTRAN file
F90 FORTRAN file
FAR Farandole Composer music module (MOD) file
FAV Microsoft Outlook navigation bar
FAX FAX Type image
FH3 Aldus Freehand 3 drawing
FIF Fractal image file
FITS CCD camera image
FLC AutoDesk FLIC animation
FLI AutoDesk FLIC animation
FLT Corel filter
FLT StarTrekker music module (MOD) file
FMB Oracle binary source code for form, version 4.0 and later
FMT Oracle text format of form, version 4.0 and later
FMT Microsoft Schedule+ print file
FMX Oracle executable form, version 4.0 and later
FOG Fontographer font
FON System font
FOR FORTRAN file
FOT Font-related file
FP FileMaker Pro file
FP1 Flying Pigs for Windows data file
FP3 FileMaker Pro file
FPX FlashPix bitmap
FRM Form
FRM FrameMaker or FrameBuilder document
FRM Oracle executable form version 3.0 and earlier
FRM Visual Basic form
FRM WordPerfect Merge form
FRX Visual Basic form stash file
GAL Corel Multimedia Manager album
GCP Ground Control Point file used in image processing of remote sensing data .
GED Graphic Environment Document (drawing)
GEM GEM metafile
GEN Ventura-Generated text file
GFC Patton&Patton Flowcharting 4 flowchart file
GFI Genigraphics Graphics Link presentation
GFX Genigraphics Graphics Link presentation
GID Windows 95 global index file (containing help status)
GIF CompuServe bitmap
GIM Genigraphics Graphics Link presentation
GIX Genigraphics Graphics Link presentation
GNA Genigraphics Graphics Link presentation
GNX Genigraphics Graphics Link presentation
GRA Microsoft Graph
GRD Grid file, used in image processing of remote sensing data often to form map projections.
GRP Program Manager Group
GTK Graoumftracker (old) music module (MOD) file
GT2 Graoumftracker (new) music module (MOD) file
GWX Genigraphics Graphics Link presentation
GWZ Genigraphics Graphics Link presentation
GZ Unix Gzip compressed file
H C program header
HED HighEdit document
HEL Microsoft Hellbender saved game
HEX Macintosh BinHex 2.0 file
HGL HP Graphics Language drawing
HLP Help file
HOG Lucas Arts Dark Forces WAD file
HPJ Visual Basic Help Project
HPP C++ program header
HQX Macintosh BinHex 4.0 file
HST History file
HT HyperTerminal
HTM Hypertext document
HTML Hypertext document
HTX Extended HTML template
ICA Citrix file
ICB Targa bitmap
ICM Image Color Matching profile file
ICO Windows Icon
IDD MIDI Instrument Definition
IDQ Internet Data Query file
IFF Amiga ILBM
IGF Inset Systems metafile
IIF QuickBooks for Windows interchange file
IMA WinImage file
IMG GEM image
INC Assembler language or Active Server include file
INF Information file
INI Initialization file
INP Oracle source code for form, version 3.0 and earlier
INS InstallShield install script
INS X-Internet sign-up file
ISO Lists the files on a CD-ROM; based on the ISO 9660 CD-ROM file system standard
ISP X-Internet sign-up file
ISU InstallShield uninstall script
IT Impulse Tracker music module (MOD) file
IW Idlewild screensaver
JAR Java ARchive file (a compressed file for applets and related files)
JAVA Java source code
JBF Paint Shop Pro image browser file
JFF JPEG bitmap
JIF JPEG bitmap
JMP SAS JMPDiscovery chart-to-statistics file
JN1 Epic MegaGames Jill of the Jungle data file
JPEG JPEG bitmap
JPG JPEG bitmap
JS JavaScript source code
JTF JPEG bitmap
KDC Kodak Photo-Enhancer
KFX KoFax Group 4 image
KYE Kye game data
LBM Deluxe Paint bitmap
LDB Microsoft Access lock file
LEG Legacy document
LHA Alternate file suffix for LZH
LIB Library
LIS Output file produced by a Structured Query Reporting (SQR) program
LOG Log file
LPD Helix Nuts and Bolts file
LRC Intel Video Phone file
LST List file
LWO Lightwave Object file
LWP Lotus Wordpro 96/97 file
LZH LH ARC compressed archive
LZS Skyroads data file
M3D Corel Motion 3D animation
MAC MacPaint image
MAD Microsoft Access module
MAF Microsoft Access Form
MAK Visual Basic or MS Visual C++ Project
MAM Microsoft Access Macro
MAP Map file
MAP Duke Nukem 3D WAD game file
MAQ Microsoft Access Query
MAR Microsoft Access Report
MAS Lotus Freelance Graphics Smartmaster file
MAT Microsoft Access Table
MAX Paperport file
MAZ Hover maze data
MB1 Apogee Monster Bash data file
MCC Dialer10 calling card
MCS MathCAD image
MCW Microsoft Word for Macintosh document
MDA Microsoft Access add-in
MDB Microsoft Access database
MDE Microsoft Access MDE file
MDL Digital Tracker music module (MOD) file
MDL Quake model file
MDN Microsoft Access blank database template
MDW Microsoft Access Workgroup
MDZ Microsoft Access wizard template
MED Music Editor, OctaMED music module (MOD) file
MER Format for interchanging spreadsheet/database data; recognized by Filemaker, Excel, and others
MET Presentation Manager metafile
MI Miscellaneous
MIC Microsoft Image Composer file
MID MIDI music
MMF Microsoft Mail File
MMM Microsoft Multimedia Movie
MOD FastTracker, StarTrekker, Noise Tracker (etc.) music module file
MOD Microsoft Multiplan spreadsheet
MOV QuickTime for Windows movie
MPE MPEG animation
MPEG MPEG animation
MPG MPEG animation
MPP Microsoft Project file
MPP CAD drawing file format
MP3 MPEG Audio Layer 3 (AC3) file
MSG Microsoft Mail message
MSN Microsoft Network document
MSP Microsoft Paint bitmap
MTM MultiTracker music module (MOD) file
MUS Music
MVB Microsoft Multimedia Viewer file
MWP Lotus Wordpro 97 Smartmaster file
NAP NAP Metafile
NCB Microsoft Developer Studio file
NSF Lotus Notes database
NST Noise Tracker music module (MOD) file
NTF Lotus Notes database template
OBD Microsoft Office binder template
OBD Microsoft Office Binder
OBJ Object file
OBZ Microsoft Office Binder Wizard
OCX Microsoft Object Linking and Embedding custom control
OFN Microsoft Office FileNew file
OFT Microsoft Outlook template
OKT Oktalyzer music module (MOD) file
OLB OLE Object Library
OLE OLE object
OPT Microsoft Developer Studio file
ORG Lotus Organiser file
OR2 Lotus Organiser 2 file
OR3 Lotus Organiser 97 file
P10 Tektronix Plot 10 drawing
PAB Microsoft Personal Address Book
PAK Quake WAD file
PAL Windows colour palette
PAT Corel Draw pattern
PBK Microsoft Phonebook
PBM Portable Bitmap
PCD Kodak Photo-CD image
PCL HP Laserjet bitmap
PCS PICS animation
PCT Macintosh PICT drawing
PCX ZSoft PC Paintbrush bitmap
PDF Adobe Acrobat Portable Document Format or Netware Printer Definition File
PDF Package Definition File from Microsoft Systems Management Server
PDQ Patton&Patton Flowcharting PDQ Lite file
PFA Type 1 font (ASCII)
PFB Type 1 font (binary)
PFC PF Component
PFM Printer Font Metrics
PGL HP Plotter drawing
PGM Portable Graymap (bitmap)
PIC PC Paint bitmap
PIC Lotus picture
PIC Macintosh PICT drawing
PIF Program Information File
PIF IBM PIF drawing
PIG Lucas Arts Dark Forces WAD file
PIN Epic Pinball data file
PIN Epic Pinball data file
PIX Inset Systems bitmap
PJ MKS Source Integrity file
PKG Microsoft Developer Studio application extension (similar to a DLL file)
PL Perl program
PLT HPGL Plotter drawing
PLT AutoCAD Plot drawing
PM5 Pagemaker 5.0 file
PM6 Pagemaker 6.0 file
P65 Pagemaker 6.5 file
PNG Portable Network Graphics bitmap
PNG Paint Shop Pro Browser catalogue
PNT MacPaint graphic file
POT Microsoft PowerPoint Template
PP4 Picture Publisher 4 bitmap
PPA Microsoft PowerPoint Add-in
PPM Portable Pixelmap bitmap
PPS Microsoft PowerPoint slide show
PPT Microsoft PowerPoint presentation
PRE Lotus Freelance presentation
PRF Windows system file
PRN Print Table (space delimited text)
PRS Harvard Graphics for Windows presentation
PRZ Lotus Freelance Graphics 97 file
PS Postscript Interpreted drawing
PSD Adobe Photoshop bitmap
PST Microsoft Outlook Personal Folder File
PTM Polytracker music module (MOD) file
PUB Ventura Publisher publication
PUB Microsoft Publisher document
PWD Microsoft Pocket Word document
PWZ Microsoft PowerPoint Wizard
PXL Microsoft Pocket Excel spreadsheet
QAD PF QuickArt Document
QBW QuickBooks for Windows file
QDT Quick Books data file from the Quicken UK Accountancy/Tax/Invoice program
QLB Quick Library
QRY Microsoft Query
QT QuickTime Movie
QTM QuickTime Movie
QXD Quark XPress file
R Pegasus Mail resource file
RA Real Audio sound
RAM Real Audio sound
RAS Sun Raster Images bitmap
RAW Raw File Format (bitmap)
RC Microsoft Visual C++ Resource Script
REC Recorder macro
REG Registration file
RES Microsoft Visual C++ Resource
RFT RFT-DCA
RLE Run-Length Encoded bitmap
RM Real Audio video file
RMI MIDI music
ROV Rescue Rover data file
RPT Microsoft Visual Basic Crystal Reports file
RTF Rich Text Format document
RTM Real Tracker music module (MOD) file
SAM Ami Professional document
SAV Saved game file
SCC Microsoft Source Safe file
SCD Matrix/Imapro SCODL slide image
SCD Microsoft Schedule+ 7
SCH Microsoft Schedule+ 1
SCN trueSpace2 scene
SCP Dial-Up Networking Script
SCR Windows screensaver
SCR Fax image
SCT Scitex CT bitmap
SC2 Microsoft Schedule+ 7
SDL SmartDraw library
SDR SmartDraw drawing
SDT SmartDraw template
SEA Self-expanding archive (used by Stuffit for Mac files and possibly by others)
SEP Tagged Image File Format (TIFF) bitmap
SHB Corel Show presentation
SHB Document shortcut file
SHG Hotspot bitmap
SHS Shell scrap file
SHW Corel Show presentation
SIT Stuffit archive of Mac files
SLK Symbolic Link (SYLK) spreadsheet
SND NeXT sound
SND Mac Sound Resource
SQC Structured Query Language (SQR) common code file
SQR Structured Query Language (SQR) program file
STM Scream Tracker music module (MOD) file
STY Ventura Publisher style sheet
SVX Amiga 8SVX sound
SYS System file
S3M Scream Tracker 3 music module (MOD) file
TAR Tape Archive
TAZ Unix Gzip/Tape Archive
TEX Texture file
TGA Targa bitmap
TGZ Unix Gzip/Tape Archive
THEME Windows 95 Desktop Theme
THN Graphics Workshop for Windows thumbnail
TIF Tag Image File Format (TIFF) bitmap
TIFF Tag Image File Format (TIFF) bitmap
TIG Tiger file, used by US government to distribute maps
TLB OLE Type Library
TMP Windows temporary file
TRM Terminal file
TRN MKS Source Integrity project usage log
TTF TrueType font
TWF TabWorks file
TWW Tagwrite Template
TX8 MS-DOS Text
TXT Text
T2T Sonata CAD modelling software file
UDF Windows NT Uniqueness Database File
ULT Ultratracker music module (MOD) file
URL Internet shortcut
USE MKS Source Integrity file
VBP Visual Basic Project
VBW Microsoft Visual Basic workspace
VBX Visual Basic custom control
VCF Vevi Configuration File; defines objects for use with Sense8's WorldToolKit
VDA Targa bitmap
VI Virtual Instrument file from National Instruments LABView product
VLB Corel Ventura Library
VOC Creative Labs Sound Blaster sound
VP Ventura Publisher publication
VSD Visio drawing (flow chart or schematic)
VST Targa bitmap
VSW Visio Workspace file
VXD Microsoft Windows virtual device driver
WAD Large file for Doom game containing video, player level, and other information
WAV Windows Waveform sound
WB1 QuattroPro for Windows spreadsheet
WB2 QuattroPro for Windows spreadsheet
WBK Microsoft Word Backup
WBL Argo WebLoad II upload file
WCM WordPerfect Macro
WDB Microsoft Works database
WEB CorelXara Web document
WGP Wild Board Games data file
WID Ventura width table
WIL WinImage file
WIZ Microsoft Word Wizard
WK1 Lotus 123 versions 1 & 2 spreadsheet
WK3 Lotus 123 version 3 spreadsheet
WK4 Lotus 123 version 4 spreadsheet
WKS Lotus 123 Worksheet spreadsheet
WKS Microsoft Works document
WLF Argo WebLoad I upload file
WLL Microsoft Word Add-In
WMF Windows Metafile
WOW Grave Composer music module (MOD) file
WP WordPerfect document
WPW Novel PerfectWorks document
WP4 WordPerfect 4 document
WP5 WordPerfect 5 document
WP6 WordPerfect 6 document
WPD WordPerfect Demo
WPD WordPerfect Document
WPG WordPerfect Graphic
WPS Microsoft Works document
WPT WordPerfect Template
WQ1 QuattroPro/DOS spreadsheet
WQ2 QuattroPro/DOS version 5 spreadsheet
WRI Write document
WRL Virtual Reality model
WS1 WordStar for Windows 1 document
WS2 WordStar for Windows 2 document
WS3 WordStar for Windows 3 document
WS4 WordStar for Windows 4 document
WS5 WordStar for Windows 5 document
WS6 WordStar for Windows 6 document
WS7 WordStar for Windows 7 document
WSD WordStar 2000 document
WVL Wavelet Compressed Bitmap
XAR Corel Xara drawing
XLA Microsoft Excel add-in
XLB Microsoft Excel toolbar
XLC Microsoft Excel chart
XLD Microsoft Excel dialogue
XLK Microsoft Excel backup
XLM Microsoft Excel macro
XLS Microsoft Excel worksheet
XLT Microsoft Excel template
XLV Microsoft Excel VBA module
XLW Microsoft Excel workbook / workspace
XM FastTracker 2, Digital Tracker music module (MOD) file
XR1 Epic MegaGames Xargon data file
XTP XTree data file
XY3 XYWrite III document
XY4 XYWrite IV document
XYP XYWrite III Plus document
XYW XYWrite for Windows 4.0 document
YAL Arts & Letters clipart library
YBK Microsoft Encarta Yearbook
Z Unix Gzip
ZIP Zip file
ZOO An early compressed file format
ACL Corel Draw 6 keyboard accelerator
ACM Used by Windows in the system directory
ACP Microsoft Office Assistant Preview file
ACT Microsoft Office Assistant Actor file
ACV OS/2 drivers that compress and decompress audio data
AD After Dark screensaver
ADB Appointment database used by HP 100LX organizer
ADD OS/2 adapter drivers used in the boot process
ADM After Dark MultiModule screensaver
ADP Used by FaxWorks to do setup for fax modem interaction
ADR After Dark Randomizer screensaver
AFM Adobe font metrics
AF2 ABC Flowchart file
AF3 ABC Flowchart file
AI Adobe Illustrator drawing
AIF Apple Mac AIFF sound
ALB JASC Image Commander album
ALL Arts & Letters Library
AMS Velvert Studio music module (MOD) file
ANC Canon Computer Pattern Maker file that is a selectable list of pattern colors
ANI Animated Cursor
ANS ANSI text
API Application Program Interface file; used by Adobe Acrobat
APR Lotus Approach 97 file
APS Microsoft Visual C++ file
ARC LH ARC (old version) compressed archive
ARJ Robert Jung ARJ compressed archive
ART Xara Studio drawing
ART Canon Crayola art file
ASA Microsoft Visual InterDev file
ASC ASCII text
ASD WinWord AutoSave
ASM Assembler language source file
ASP Active Server Page (an HTML file containing a Microsoft server-processed script)
ASP Procomm Plus setup and connection script
AST Claris Works "assistant" file
ATT AT&T Group 4 bitmap
AVI Microsoft Video for Windows movie
AWD FaxView document
BAK Backup file
BAS BASIC code
BAT Batch file
BFC Windows 95 Briefcase document
BG Backgammon for Windows game
BI Binary file
BIF GroupWise initialization file
BIN Binary file
BK Sometimes used to denote backup versions
BK$ Also sometimes used to denote backup versions
BKS An IBM BookManager Read bookshelf
BMK An A bookmark file
BMP Windows or OS/2 bitmap
BM1 Apogee BioMenace data file
BRX A file for browsing an index of multimedia options
BSP Quake map
BS1 Apogee Blake Stone data file
BTM Batch file used by Norton Utilities
B4 Helix Nuts and Bolts file
C C code
CAB Microsoft cabinet file (program files compressed for software distribution)
CAL CALS Compressed Bitmap
CAL Calendar schedule data
CAS Comma-delimited ASCII file
CAT IntelliCharge categorization file used by Quicken
CB Microsoft clean boot file
CCB Visual Basic Animated Button configuration
CCF Multimedia Viewer configuration file used in OS/2
CCH Corel Chart
CCM Lotus CC:Mail "box" (for example, INBOX.CCM)
CDA CD Audio Track
CDF Microsoft Channel Definition Format file
CDI Phillips Compact Disk Interactive format
CDR Core Draw drawing
CDT Corel Draw template
CDX Corel Draw compressed drawing
CEL CIMFast Event Language file
CFB Comptons Multimedia file
CFG Configuration file
CGI Common Gateway Interface script file
CGM Computer Graphics Metafile
CH OS/2 configuration file
CHK File fragments saved by Windows Disk Defragmenter or ScanDisk
CHP Ventura Publisher chapter
CIL Clip Gallery download package
CIM Sim City 200 file
CIN OS/2 change control file that tracks changes to an INI file
CK1 iD/Apogee Commander Keen 1 data file
CK2 iD/Apogee Commander Keen 2 data file
CK3 iD/Apogee Commander Keen 3 data file
CK4 iD/Apogee Commander Keen 4 data file
CK5 iD/Apogee Commander Keen 5 data file
CK6 iD/Apogee Commander Keen 6 data file
CLASS Java class
CLP Windows Clipboard file
CLS Visual Basic Class Module
CMD Command file for Windows NT (similar to a DOS .BAT file)
CMD DOS CP/M command file
CMD dBase-II program file
CMF Corel Metafile
CMP JPEG Bitmap
CMP Address document
CMV Corel Move animation
CMX Corel Presentation Exchange image
CNF Configuration file used by Telnet, Windows, and other applications
CNM Windows application menu options and setup file
CNQ Compuworks Design Shop file
CNT Windows (or other) system content files for the help index and other purposes
COB trueSpace2 object
COD Microsoft C compiler output as displayable assembler with original C as comments
COM Command file (program)
CPD Fax Cover document
CPE Fax Cover document
CPI Microsoft MS-DOS code page information file
CPL Control Panel extension
CPL Corel colour palette
CPP C++ code
CPR Corel Presents Presentation
CPT Corel Photo-Paint image
CPX Corel Presentation Exchange Compressed drawing
CRD Cardfile file
CRP Corel Presents Run-Time Presentation
CRT Certificate file
CSC Corel Script
CSP PC Emcee On-Screen image
CSV Comma-separated values file
CT Scitex CT Bitmap
CTL Used in general to mean a file containing control information.
CUE Microsoft Cue Cards data
CUR Windows Cursor
CUT Dr Halo bitmap
CV Corel Versions archive
CV Microsoft CodeView information screen
CWK Claris Works data file
CWS Claris Works template
CXX C++ source code file
DAT Data file
DAT WordPerfect Merge Data
DBF Aston-Tate dBASE database
DBX DataBeam image
DCR Shockwave file
DCS Desktop Color Separation file
DCX Fax image (based on PCX)
DDF BTRIEVE database
DEF SmartWare II data file
DEF C++ Definition
DER Certificate file
DIB Device-Independent Bitmap
DIC Dictionary
DIF Data Interchange Format spreadsheet
DIR Macromedia Director file
DIZ Description file
DLG C++ Dialogue Script
DLL Dynamic-Link Library
DMF X-Trakker music module (MOD) file
DOC FrameMaker or FrameBuilder document
DOC WordStar document
DOC WordPerfect document
DOC Microsoft Word document
DOT Microsoft Word document Template
DPR Borland Delphi project header file
DRV Driver
DRW Micrografx Designer/Draw
DSG DooM saved game
DSM Dynamic Studio music module (MOD) file
DSP Microsoft Developer Studio project
DSQ Corel QUERY file
DSW Microsoft Developer Studio workspace
DWG AutoCAD drawing eXchange format
DXF AutoDesk Drawing Interchange format
EMF Enhanced Windows Metafile
ENC Encore file
EPS Encapsulated PostScript image
ER1 ERWin file
ERX ERWin file
EVY Envoy document
EWL Microsoft Encarta document
EXE Executable file (program)
F FORTRAN file
F77 FORTRAN file
F90 FORTRAN file
FAR Farandole Composer music module (MOD) file
FAV Microsoft Outlook navigation bar
FAX FAX Type image
FH3 Aldus Freehand 3 drawing
FIF Fractal image file
FITS CCD camera image
FLC AutoDesk FLIC animation
FLI AutoDesk FLIC animation
FLT Corel filter
FLT StarTrekker music module (MOD) file
FMB Oracle binary source code for form, version 4.0 and later
FMT Oracle text format of form, version 4.0 and later
FMT Microsoft Schedule+ print file
FMX Oracle executable form, version 4.0 and later
FOG Fontographer font
FON System font
FOR FORTRAN file
FOT Font-related file
FP FileMaker Pro file
FP1 Flying Pigs for Windows data file
FP3 FileMaker Pro file
FPX FlashPix bitmap
FRM Form
FRM FrameMaker or FrameBuilder document
FRM Oracle executable form version 3.0 and earlier
FRM Visual Basic form
FRM WordPerfect Merge form
FRX Visual Basic form stash file
GAL Corel Multimedia Manager album
GCP Ground Control Point file used in image processing of remote sensing data .
GED Graphic Environment Document (drawing)
GEM GEM metafile
GEN Ventura-Generated text file
GFC Patton&Patton Flowcharting 4 flowchart file
GFI Genigraphics Graphics Link presentation
GFX Genigraphics Graphics Link presentation
GID Windows 95 global index file (containing help status)
GIF CompuServe bitmap
GIM Genigraphics Graphics Link presentation
GIX Genigraphics Graphics Link presentation
GNA Genigraphics Graphics Link presentation
GNX Genigraphics Graphics Link presentation
GRA Microsoft Graph
GRD Grid file, used in image processing of remote sensing data often to form map projections.
GRP Program Manager Group
GTK Graoumftracker (old) music module (MOD) file
GT2 Graoumftracker (new) music module (MOD) file
GWX Genigraphics Graphics Link presentation
GWZ Genigraphics Graphics Link presentation
GZ Unix Gzip compressed file
H C program header
HED HighEdit document
HEL Microsoft Hellbender saved game
HEX Macintosh BinHex 2.0 file
HGL HP Graphics Language drawing
HLP Help file
HOG Lucas Arts Dark Forces WAD file
HPJ Visual Basic Help Project
HPP C++ program header
HQX Macintosh BinHex 4.0 file
HST History file
HT HyperTerminal
HTM Hypertext document
HTML Hypertext document
HTX Extended HTML template
ICA Citrix file
ICB Targa bitmap
ICM Image Color Matching profile file
ICO Windows Icon
IDD MIDI Instrument Definition
IDQ Internet Data Query file
IFF Amiga ILBM
IGF Inset Systems metafile
IIF QuickBooks for Windows interchange file
IMA WinImage file
IMG GEM image
INC Assembler language or Active Server include file
INF Information file
INI Initialization file
INP Oracle source code for form, version 3.0 and earlier
INS InstallShield install script
INS X-Internet sign-up file
ISO Lists the files on a CD-ROM; based on the ISO 9660 CD-ROM file system standard
ISP X-Internet sign-up file
ISU InstallShield uninstall script
IT Impulse Tracker music module (MOD) file
IW Idlewild screensaver
JAR Java ARchive file (a compressed file for applets and related files)
JAVA Java source code
JBF Paint Shop Pro image browser file
JFF JPEG bitmap
JIF JPEG bitmap
JMP SAS JMPDiscovery chart-to-statistics file
JN1 Epic MegaGames Jill of the Jungle data file
JPEG JPEG bitmap
JPG JPEG bitmap
JS JavaScript source code
JTF JPEG bitmap
KDC Kodak Photo-Enhancer
KFX KoFax Group 4 image
KYE Kye game data
LBM Deluxe Paint bitmap
LDB Microsoft Access lock file
LEG Legacy document
LHA Alternate file suffix for LZH
LIB Library
LIS Output file produced by a Structured Query Reporting (SQR) program
LOG Log file
LPD Helix Nuts and Bolts file
LRC Intel Video Phone file
LST List file
LWO Lightwave Object file
LWP Lotus Wordpro 96/97 file
LZH LH ARC compressed archive
LZS Skyroads data file
M3D Corel Motion 3D animation
MAC MacPaint image
MAD Microsoft Access module
MAF Microsoft Access Form
MAK Visual Basic or MS Visual C++ Project
MAM Microsoft Access Macro
MAP Map file
MAP Duke Nukem 3D WAD game file
MAQ Microsoft Access Query
MAR Microsoft Access Report
MAS Lotus Freelance Graphics Smartmaster file
MAT Microsoft Access Table
MAX Paperport file
MAZ Hover maze data
MB1 Apogee Monster Bash data file
MCC Dialer10 calling card
MCS MathCAD image
MCW Microsoft Word for Macintosh document
MDA Microsoft Access add-in
MDB Microsoft Access database
MDE Microsoft Access MDE file
MDL Digital Tracker music module (MOD) file
MDL Quake model file
MDN Microsoft Access blank database template
MDW Microsoft Access Workgroup
MDZ Microsoft Access wizard template
MED Music Editor, OctaMED music module (MOD) file
MER Format for interchanging spreadsheet/database data; recognized by Filemaker, Excel, and others
MET Presentation Manager metafile
MI Miscellaneous
MIC Microsoft Image Composer file
MID MIDI music
MMF Microsoft Mail File
MMM Microsoft Multimedia Movie
MOD FastTracker, StarTrekker, Noise Tracker (etc.) music module file
MOD Microsoft Multiplan spreadsheet
MOV QuickTime for Windows movie
MPE MPEG animation
MPEG MPEG animation
MPG MPEG animation
MPP Microsoft Project file
MPP CAD drawing file format
MP3 MPEG Audio Layer 3 (AC3) file
MSG Microsoft Mail message
MSN Microsoft Network document
MSP Microsoft Paint bitmap
MTM MultiTracker music module (MOD) file
MUS Music
MVB Microsoft Multimedia Viewer file
MWP Lotus Wordpro 97 Smartmaster file
NAP NAP Metafile
NCB Microsoft Developer Studio file
NSF Lotus Notes database
NST Noise Tracker music module (MOD) file
NTF Lotus Notes database template
OBD Microsoft Office binder template
OBD Microsoft Office Binder
OBJ Object file
OBZ Microsoft Office Binder Wizard
OCX Microsoft Object Linking and Embedding custom control
OFN Microsoft Office FileNew file
OFT Microsoft Outlook template
OKT Oktalyzer music module (MOD) file
OLB OLE Object Library
OLE OLE object
OPT Microsoft Developer Studio file
ORG Lotus Organiser file
OR2 Lotus Organiser 2 file
OR3 Lotus Organiser 97 file
P10 Tektronix Plot 10 drawing
PAB Microsoft Personal Address Book
PAK Quake WAD file
PAL Windows colour palette
PAT Corel Draw pattern
PBK Microsoft Phonebook
PBM Portable Bitmap
PCD Kodak Photo-CD image
PCL HP Laserjet bitmap
PCS PICS animation
PCT Macintosh PICT drawing
PCX ZSoft PC Paintbrush bitmap
PDF Adobe Acrobat Portable Document Format or Netware Printer Definition File
PDF Package Definition File from Microsoft Systems Management Server
PDQ Patton&Patton Flowcharting PDQ Lite file
PFA Type 1 font (ASCII)
PFB Type 1 font (binary)
PFC PF Component
PFM Printer Font Metrics
PGL HP Plotter drawing
PGM Portable Graymap (bitmap)
PIC PC Paint bitmap
PIC Lotus picture
PIC Macintosh PICT drawing
PIF Program Information File
PIF IBM PIF drawing
PIG Lucas Arts Dark Forces WAD file
PIN Epic Pinball data file
PIN Epic Pinball data file
PIX Inset Systems bitmap
PJ MKS Source Integrity file
PKG Microsoft Developer Studio application extension (similar to a DLL file)
PL Perl program
PLT HPGL Plotter drawing
PLT AutoCAD Plot drawing
PM5 Pagemaker 5.0 file
PM6 Pagemaker 6.0 file
P65 Pagemaker 6.5 file
PNG Portable Network Graphics bitmap
PNG Paint Shop Pro Browser catalogue
PNT MacPaint graphic file
POT Microsoft PowerPoint Template
PP4 Picture Publisher 4 bitmap
PPA Microsoft PowerPoint Add-in
PPM Portable Pixelmap bitmap
PPS Microsoft PowerPoint slide show
PPT Microsoft PowerPoint presentation
PRE Lotus Freelance presentation
PRF Windows system file
PRN Print Table (space delimited text)
PRS Harvard Graphics for Windows presentation
PRZ Lotus Freelance Graphics 97 file
PS Postscript Interpreted drawing
PSD Adobe Photoshop bitmap
PST Microsoft Outlook Personal Folder File
PTM Polytracker music module (MOD) file
PUB Ventura Publisher publication
PUB Microsoft Publisher document
PWD Microsoft Pocket Word document
PWZ Microsoft PowerPoint Wizard
PXL Microsoft Pocket Excel spreadsheet
QAD PF QuickArt Document
QBW QuickBooks for Windows file
QDT Quick Books data file from the Quicken UK Accountancy/Tax/Invoice program
QLB Quick Library
QRY Microsoft Query
QT QuickTime Movie
QTM QuickTime Movie
QXD Quark XPress file
R Pegasus Mail resource file
RA Real Audio sound
RAM Real Audio sound
RAS Sun Raster Images bitmap
RAW Raw File Format (bitmap)
RC Microsoft Visual C++ Resource Script
REC Recorder macro
REG Registration file
RES Microsoft Visual C++ Resource
RFT RFT-DCA
RLE Run-Length Encoded bitmap
RM Real Audio video file
RMI MIDI music
ROV Rescue Rover data file
RPT Microsoft Visual Basic Crystal Reports file
RTF Rich Text Format document
RTM Real Tracker music module (MOD) file
SAM Ami Professional document
SAV Saved game file
SCC Microsoft Source Safe file
SCD Matrix/Imapro SCODL slide image
SCD Microsoft Schedule+ 7
SCH Microsoft Schedule+ 1
SCN trueSpace2 scene
SCP Dial-Up Networking Script
SCR Windows screensaver
SCR Fax image
SCT Scitex CT bitmap
SC2 Microsoft Schedule+ 7
SDL SmartDraw library
SDR SmartDraw drawing
SDT SmartDraw template
SEA Self-expanding archive (used by Stuffit for Mac files and possibly by others)
SEP Tagged Image File Format (TIFF) bitmap
SHB Corel Show presentation
SHB Document shortcut file
SHG Hotspot bitmap
SHS Shell scrap file
SHW Corel Show presentation
SIT Stuffit archive of Mac files
SLK Symbolic Link (SYLK) spreadsheet
SND NeXT sound
SND Mac Sound Resource
SQC Structured Query Language (SQR) common code file
SQR Structured Query Language (SQR) program file
STM Scream Tracker music module (MOD) file
STY Ventura Publisher style sheet
SVX Amiga 8SVX sound
SYS System file
S3M Scream Tracker 3 music module (MOD) file
TAR Tape Archive
TAZ Unix Gzip/Tape Archive
TEX Texture file
TGA Targa bitmap
TGZ Unix Gzip/Tape Archive
THEME Windows 95 Desktop Theme
THN Graphics Workshop for Windows thumbnail
TIF Tag Image File Format (TIFF) bitmap
TIFF Tag Image File Format (TIFF) bitmap
TIG Tiger file, used by US government to distribute maps
TLB OLE Type Library
TMP Windows temporary file
TRM Terminal file
TRN MKS Source Integrity project usage log
TTF TrueType font
TWF TabWorks file
TWW Tagwrite Template
TX8 MS-DOS Text
TXT Text
T2T Sonata CAD modelling software file
UDF Windows NT Uniqueness Database File
ULT Ultratracker music module (MOD) file
URL Internet shortcut
USE MKS Source Integrity file
VBP Visual Basic Project
VBW Microsoft Visual Basic workspace
VBX Visual Basic custom control
VCF Vevi Configuration File; defines objects for use with Sense8's WorldToolKit
VDA Targa bitmap
VI Virtual Instrument file from National Instruments LABView product
VLB Corel Ventura Library
VOC Creative Labs Sound Blaster sound
VP Ventura Publisher publication
VSD Visio drawing (flow chart or schematic)
VST Targa bitmap
VSW Visio Workspace file
VXD Microsoft Windows virtual device driver
WAD Large file for Doom game containing video, player level, and other information
WAV Windows Waveform sound
WB1 QuattroPro for Windows spreadsheet
WB2 QuattroPro for Windows spreadsheet
WBK Microsoft Word Backup
WBL Argo WebLoad II upload file
WCM WordPerfect Macro
WDB Microsoft Works database
WEB CorelXara Web document
WGP Wild Board Games data file
WID Ventura width table
WIL WinImage file
WIZ Microsoft Word Wizard
WK1 Lotus 123 versions 1 & 2 spreadsheet
WK3 Lotus 123 version 3 spreadsheet
WK4 Lotus 123 version 4 spreadsheet
WKS Lotus 123 Worksheet spreadsheet
WKS Microsoft Works document
WLF Argo WebLoad I upload file
WLL Microsoft Word Add-In
WMF Windows Metafile
WOW Grave Composer music module (MOD) file
WP WordPerfect document
WPW Novel PerfectWorks document
WP4 WordPerfect 4 document
WP5 WordPerfect 5 document
WP6 WordPerfect 6 document
WPD WordPerfect Demo
WPD WordPerfect Document
WPG WordPerfect Graphic
WPS Microsoft Works document
WPT WordPerfect Template
WQ1 QuattroPro/DOS spreadsheet
WQ2 QuattroPro/DOS version 5 spreadsheet
WRI Write document
WRL Virtual Reality model
WS1 WordStar for Windows 1 document
WS2 WordStar for Windows 2 document
WS3 WordStar for Windows 3 document
WS4 WordStar for Windows 4 document
WS5 WordStar for Windows 5 document
WS6 WordStar for Windows 6 document
WS7 WordStar for Windows 7 document
WSD WordStar 2000 document
WVL Wavelet Compressed Bitmap
XAR Corel Xara drawing
XLA Microsoft Excel add-in
XLB Microsoft Excel toolbar
XLC Microsoft Excel chart
XLD Microsoft Excel dialogue
XLK Microsoft Excel backup
XLM Microsoft Excel macro
XLS Microsoft Excel worksheet
XLT Microsoft Excel template
XLV Microsoft Excel VBA module
XLW Microsoft Excel workbook / workspace
XM FastTracker 2, Digital Tracker music module (MOD) file
XR1 Epic MegaGames Xargon data file
XTP XTree data file
XY3 XYWrite III document
XY4 XYWrite IV document
XYP XYWrite III Plus document
XYW XYWrite for Windows 4.0 document
YAL Arts & Letters clipart library
YBK Microsoft Encarta Yearbook
Z Unix Gzip
ZIP Zip file
ZOO An early compressed file format
Thursday, September 25, 2008
ASP.NET MemberShip API
I got chance to use MemberShip Concept in Asp.Net,Its very nice one and also we can reduce the Security Issue.
This link Explain as MemberShip Details : http://msdn.microsoft.com/enus/library/ms998347.aspx
This link Explain as MemberShip Details : http://msdn.microsoft.com/enus/library/ms998347.aspx
Subscribe to:
Posts (Atom)