Monday, October 27, 2008

Happy Diwali 2008

Good wishes for a joyous Diwali,
with a plenty of peace and prosperity.



Thanks & Regards,
Pavan Gadey
http://gadeypavan.blogspot.com/




Wednesday, October 15, 2008

Beginning.ASP.NET.2.0.with.C.Sharp

Category: ASP & ASP.Net
Language: English
FileType: PDF
File size: 13861 KB
Note: ASP.NET 2.0 is an amazing technology that allows you to develop web sites and applications with very little hassle, and its power and depth enable it to host even the most complex applications available. Using code examples in C#, this invaluable beginner's guide shows you how to program web applications in ASP.NET 2.0 and see dynamic results with minimal effort.Through detailed explanations and working C# code examples, this popular author team eases you into the world of ASP.NET development and gradually introduces you to all sorts of interesting ASP.NET tricks and tools. You'll quickly see how ASP.NET 2.0 is designed to ensure a significant reduction in the amount of code you have to write¡ÂȘand, in turn, to make your life easier.

Thursday, September 25, 2008

Check configuration and how to know IIS 5.1 is working.

1. Verify that IISadmin/World wide web publishing / Simple mail transfer protocol services are started in Services.msc. ( To open Services console - Just click Start>Run - Type services.msc then hit enter.)

2. If all above services are up and running - Open IIS manager - Start>Run> Type "inetmgr" - hit enter - This will open IIS MMC.

3. You should see computer name listed in IIS MMC - Expand that -

See websites > Default web site> Hightlight that default website -

See on the right hand side console - you will all files and directories lister -

Select Postinfo.html or IISStart.asp and choose Browse. -

If these pages are working fine - IIS seems to be working Good.

4. To fix the ASP.NET issue - Go to ASP.NET 2.0 Installation folder - Here how you can do it
- Open Command Prompt - Then Changed directory to

C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727> Type aspnet_regiis -i

This will show - started installing asp.net 2.0 - Once this is finished - Do iisreset from the same command line.

Now try creating project through Visual Studio.

Thursday, August 14, 2008

Recover your mobile phone stolen


An excellent program! It works like this: You install the program on your phone and it saves information on the equipment and the chip. You set up a number of other cell (may not be the same) as the emergency number. If you lose or steal your mobile phone and the person is not you return and put another chip on your phone, the program realizes the new chip and automatically sends the number of new chip for its emergency number via SMS. Then you can call and ask for your phone back or bring the number in the police.



Saturday, August 2, 2008

Friendship Day SmS Collection By PavanGadey


Friendship is not about finding similarities, it is about respecting differences. You are not my friend coz you are like me, but because i accept you and respect you the way you are.

By pavanGadey



Thank you for touching my life in ways you may never know. My riches do not lie in material wealth, but in having friend like you - a precious gift from God.

By pavanGadey



Good FRIENDS CaRE for each Other..
CLoSE Friends UNDERSTaND each Other...
and TRUE Friends STaY forever
beyond words,
beyond time...**

By pavanGadey



FRiEND in different lanaguages...
Iranian - DOST
German - FREUND
Herbew - CHAVER
French - AMi
Pinoy - KAiBiGAN
Dutch - VREND
Mexican - AMiGO

For me.. just simply "YOU"

By pavanGadey



Stars has 5 ends
Square has 4 ends
Trinagle has 3 ends
Line has 2 ends
but Circle of our friendship has no end...

By pavanGadey



A daily thought...

A silent tear...

A Constant wish that u r near...

Words are few but thoughts r deep...

Memories of our frenship i'll always keep!!

By pavanGadey



Being a friend is not just sharing a joke, a conversation, a cup of coffee or a funny story. It means sharing an honest and true part of yourself.

By pavanGadey



In this cruel world it is very difficult to find friend with beautiful heart, pure feelings, attractive personality & stylish looks. So learn to value me!

By pavanGadey



When I was born, GOD said, "Oh No! Another IDIOT". When you were born, GOD said, "OH No! COMPETITION". Who knew, one day these two will become FREINDS FOREVER!

By pavanGadey



Sometimes in life we think we don't need anyone. But sometime we don't have anyone when we need... So don't let your best buddies go ever...

By pavanGadey

Wednesday, July 30, 2008

PowerMenu

PowerMenu is a small application I wrote back in 1998 that some extra menu items to the windows control menu in addition to the standard "Close", "Maximize", etc options. The extra menus are: Always On Top, Transparency and Minimize To Tray.




I've created a simple one click installer for PowerMenu.

PowerMenu Download Installer

Tuesday, July 29, 2008

Vista wallpapers collection by gadeypavan

http://rapidshare.com/files/133351611/Vista_Papers.zip

Monday, July 21, 2008

Sql Syntax

SQL > SQL Syntax

In this page, we list the SQL syntax for each of the SQL commands in this tutorial. For detailed explanations of each SQL syntax, please go to the individual section by clicking on the keyword.

The purpose of this page is to have a quick reference page for SQL syntax, so you can learn SQL more quickly. Bookmark this page now by pressing Control-D so you can have this syntax page handy.

Select Statement
SELECT "column_name" FROM "table_name"

Distinct
SELECT DISTINCT "column_name"
FROM "table_name"

Where
SELECT "column_name"
FROM "table_name"
WHERE "condition"

And/Or
SELECT "column_name"
FROM "table_name"
WHERE "simple condition"
{[AND|OR] "simple condition"}+

In
SELECT "column_name"
FROM "table_name"
WHERE "column_name" IN ('value1', 'value2', ...)

Between
SELECT "column_name"
FROM "table_name"
WHERE "column_name" BETWEEN 'value1' AND 'value2'

Like
SELECT "column_name"
FROM "table_name"
WHERE "column_name" LIKE {PATTERN}

Order By
SELECT "column_name"
FROM "table_name"
[WHERE "condition"]
ORDER BY "column_name" [ASC, DESC]

Count
SELECT COUNT("column_name")
FROM "table_name"

Group By
SELECT "column_name1", SUM("column_name2")
FROM "table_name"
GROUP BY "column_name1"

Having
SELECT "column_name1", SUM("column_name2")
FROM "table_name"
GROUP BY "column_name1"
HAVING (arithematic function condition)

Create Table Statement
CREATE TABLE "table_name"
("column 1" "data_type_for_column_1",
"column 2" "data_type_for_column_2",
... )

Drop Table Statement
DROP TABLE "table_name"

Truncate Table Statement
TRUNCATE TABLE "table_name"

Insert Into Statement
INSERT INTO "table_name" ("column1", "column2", ...)
VALUES ("value1", "value2", ...)

Update Statement
UPDATE "table_name"
SET "column_1" = [new value]
WHERE {condition}

Delete From Statement
DELETE FROM "table_name"
WHERE {condition}

Friday, July 4, 2008

C Language interview questions i collected

C Language interview questions i collected



http://rapidshare.com/files/127073690/C__test_consists_of_50_questions_by_navap.doc

http://rapidshare.com/files/127073968/C_Interview_Questions2_by_navap.doc.html

Friday, June 27, 2008

A Complete guide for Resume making

Resume Writing Book


A Complete guide for Resume making


Indeed a complete guide and a best one.

check it and start preparing a great resume for a great Career ahead





Monday, June 9, 2008

C# BOOKS

C# 2.0 The Complete_Reference
http://rapidshare.com/files/81875857...0072262095.pdf

LINQ for Visual C Sharp
http://rapidshare.com/files/81875923...5.Jan.2007.pdf

Thinking in C# Revision 1
http://rapidshare.com/files/81876219...evision.1_.pdf

C# Essentials 2nd Edition
http://rapidshare.com/files/81875901...nd_Edition.pdf

Sybex-Visual C# .NET Developers Handbook
http://rapidshare.com/files/81876107...s_Handbook.pdf

C Sharp Language Reference 0.17b Jun 2000
http://rapidshare.com/files/81875798..._Jun_2000_.pdf

C# .NET web developing
http://rapidshare.com/files/81875893...developing.pdf

Sybex-Visual C# .NET Programming
http://rapidshare.com/files/81876171...rogramming.pdf

Addison Wesley Essential C Sharp 2.0.Jul.2006
http://rapidshare.com/files/81875741...0.Jul.2006.chm

MS Press-Programming Microsoft Windows with Csharp
http://rapidshare.com/files/81876016...ith_Csharp.pdf

Oreilly-programming C#
http://rapidshare.com/files/81876052...ramming_c_.pdf

Visual CSharp 2005 How to Program 2Ed
http://rapidshare.com/files/81876479...rogram.2Ed.chm

Beginning C Sharp 2005 Databases
http://rapidshare.com/files/81875783...s.Oct.2006.pdf

CSharp Bible
http://rapidshare.com/files/81871231/CSharp_Bible.pdf

Sams Teach Yourself Visual CSharp 2005 In 24 Hoursplete Starter Kit
http://rapidshare.com/files/81873122...tarter_Kit.chm

OOP With Microsoft VB.Net And CSharp Step By Step
http://rapidshare.com/files/81872737...ep_By_Step.pdf


Inside Threading CSharp CShap
http://rapidshare.com/files/81872278/Learning_CShap.chm

Sams Teach Yourself The CSharp Language in 21 Days
http://rapidshare.com/files/81873010...in_21_Days.pdf

CSharp 2005 for Dummies
http://rapidshare.com/files/81870969...or_Dummies.pdf

Visual CSharp 2005 Express Edition Starter Kit
http://rapidshare.com/files/81873306...tarter_Kit.pdf

Mastering CSharp Database Programming
http://rapidshare.com/files/81872459...rogramming.chm

Expert CSharp 2005 Business Objects 2nd Edition
http://rapidshare.com/files/81871996...nd_Edition.pdf

Advanced CSharp Programming 2002
http://rapidshare.com/files/81870589...mming_2002.pdf

Expert Service Oriented Architecture in CSharp 2005 2nd Edition
http://rapidshare.com/files/81872035...nd_Edition.pdf

Beginning Visual CSharp CSharp DataBase Programmers Guide to ADO.NET in CSharp 2002
http://rapidshare.com/files/81870164...Sharp_2002.pdf

CSharp 2.0 The Complete Reference
http://rapidshare.com/files/81870863..._Reference.chm

Programming CSharp 3rd Edition
http://rapidshare.com/files/81872931...rd_Edition.chm

CSharp and The.NET Platform 2nd Edition
http://rapidshare.com/files/81871157...nd_Edition.pdf

Introduction to CSharp Programming for the Microsoft.NET Platform
http://rapidshare.com/files/81872262...T_Platform.pdf

Learning CSharp 2005 2nd Edition
http://rapidshare.com/files/81872303...nd_Edition.chm

Unlocking Miscosoft CSharp 2.0 Programming Secrets
http://rapidshare.com/files/81873167...ng_Secrets.chm

CSharp Programming for the Absolute Beginner
http://rapidshare.com/files/81871628...e_Beginner.pdf

Visual CSharp 2005 Recipes A Problem Solution Approach
http://rapidshare.com/files/81873361...n_Approach.pdf

Visual CSharp 2005 A Developers Notebook
http://rapidshare.com/files/81873217...s_Notebook.chm

CSharp Web Development with ASP.NET Visual QuickStart Guide
http://rapidshare.com/files/81871697...tart_Guide.chm

Microsoft Visual CSharp 2005
http://rapidshare.com/files/81872531...Sharp_2005.chm

CSharp Cookbook
http://rapidshare.com/files/81871259...p_Cookbook.chm

CSharp Developers Guide to ASP.NET XML and ADO.NET
http://rapidshare.com/files/81871470...nd_ADO.NET.chm

Microsoft Visual CSharp 2005 Unleashed
http://rapidshare.com/files/81872599..._Unleashed.chm

CSharp Primer-A Practical Approach
http://rapidshare.com/files/81871489...l_Approach.pdf

CSharp.NET Web Developers Guide
http://rapidshare.com/files/81871807...er_s_Guide.pdf

Microsoft Windows with CSharp
http://rapidshare.com/files/81872710...ith_CSharp.pdf

Windows Forms Programming With http://rapidshare.com/files/81873435...ith_CSharp.pdf

Bindu Nice Image

Posted by Picasa

Friday, June 6, 2008

Interview Questions for .NET

Accenture Telephonic Interview Questions for .NET
I have gone through telephonicinterview for Seniour .net developer in Accenture.
Some of the question are follows.
1. What is CLR?
2. What is the diffrence between Abstract class and Interface.
3. What is Delegate?
4. Practical use of abstract class?
5. How to catch and throw exception?
6. what is diffrence between dataset copy and clone?
7. what is assembley metadata?
8. What is resource file? how to use it?
9. Explain globilazation?
10. What is shared assembley?
11. What is assembley versioning?
12. What is Strong name?
13. What is Stored Procedure?
14. What is the diffrence between IN and Join query?
15. What is SQL Profiler?
16. What method do you use to desgin forms?
17. What is Custom Control in ASP.NET?
18. Did u required to copy aspx file in production server?
19. What is the Viewstate?
20. What is postback and page render, explain?
21. what is form authetication? describe all parameter?
22. what are the diffrent config file available in asp.net?
23. What are the diffrent section in config file?
24. What is Session State?
25. How to maintaing session in WEB Garden?
26. What is the master page?
27. can we have more than one master page, how ?
28. what is n-tire architecture?
29. what is xml web service?
30. Did u implement xml web sevvice, explain?
31. What is SOA, give example?
32. What is Object pooling, explain the diff parameter?


Those are few question asked to my friend by 3i-Infotech people during my Interview Process
1. What is .NET Framework?
2. Different types of Assembly and Framework?
3. Types of Assembly?
4. Function Overloading.
5. Concept of OOPS.
6. Diff between Abstract class and interface.
7. What is sn.exe?
8. Describe ADO.net
9. What is Execute Non Query and Execute Scalar
10. What is the diff between DataSet and DataReader
11. Which is faster
12. What is Indexes
13. What is Stored Procedure?
14. What is Triggers?
15. What is Views?
16. What is Cursor?
17. What is boxing and unboxing?
18. Difference between Primary Key and Foreign Key?
19. Difference between dll and ocx file?
20. What are User Control and System Control?
21. Difference between Module and Class?
22. What is String Builder?

Thursday, June 5, 2008

The purpose of the Antivirus module is to ensure detection and removal of all viruses in the wild. BitDefender Antivirus uses robust scan engines certified by ICSA Labs, Virus Bulletin, Checkmark, CheckVir and TUV. IMPROVED Proactive Detection B-HAVE (Behavioral Heuristic Analyzer in Virtual Environments) emulates a virtual computer-inside-a-computer where pieces of software are run in order to check for potential malware behavior. This BitDefender proprietary technology represents a new security layer that keeps the operating system safe from unknown viruses by detecting malicious pieces of code for which signatures have not yet been released.


Permanent Antivirus Protection
The new and improved BitDefender scanning engines will scan and disinfect infected files on access, minimizing data loss. Infected documents can now be recovered instead of being deleted.

NEW Rootkit Detection and Removal
A new BitDefender module looks for rootkits (malicious programs designed to control victim computers, while staying hidden) and removes them on detection.

NEW Web Scanning
Web traffic is now filtered in real time even before reaching your browser, providing a safe and enjoyable web experience.

Peer-2-Peer and IM Applications Protection
Filters against viruses that spread via instant messaging and file sharing software applications.

Full E-mail Protection
BitDefender runs on the POP3/SMTP protocol level, filtering incoming and outgoing e-mail messages, regardless of the e-mail client used (MS Outlook, MS Outlook Express, Netscape, Pegasus, The Bat, etc.), without any additional configuration.

Application Firewall
The firewall module filters network traffic and controls the access permission of applications connecting to the Internet.

Internet Traffic Control
Defines exactly which incoming or outgoing connections to permit/deny. Define rules regarding specific protocols, ports, applications and/or remote addresses.

IMPROVED Internet Application Control
BitDefender maintains a database of trusted applications, and informs users whether or not the applications demanding network access are trustworthy, so they can make informed decisions. Alternatively, BitDefender can grant access automatically for trusted applications.

Antispam
The new and improved BitDefender Antispam technology employs remarkable technological innovations which allow it to adapt to new spamming techniques as they emerge, and to “learn” its user’s preferences to block spam while maintaining a very low ratio of legitimate mails tagged as spam.

IMPROVED Adaptive Filtering
BitDefender employs advanced clustering and neural network analysis techniques to classify e-mail based on user preference and emerging patterns in the local collection of e-mails. The antispam Bayesian filter can be trained by the user (by simply classifying some e-mail as spam or legitimate) and is also self-trained, continually developing new filtering criteria based on past decisions.

Anti-Phishing
BitDefender’s new phishing detector keeps your computer clear of malicious e-mails trying to trick you into giving away your bank account information or other sensitive data.

Heuristic, URL, Whitelist/Blacklist, Charset and Image Filters
Five types of filters further refine your control over e-mail. The heuristic filter checks mail for the characteristics of spam. The Whitelist/Blacklist filter rejects mail from known spammer addresses and lets your friends’ mail through. The URL filter blocks mail containing malicious links, while the charset filter blocks mail written in “strange” characters. The image filter decides whether images embedded in e-mails are specific to spam.

Compatibility and Outlook™ Integration
BitDefender antispam is compatible with all e-mail clients. The BitDefender antispam toolbar in Microsoft Outlook and Outlook Express allows users to train the Bayesian filter.

Antispyware
BitDefender monitors and prevents potential spyware threats in real-time, before they can damage your system. By making use of a comprehensive database of spyware signatures, it will keep your computer spyware-free.

Real-Time Antispyware
BitDefender monitors dozens of potential “hotspots” in your system where spyware might act, and also checks any changes made to your system and software. Known spyware threats are also blocked in real-time.

Spyware Scanning and Cleaning
BitDefender can scan your entire system, or just part of it, for known spyware threats. The scan uses a constantly updated spyware signature database.

NEW Privacy Protection
The privacy guard monitors HTTP (web) and SMTP (mail) traffic flowing out of your computer for what might be personal information –such as credit card numbers, Social Security numbers and other user-defined strings (e.g. bits of passwords).

Anti-Dialer
A configurable anti-dialer prevents malicious applications from running up a huge telephone bill at your expense.

More Features

IMPROVED Deployment and Use
A setup wizard starts immediately after installation, helping users select the most appropriate update settings, implementing a scanning schedule and providing a quick path to the registration and activation of the product.

IMPROVED User Experience
BitDefender has redesigned the user experience, placing emphasis on ease of use and clutter avoidance. As a result, many BitDefender v10 modules require significantly less user interaction, through the convenient use of automation and machine learning. .

Hourly Updates
Your copy of BitDefender will be updated 24 times a day over the Internet, directly or through a Proxy Server. The product is able to repair itself, if necessary, by downloading the damaged or missing files from BitDefender servers.

24/7 Support
Offered online by qualified support representatives and by accessing an online database with answers to Frequently Asked Questions.

Rescue CD
BitDefender Internet Security v10 is delivered on a bootable CD. This CD can be used to analyze/repair/disinfect a compromised system which cannot be started.


CODE
http://rapidshare.com/files/38837684/BitDefender.Antivirus.Plus.v10.247.Incl.Keymaker-CORE.rar

Super Utilities Pro 2008 8.0.1992



Super Utilities Pro 2008 8.0.1992
OS: Win32 | 4.07 MB

Super Utilities - Make your computer run faster, safer, with greater privacy and security. With only a few minutes of tweaking, Super Utilities will optimize the performance of your computer, corrects problems and helps you to customize your system to suit your needs.

Super Utilities (for Windows9x/ME/NT/XP/2000/2003) is a collection of tools to fix, speed up, and maintain your PC! These utilities include Disk Cleaner, Registry Cleaner, Uninstall Plus, StartUp Manager, Folder Guard, Tracks Washer, Driver Backup, Auto Shutdown, Windows Manager and Process Manager. With a cool and user-friendly interface makes it easy for anyone to use Super Utilities.

Super Utilities are:
- Disk Cleaner. Get rid of junk files on your PC
- Uninstall Plus. Completely uninstall any software
- Hide Folder. Hide your files and folders
- Super Shredder. Securely delete sensitive information
- Windows Manager. Tailor windows to meet your individual needs
- Super Undelete. Recover deleted files
- Auto Shutdown. A complete shutdown, restart, and logoff manager
- File Type Manager. A sophisticated file type management tool
- Spyware Removal. Remove spyware, adware, trojans, and keyloggers
- Memory Turbo. Recover, defragment, & optimize system memory
- Tracks Washer. Cover the tracks you leave behind
- IE Password Manager. Manage passwords and AutoComplete strings of IE
- Super Task Manager. Take control of all running processes
- Windows Tools. Several essential utilities of windows
- Driver Backup. Grab all of your drivers, and store them for you in a safe place
- Super Shell. A unique handy collection of tools
- Registry Cleaner. Clean and optimize your system registry
- Shortcuts Repairer. Find and fix broken shortcuts
- IE Privacy Manager. Manage typed URLS and history items of IE
- SuperMenu Guard. Protect favorite sites and start menu
- IE Protector. Protect the settings of Internet Explorer
- System Information. Gather information about your hardware and software
- Service Manager. Take control of all windows services
- StartUp Organizer. Start-up Windows faster
- Super ExeLock. Password protect your programs
- BHO Cleaner. Remove unwanted browser helper objects
- Folder Analyzer. Find out where all your hard drive space went

Download from Rapidshare
CODE
http://rapidshare.com/files/119807909/SUPRO2008801992.rar


Download from Depositfiles
CODE
http://depositfiles.com/files/5765831