Here is some links to working with cookies using javascript
You will find here some important links as well as solutions related to .net, dotnet, asp.net, c#.net, vb.net, mvc, .netcore, sql server, my sql, javascript, jquery, visual studio, SharePoint 2010, DevExpress Reports, jqxGrid, kendo ui, knockout, vue js, angular js, angular 2/4, typescript, ms office and some miscellaneous things with some tips & tricks on various topics....
Thursday, November 26, 2009
Working with Cookies using Javascript
Saturday, November 14, 2009
Using CTE(Common Table Expression) in Sql Server 2005
Here is some links for the CTE(Common Table Expression)
(1) Recursive Queries Using Common Table Expressions
(2) Common Table Expressions (CTE) in SQL Server 2005
(3) SQL Server 2005 Common Table
Examples(1) Recursive Queries Using Common Table Expressions
(2) Common Table Expressions (CTE) in SQL Server 2005
(3) SQL Server 2005 Common Table
(1) Peter Larsson : Simple Fibonacci calculation
(2) Selecting list of month numbers between two dates
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.";
(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
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
(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
(3) ગુજરાતીમાં લખો
(5) Gujarati Keyboard
- Hindi Type Pad
- Hindi Type Pad
(2) Hindi Keyboard
- 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
- 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
- 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
Here is some links that shows how to build menu on your blog.
(1) Web Basics: Menu Bar with CSS Definitions
(2) Drop down menu for blogger beta..
(3) Add a Horizontal Links Menu to Blogger | Blog Know How
(4) Real Life: How to Create a Menu Bar for Blogger Layouts, Part 1
(5) Add The Blogger “Read More” Expandable Posts Link - Blogger Hack
(1) Web Basics: Menu Bar with CSS Definitions
(2) Drop down menu for blogger beta..
(3) Add a Horizontal Links Menu to Blogger | Blog Know How
(4) Real Life: How to Create a Menu Bar for Blogger Layouts, Part 1
(5) Add The Blogger “Read More” Expandable Posts Link - Blogger Hack
Thursday, October 22, 2009
Exporting Template from Visual Studio 2005/2008
Here is some links which shows how to export project and item template from Visual Studio 2005/2008.
Wednesday, October 21, 2009
Crosstab queries using PIVOT in SQL Server 2005
Here is some links that shows how to convert rows to column using PIVOT, the new feature in Sql Server 2005.
Tuesday, October 13, 2009
Telerik RadComboBox with CheckBox
Here is some useful links to put ComboBox inside RadDropDownList.
(1) Using CheckBoxes for multi-item selection - ComboBox Code Library - RadControls for ASP.NET and ASP.NET AJAX
(1) Using CheckBoxes for multi-item selection - ComboBox Code Library - RadControls for ASP.NET and ASP.NET AJAX
(2) CheckBox inside a RadcomboBox - Combobox Forum - ASP.NET Classic Controls
(3) Implementing checkbox items in RadComboBox - RadControls for WinForms (Telerik Knowledge Base)
(4) Checkbox in RadComboBox - Combobox Forum - ASP.NET Classic Controls
(5) Count the Checkbox checked in a radcombobox with Javascript - Combobox Forum - ASP.NET Classic Controls
(3) Implementing checkbox items in RadComboBox - RadControls for WinForms (Telerik Knowledge Base)
(4) Checkbox in RadComboBox - Combobox Forum - ASP.NET Classic Controls
(5) Count the Checkbox checked in a radcombobox with Javascript - Combobox Forum - ASP.NET Classic Controls
- Check all checkbox in RadCombobox
(2) Looping through the comboBox with checkbox inside in javascript - ComboBox Forum - ASP.NET Controls
Saturday, October 3, 2009
Visual Studio 2010 Features
(14) Extensible Output Caching with ASP.NET 4 (VS 2010 and .NET 4.0 Series)
(15) Built-in Charting Controls (VS 2010 and .NET 4 Series)
(16) SB_mstGroups_SelectCleaner HTML Markup with ASP.NET 4 Web Forms - Client IDs (VS 2010 and .NET 4.0 Series)
(17) Optional Parameters and Named Arguments in C# 4 (and a cool scenario w/ ASP.NET MVC 2)
(18) Automatic Properties, Collection Initializers, and Implicit Line Continuation support with VB 2010
(19) New <%: %> Syntax for HTML Encoding Output in ASP.NET 4 (and ASP.NET MVC 2)
(20) JavaScript Intellisense Improvements with VS 2010
(21) Visual Studio 2010 and .NET 4 Released
(22) Box Selection and Multi-Line Editing with VS 2010
(23) Visual Studio 2010 Extension Manager (and the new VS 2010 PowerCommands Extension)
(24) Pinning Projects and Solutions with Visual Studio 2010
(25) VS 2010 Web Deployment
(26) Debugging Tips with Visual Studio 2010
(27) Search and Navigation Tips/Tricks with Visual Studio
(28) Automating Deployment with Microsoft Web Deploy
(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
(1) Sara Ford's Weblog : Speaking at DevDays 2010 in The Netherlands and TechDays in Belgium – Visual Studio Tips
(2) Visual Studio Tricks : @ScottCate
==> Service Pack for Visual Studio
(1) Visual Studio 2010 SP1's Blog
(2) Download details: Microsoft Visual Studio 2010 Service Pack 1 (Installer)
(3) Download details: Microsoft® Visual Studio Team Foundation Server® 2010, Service Pack 1
(2) Visual Studio Tricks : @ScottCate
==> Service Pack for Visual Studio
(1) Visual Studio 2010 SP1's Blog
(2) Download details: Microsoft Visual Studio 2010 Service Pack 1 (Installer)
(3) Download details: Microsoft® Visual Studio Team Foundation Server® 2010, Service Pack 1
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
(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
(16) A brief introduction to expressions in SQL Server 2005 reporting services
(17) Ten Common SQL Server Reporting Services Challenges and Solutions
(18) Generating and Hosting a SQL Server Reporting Services Report Using SQL Server 2005 Business Intelligence Development Studio: ASP Alliance
(19) Get More Out of SQL Server Reporting Services Charts
(20) Generating and Hosting a SQL Server Reporting Services Report Using SQL Server 2005 Business Intelligence Development Studio: ASP Alliance
(21) Using reporting services in share point
(22) Writing Dynamic SQL in and for RDLs
- Color Manipulation in Reports
(17) Ten Common SQL Server Reporting Services Challenges and Solutions
(18) Generating and Hosting a SQL Server Reporting Services Report Using SQL Server 2005 Business Intelligence Development Studio: ASP Alliance
(19) Get More Out of SQL Server Reporting Services Charts
(20) Generating and Hosting a SQL Server Reporting Services Report Using SQL Server 2005 Business Intelligence Development Studio: ASP Alliance
(21) Using reporting services in share point
(22) Writing Dynamic SQL in and for RDLs
- Color Manipulation in Reports
(4) Dave does Data : SQL Reporting "How to" – Conditional Color 4/4: Charts & Multi-Dimensional analysis
(6) Blog for reports
- Reporting Services Configuration File
(1) RSReportServer Configuration File
(2) How to: Modify a Reporting Services Configuration File
- CountRows
(1) CountRows Function (Reporting Services)
(2) SSW Rules to Better SQL Reporting Services
(3) SQL Server Forums()
- Some more links
- Unable to load client print control.
Saturday, August 29, 2009
Song Lyrics
Here is the link of some song lyrics.
(4) Give Me Some Sunshine - 3 Idiots
Give me some sunshine lyrics from 3 Idiots , 3Idiots song lyric ...
Give me some sunshine lyrics from 3 Idiots , 3Idiots song lyric ...
(5) Chiggy Wiggy Song Lyric - Blue
(6) Waka Waka Song by Shakira
- Shakira - Waka Waka Lyrics N Video ~ Video and Lyrics
- Free Song Lyrics and Lirik Lagu: Shakira Waka Waka Lyrics 2010 WorldCup Song
- Results: shakira waka waka lyrics , mp3 waka waka shakira waka waka free download waka waka song ,waka waka shakira.
(7) Aaoge Jab Tum Sajna - Jab We Met
Song Lyrics - Aaoge jab tum sajna
- Some Music Site List
(3) Cool Toad
- Lyric Site
Friday, August 28, 2009
Create site with DotNetNuke
Here is some links for the source of the DotNetNuke and some of them shows installation steps.
Friday, August 21, 2009
Create pdf using ABCpdf in ASP.net
Here is links to create pdf dynamically using ASP.net.
Thursday, August 20, 2009
Online Image Manipulation
Here is some site links to manipulate image online.
(1) Aviary Screen Capture : Talon
(2) Online image / photo editor pixlr free
(3) Picnik
(4) Online image / photo editor pixlr free
(5) Edit your Photos Online
(6) Splashup
(7) DrPic
(8) Online Photo! Editor - Edit photos easily online | Free online photo editor
(9) FotoFlexer - The world's most advanced online photo editor
(2) Online image / photo editor pixlr free
(3) Picnik
(4) Online image / photo editor pixlr free
(5) Edit your Photos Online
(6) Splashup
(7) DrPic
(8) Online Photo! Editor - Edit photos easily online | Free online photo editor
(9) FotoFlexer - The world's most advanced online photo editor
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
(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
Thursday, August 13, 2009
Create your website online
Here is some links that will help you to create your web page online.
(1) Free website builder create website maker web page site builder
(2) BlinkWeb - Free Internet Marketing Website or Blog!
(3) Squidoo : Welcome to Squidoo
(4) Free Website - Wetpaint
(5) Weebly - Create a free website and a free blog
(6) Yola | Build a Free Website
(7) Weebly - Create a free website and a free blog
(8) SnapPages
(2) BlinkWeb - Free Internet Marketing Website or Blog!
(3) Squidoo : Welcome to Squidoo
(4) Free Website - Wetpaint
(5) Weebly - Create a free website and a free blog
(6) Yola | Build a Free Website
(7) Weebly - Create a free website and a free blog
(8) SnapPages
Create Face Online
Here is some links to create your face online.
Online Document Sharing
Here is some links that manages your document online.
(1) Scribd
(2) Docstoc – Documents, Templates, Forms, Ebooks, Papers & Presentations
(3) Slide Share
(4) Digitally Sign, Collaborate, Share, and Store Your Documents with DocQ.
(5) Upload and Share PowerPoint Presentations Online - SlideServe
(6) 5GB of free space to upload and share your files, photos, videos and music - eSnips.com
(3) Slide Share
(4) Digitally Sign, Collaborate, Share, and Store Your Documents with DocQ.
(5) Upload and Share PowerPoint Presentations Online - SlideServe
(6) 5GB of free space to upload and share your files, photos, videos and music - eSnips.com
Monday, August 10, 2009
Manage Your Font Online
Here is thesite links to manage font online.
(3) flipping typical
(4) Free Fonts Download
(5) FontEditor BitfontMaker
(6) Typetester - Compare fonts for the screen
(7) Fontex
(8) Font Burner
(9) Your Font
(10) FontStruct | Build, Share, Download Fonts
(11) FontForge
(12) FontStruct | Build, Share, Download Fonts
(13) How To Create Your Own Fonts & Characters on Windows
(14) Identity Font
(4) Free Fonts Download
(5) FontEditor BitfontMaker
(6) Typetester - Compare fonts for the screen
(7) Fontex
(8) Font Burner
(9) Your Font
(10) FontStruct | Build, Share, Download Fonts
(11) FontForge
(12) FontStruct | Build, Share, Download Fonts
(13) How To Create Your Own Fonts & Characters on Windows
(14) Identity Font
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.
(1) Free website monitoring, receive 24X7 website monitoring email and sms
(2) WhenDOUP!
(3) Notify Mee
(4) Are My Sites Up?
(5) free web site uptime monitor service - server and network failure alerts
(6) Mr Uptime
(7) Pingability.com: Web Site Monitoring and Alert Service
(8) Website Monitoring, Website Monitoring Service, Server Monitoring: Site24x7
(9) Observu - Site & Server monitoring
(2) WhenDOUP!
(3) Notify Mee
(4) Are My Sites Up?
(5) free web site uptime monitor service - server and network failure alerts
(6) Mr Uptime
(7) Pingability.com: Web Site Monitoring and Alert Service
(8) Website Monitoring, Website Monitoring Service, Server Monitoring: Site24x7
(9) Observu - Site & Server monitoring
Saturday, August 8, 2009
Browser Based Code Editor
Here is some links for onlinr browser based code editor.
(1) CodeFetch
(2) CodePaste
(1) CodeFetch
(2) CodePaste
(3) textsnip - Keep your text & code formatting safe from IM and Email
(4) ecoder | mytest.html
(5) family, art & geeky stuff
(6) Stupeflix Editor
- Online HTML Editor
(1) Real-time HTML Editor
(4) ecoder | mytest.html
(5) family, art & geeky stuff
(6) Stupeflix Editor
- Online HTML Editor
(1) Real-time HTML Editor
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/
(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.
(1) Cookies Settings
(3) Manage Manager
(4) Profile Manager
(15) Backup Your Firefox profile with about:support Command|Technotips - Hub for latest Technical alerts
Sunday, August 2, 2009
URL Manupulation Site Links
Here is some site links for the URL Manipulation which includes the shrinking the many url to one and extracting the original URL from short URL.
- Sites that Extract Original URL from Short URL
(1) Tiny URL
(2) BurnURL: Don't Just Shorten URLs ... Burn Them!
(3) SHUURL | Making Safer Short URL's
(4) LongURL | The Universal Way to Expand Shortened URLs
(5) PrevURL—Preview URLs
(6) Untiny
(7) Get the Real url
(8) appsto.re - Share your Apps
(9) bit.ly, a simple url shortener
(10) VapURL: Create Self-Terminating Temporary URLs.
- Sites that Converts the many URLs to One URL
(1) Your one stop resource for link sharing - MultiURL
(2) shrink2one.com
(3) LinkBunch - Put multiple links into one - http://linkbun.ch
(4) URL Bunch
(5) ShareTabs - Share your links as tabs
(6) tr.im your URLs
There are Add-On of Mozilla to bind multi URL to one URL .
(1) Extract Real URL
(2) Multi Links :: Add-ons for Firefox
- Sites that Extract Original URL from Short URL
(1) Tiny URL
(2) BurnURL: Don't Just Shorten URLs ... Burn Them!
(3) SHUURL | Making Safer Short URL's
(4) LongURL | The Universal Way to Expand Shortened URLs
(5) PrevURL—Preview URLs
(6) Untiny
(7) Get the Real url
(8) appsto.re - Share your Apps
(9) bit.ly, a simple url shortener
(10) VapURL: Create Self-Terminating Temporary URLs.
- Sites that Converts the many URLs to One URL
(1) Your one stop resource for link sharing - MultiURL
(2) shrink2one.com
(3) LinkBunch - Put multiple links into one - http://linkbun.ch
(4) URL Bunch
(5) ShareTabs - Share your links as tabs
(6) tr.im your URLs
There are Add-On of Mozilla to bind multi URL to one URL .
(1) Extract Real URL
(2) Multi Links :: Add-ons for Firefox
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 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
Subscribe to:
Posts (Atom)