Thursday, November 26, 2009

Working with Cookies using Javascript

Here is some links to working with cookies using javascript

Tuesday, November 10, 2009

Small Javascript Functions


Here is some small JavaScript Functions
(1) Convert text to lower - sometext.toLowerCase();

(2) Convert text to upper - sometext.toUpperCase();

(3) Find Index of - sometext.indexOf('w')

(4) Find Last Index of - sometext.lastIndexOf('a')

(5) Find Character at - sometext.charAt(5)

(6) Find Length - sometext.length

(7) Find Substring - substring(first_index,last_index)

(8) Find Character at - sometext.substr(4,8)

(9) Split the word
var b = 'I am a JavaScript hacker.'
var temp = new Array();
temp = b.split(' ');

(10) onclick="this.select();" to select all text in textbox

(11) oncontextmenu="return false;" to hide context menu

(12) ondragstart="return false;" restrict user to drag

(13) ondrop="return false;" restrict user to drop dragged content

(14) white-space: -moz-pre-wrap; to wrap text for mozilla

(15) word-wrap:break-word; to wrap text for IE

(16) document.getElementById('Text34').removeAttribute("readonly","") removes the attribute of control named Text34

(17) document.getElementById('Text34').setAttribute("readonly","readonly"); sets the attribute value for control named Text34

(18) window.showModalDialog('http://www.google.com', window ,'dialogHeight:50px;;dialogWidth:800px;dialogLeft:10;dialogTop:250')  show dialog box in ID

(19) a=a?a:window.event?window.event:""; //a is event passed in function and viewed both in IE and Mozilla.

(20) "disabled" will disabled the control

(21) readonly="readonly" for the textbox

(22) window.status will show the status we have applied --> onmouseover="window.status='hello';return true"

(23) event.screenX shows the screen X position

(24) event.screenY shows the screen Y position

(25) check which browser viewing navigator.appName == "Microsoft Internet Explorer",navigator.appName=="Netscape"

(26) alert('test') this will show a dialog box showing the message

(27) to use Ceil function  - Math.Ceil(value) 'where value is value to be ceiled

(28) to find the dropdownlist and its selected value as well as test
    var comp=document.getElementById('dropdownlistid')
        comp.options[comp.selectedIndex].text; 'finds the selected text value of the dropdownlist
    comp.options[comp.selectedIndex].value; 'finds the value of the dropdownlist selected item

(29) replace text
    text="java";
    text = text.replace(/java/, "not java");
    -- REMOVING spaces from text
    text=" a s  d f ";
    text = text.replace(/\s+/g,'');
    alert(text);

(30) change the page title
document.title = "This is the new page title.";
What if the page is inside a frameset? In that case just add parent to the front.
parent.document.title = "This is the new page title.";

Monday, November 9, 2009

IIS Database Manager

IIS Database Manager allows you to easily manage your local and remote databases from within IIS Manager. IIS Database Manager automatically discovers databases based on the Web server or application configuration and also provides the ability to connect to any database on the network. Once connected, IIS Database Manager provides a full array of administrative functionalities including managing tables, views, stored procedures and data as well as running ad hoc queries. IIS Database Manager provides support for Microsoft SQL Server and MySQL.

In addition, because IIS Database Manager is an extension of IIS Manager, administrators can securely delegate the management of databases to authorized local or remote users, without having to open additional management ports on the server.

(1) Using the IIS Database Manager : Managing and Maintaining IIS 7.0 : The Official Microsoft IIS Site

(2) Basics of the IIS Database Manager : Using the IIS Database Manager : Managing and Maintaining IIS 7.0 : The Official Microsoft IIS Site

(3) Working with Tables : Using the IIS Database Manager : Managing and Maintaining IIS 7.0 : The Official Microsoft IIS Site

(4) Working with Views : Using the IIS Database Manager : Managing and Maintaining IIS 7.0 : The Official Microsoft IIS Site

(5) Working with Stored Procedures : Using the IIS Database Manager : Managing and Maintaining IIS 7.0 : The Official Microsoft IIS Site

Download IIS Database Manager(x86) from here

Monday, November 2, 2009

Some Miscellaneous Links

Here is some miscellaneous links.
(1) ASCII HTML Codes - HTML Special Characters in the ASCII Set
(2) LDAP Attributes. Properties Active Directory Users Computers Distinguished name
(3) List of content management systems - Wikipedia, the free encyclopedia
(4) Edit Site
(5) [अ Type in Hindi]
(6) Hypertext Transfer Protocol -- HTTP/1.1
(7) Flip Text » Write Upside Down
(8) Google Chrome Frame - Google Code
(9) Download the Microsoft Web Platform
(10) Find out the size of a piece of text // ...because (byte)size matters!

(11) Dinky Page | Disposable pages for everyone
(12) ASP and HTML Code Aligner
(13) SQLFormat - Online SQL Formatting Service
(14) List of Microsoft Windows versions - Wikipedia, the free encyclopedia
(15) Maximum and Minimum Height and Width in Internet Explorer • Perishable Press
(16) Free Video Codes - Video Code Maker - Free Html Codes
(17) Free Online Barcode Generator: Create Barcodes for Free!
(18) TestSize.com - test any web page in any window size (19) TestSize: View Your Site in Different Resolutions
(19) Website Screenshot Thumbnail Service | ShrinkTheWeb
(20) collabedit
(21) In20Years.com - See You... In 20 Years! Make your face look old for free
(22) Visual Studio 2010 Keybinding Posters
(23) Dynamic Drive- FavIcon Generator
(24) Documentation and Tutorials
(25) PROMT - Free Online Translator and dictionary - English, German, French, Spanish, Italian, Portuguese (Brazilian) and Russian languages.
(26) CSS Drop Caps - Simple CSS Drop Caps in Web Pages
(27) Feedjit: Know when your friends and clients visit you
(28) codesnipp.it : share your code snippets : follow your favorite developers : find coding help!
(29) Thumb Press | Tech Brains Powered by Caffeine.
(30) Mr. Data Converter
(31) Remote desktop connection manager
download from here
(32) Shutdown remote computer
(33) What is webclient service?    
(34) What is Webdav?
(35) Computer Hope's free computer help
(36) Create bootable USB
- How To Create A Bootable USB Drive From Your Windows CD
- How can I create a bootable USB drive with either Windows 7 or openSUSE?

- How to Create Bootable USB Drive to Install Windows Vista?
                  
 - Gujarati Type Pad
(5) Gujarati Keyboard

- Hindi Type Pad

- Sql Server

Friday, October 23, 2009

Some Differences

Here is some links of the differences.
- ASP.NET
(1) Difference .net 2.0, 3.0 and 3.5 : .NET Base Class Library : .NET Development : MSDN Forums
(2) Difference B/w ItemCreated & ItemDataBound - ASP.NET Forums 
(3) VB/CSharp Difference
(4) Difference Server.Transfer and Response.Redirect 
(5) C# and VB.NET Comparison Cheat Sheet: ASP Alliance
(6) - what is the difference b/w abstract class and interface?
     - CodeProject: Abstract Class versus Interface. Free source code and programming help
(7) Difference between the out and ref type parameter - Vikram Lakhotia(8) - StringBuilder and String Concatenation
     - .NET Interview Questions. What is the difference between String and StringBuilder in .NET?
(9) - Difference between a constant and readonly variables/fields : (constant vs readonly) - Abhi's den...
     - const, static and readonly at C# Online.NET (CSharp-Online.NET)
(10) Application vs. AppDomain - Scott Forsyth's Blog
(11) difference between internal and protected internal.NET Forums
(12)
Difference between Web Service and WCF Service
(13) Tech Tips, Tricks & Trivia: ASP.NET MVC vs. Web Forms
(14) Difference between Arraylist and Generic List

- Sql Server

(1) SCOPE_IDENTITY() vs. @@IDENTITY diffefence
(2) SQL SERVER - Difference and Explanation among DECIMAL, FLOAT and NUMERIC « Journey to SQL Authority with Pinal Dave 
(3) SQL SERVER - Comparison : Similarity and Difference #TempTable vs @TempVariable « Journey to SQL Authority with Pinal Dave 
(4) Frequently Asked Questions - SQL Server Data Types

- OOPS
(1) Difference between struct and class in C#: (struct vs class)? 
(2) SQL 7.0 Vs 2000 Comparison
(3) Differences between SET and SELECT in SQL Server : Narayana Vyas Kondreddi's home page


- LINQ

(1) Ben Hall's Blog: Linq to SQL Stored procedure vs Functions

Web Deployment in Visual Studio 2005/2008


Here is some links that shows how to implement Web Deployment in Visual Studio 2005/2008.

- Web Deployment Using VS 2010
(1) Team Build + Web Deployment + Web Deploy + VS 2010 = Goodness

(2) Vishal Joshi's Tangent: Overview Post for Web Deployment in VS 2010

(3) Basic Microsoft Web Deployment Tool Setup For Visual Studio 2010- Site Home - MSDN Blogs 


- Web Deployment Using VS 2005/2008

(1) Web Application Projects and Web Deployment Projects are here

(2) VS 2005 Web Deployment Projects

(3) Managing ASP.NET Precompiled Output for Deployment Using the aspnet_merge.exe Command

(4) VS 2005 Web Project System: What is it and why did we do it?

(5) aspnet_merge.exe not on my machine? ASP.NET Forums

(6) Using Web Deployment Projects with Visual Studio 2005

(7) Visual Studio 2008 Web Deployment Projects

- Downloads for Web Deployment Projects

(1) Visual Studio 2005 Web Deployment Project support available for Download - ScottGu's Blog 

(2) Visual Studio® 2008 Web Deployment Projects - RTW 
  

Add Menu on your Blog

Saturday, October 3, 2009

Visual Studio 2010 Features


==> What's new in visual studio 2010
(1) What's New in Visual C# 2010

(2) ASP.NET 4 and Visual Studio 2010 Web Development Overview : The Official Microsoft ASP.NET Site

(3) Using Type dynamic (C# Programming Guide)

(4) Dynamic Language Runtime Overview

(5) Named and Optional Arguments (C# Programming Guide)

(6) How to: Use Indexed Properties in COM Interop Programming (C# Programming Guide)

(7) How to: Access Office Interop Objects by Using Visual C# 2010 Features (C# Programming Guide)

(8) Call Hierarchy

(9) Implement Interfaces and #Region

   
 ==> Other Links

Using Publish To Provider to Publishing Your Sql Database

Here is some links to Publish your Sql Database Using "Publish to Provider" option.
(1) Using Database Projects for Visual Studio

(2) SQL Database Publishing wizard is now in Visual Studio 2008.

(3) Publishing a SQL Database

(4) Microsoft SQL Server Database Publishing Wizard 1.1

(5) Deploying a Local Database to a Remote Web Host

(6) Publishing SQL Server Database using Publishing Wizard : Tips & Tricks

(7) 6 ways to import data into SQL Server

(8) Visual Studio's Database Publishing Wizard and the new 1-Click Web Deployment

(9) Recipe: Deploying a SQL Database to a Remote Hosting Environment (Part 1)

(10) Tip#96: Did you know…You could publish your SQL databases using the SQL Publishing Wizard?

- Download SQL Server Database Publishing Wizard 1.1 for Visual Studio 2005

Wednesday, September 23, 2009

Sql Server Reporting Services

SQL Server Reporting Services is a comprehensive, server-based solution that enables the creation, management, and delivery of both traditional, paper-oriented reports and interactive, Web-based reports. An integrated part of the Microsoft Business Intelligence framework, Reporting Services combines the data management capabilities of SQL Server and Microsoft Windows Server with familiar and powerful Microsoft Office System applications to deliver real-time information to support daily operations and drive decisions.

- Here is some links related to the installation of the Sql Server Reporting Services.
(1) Considerations for Installing Reporting Services

(2) InformIT: Installing and Configuring SQL Server Reporting Services > Installation Pathways and Preparation

(3) SQL Server 2005 Reporting Services (SSRS) Installation and Configuration for SCMDM 2008 SP1 Reporting Services

(4) Installing Sql Server 2000 Reporting Services on Server 2003

(5) SQL Server Reporting Services

(6) Configuration of SQL Server 2005 Reporting Services for IT Analytics Solution

(7) How to Install SQL Server 2005 Reporting Services

(8) How to install SQL Server 2005 Reporting Services on a Windows Vista-based computer

(9) Installing SQL Server 2005 Reporting Service on IIS 7

(10) Installing SQL Server 2005 Reporting Services on Windows Server 2008

(11) Installing SQL Server 2005 Reporting Services on a Windows Vista

(12) Installing Reporting Services on SQL Server 2005 Express Edition

(13) FIX: A hotfix is available for SQL Server 2000 Reporting Services Service Pack 2

(14) Problem in installing SQL server reporting services 2005 - ASP.NET Forums

(15) Install configure and troubleshooting sql server reporting services 2005

- Here is some more links for the introduction, tips n tricks about Sql Server Reporting Services.
(1) Beginning SQL Server 2005 Reporting Services Part 1

(2) Beginning SQL Server 2005 Reporting Services Part 2

(3) create chart in sql server 2005 reporting services Part 3

(4) Beginning SQL Server Reporting Services Part 4

(5) Data Points: Report Controls in SQL Server 2005 Reporting Services

(6) CodeProject: Integrating Reporting Services 2005 Into a Web

(7) Reporting Services Tips, Tricks and Funkiness

(8) Toolbar of ReportViewer Control displaying incorrectly in Safari.NET Forums

(9) Planning for Browser Support

(10) Browser Support in Reporting Services

(11) How to: Add a Page Break (Reporting Services)



(12) Creating a Report Template using BIDS (Visual Studio 2005)


(13) Data Points: Report Controls in SQL Server 2005 Reporting Services


(14) Understanding Pagination in Reporting Services























- Unable to load client print control.




Wednesday, August 19, 2009

Some Links about Outlook Express

Here is some site links for the Outlook Express.
(1) Outlook 2007 Help and How-to Home Page - Outlook - Microsoft Office Online


(2) Orayzio.com: the untitled blog: Microsoft Outlook 2007: Craptastic


(3) Create a New Outlook Profile


(4) Create a Search Folder - Outlook - Microsoft Office Online


(5) Find all my unread messages - Outlook - Microsoft Office Online


(6) How To Send Personalized Mass Emails in Outlook


(7) Google Apps Sync for Microsoft Outlook


(8) Robert Burke's MSDN Weblog : Outlook 2007: 3 Tips and Tricks


(9) Outlook Tips, Tricks and Secrets - About Email


(10) Set up Gmail in Outlook 2007


(12) The "Out of Office Assistant" command does not appear on the Tools menu in Outlook


(13) 11 Best Keyboard Shortcuts for Outlook 2007 | Train Signal Training - Free Computer Training Videos


(14) How to create Microsoft Outlook shortcuts for email and tasks


(15) Introduction To Outlook 2007: Managing Multiple Email Accounts


(16) Outlook. Shortcut to multiple email addresses


(17) Top tips for Outlook - Outlook - Microsoft Office Online


(18) outlook_tips


(19) Outlook Shortcut Keys


(20) How do I assign a keyboard shortcut to a VBA macro in Outlook 2007? - Stack Overflow


(21) Useful shortcut keys in Outlook - Outlook - Microsoft Office Online


(22) 10 Powerful Productivity Tips For The Outlook 2007


(23) MS Outlook Tip: How to Automatically Organize Incoming Emails


(24) How To Sync Microsoft Outlook With Google Calendar


(25) Accepting meeting request deletes the email

(26) Outlook Tips, Tricks and Secrets


- Some Downloads

Monday, August 10, 2009

Manage Your Font Online

Here is thesite links to manage font online.

Capture your screen online

Here is some links that captures your screen online.

Convert file online

Here is some site links that converts file online.

Monitor Uptime/Downtime of Site

Here is some site links which shows Uptime/Downtime of your site.

Tuesday, August 4, 2009

Some Links Related to Firefox Add-Ons

Here is some site links related to the firefox Add-Ons.

(1) Get Bookmark Add-ons

(2) Firefox 3 - Top 10 reasons that makes me a Firefox fan

(3) 7 Writing Addons For Changing Firefox Into The Ultimate Writer’s Suite

(4) 10+ Best Firefox Security and Privacy Addons

(5) 10 Firefox Add-ons To Find Friends On Social Networks

(6) 3 Useful Methods to Back Up Your Firefox Preference

(7) 5 Useful Firefox Addons for International Browsing

(8) 20+ Ways to Tweak Firefox with the Userchrome.css File

(9) 45-interesting-firefox-addons-we-never-knew-existed-i/

Firefox Tips and Tricks

Here is some Mozilla Support site links.








javascript:void(0)

Saturday, August 1, 2009

Image Manipulation Site Links

Here is some site links for the Image Manipulation.

- Create GIF Image Online
(1) GIFMake

(2) Welcome to Gickr.com: Create GIF Animations online | Upload pictures or get images from Flickr | Pimp myspace graphics

(3) Make A GIF| Free way to make GIFs online

(4) GIFup.com - Make gif animation online

(5) Animated avatars. Create gif animations online

(6) With More Features, More Fun and More Friends! CoolWebcamAvatars is now BlipCam!

- Split GIF image Online
(1) gifninja.com - split the frames of an animated gif

(2) Emoticon generator - Create animated emoticons and customized, from an image or a photograph

- Create Animated Text Online
(1) WigFlip

(2) Text Anim

- Create Animated Avtar Online
(1) The animated guide to Building a PC. Learn to build a PC from scratch with PCitYourself!

(2) Alpoy - Avatar Creator and Animator | Log In

(3) LoonaPix.com. Make Funny Pictures and Add Photo Frames Online.

- Create Image Maps Online
(1) Image Map Creator - On-line Image Map Tool - HTML & CSS

- Create Banners Online
(1) Welcome to Gickr.com: Create GIF Animations online | Upload pictures or get images from Flickr | Pimp myspace graphics

(2) Free Animated Banners Maker and Flash Animation

(3) Banner Friends

(4) Online Gradient Image Maker. Stripes and Button generators

- Create Image Mosaic
(1) PicArtia

(2) Pixisnap - Free Photo Mosaic Maker and Polaroid Picture Editor

(3) Photo - Notes

(4) Poladroid project | the easiest and funniest Polaroid Image Maker

(5) Andrea Mosaic

(6) www.sixdots.de | Foto-Mosaik-Edda | It's so easy to create mosaic-pictures.

- Optimize Images For Web
(1) punypng - PNG Image Optimization and Compression - Gracepoint After Five

(2) Smush.it™

(3) Online Image Optimizer: Optimize your GIFS, JPGS, and PNGS online.

- Resize Image Online
(1) Online Image Resizer - Resize your photos, pictures and images to any size

(2) TinEye Reverse Image Search

- Create Logo Online
(1) Supalogo - create nice logo

- Create Polaroid from your Photo
(1) PhotoSnack | Photo slideshows

(2) Rollip - Create Polaroids from your photos!

(3) Facebomb

(4) PicTreat - Free one-click photo retouching service

(5) Makeup Photo! - Automatic online photo retouching | Free online face retouch

(6) Photo Crib

(7) FlauntR

- Adding Special Effects to Pictures
(1) Fun Photo Box

(2) Home - PhotoFunia

(3) Make a Wanted Poster - Online Photo Editor

- Create Photo Slideshow Online
(1) Slide - slideshows, slide shows, photo sharing, image hosting, widgets, MySpace codes, Facebook apps

(2) PictureTrail: Online Photo Sharing, Image Hosting, Online Photo Albums, Photo Slideshows

- Create Easy Specs Online