/* ------------------------ My Meta Content Here SEO ------------------------ */

Pages

Main Menu

Tuesday, December 30, 2014

योगेश की कलम Yogesh Ki Kalam * * *

योगेश की कलम Yogesh Ki Kalam * *...
Read More »

Friday, December 19, 2014

Example Uses of the PARSENAME Function in SQL Server

Example Uses of the PARSENAME Function The PARSENAME function returns the specified part of an object name.  The parts of an object that can be retrieved are the object name, owner name, database name and server name.  ThePARSENAME function does not indicate whether an object by the specified name exists.  PARSENAME just returns the specified part of the specified object name. PARSENAME ( 'object_name' , object_part ) The  object_name parameter...
Read More »

Thursday, December 18, 2014

Dynamically create mutiple users login in sql server

Dynamically create multiple users login in sql server by passing dynamic value DECLARE @site_value INT; DECLARE @login varchar(20); DECLARE @password varchar(20); DECLARE @Sql varchar(max); SET @site_value = 0; WHILE @site_value <= 3 BEGIN      SET @site_value = @site_value + 1;    SET @login = 'user' + cast(@site_value as varchar(10));    SET @password...
Read More »

Wednesday, December 17, 2014

How to recover SA password on Microsoft SQL Server 2008 R2

How to recover SA password on Microsoft SQL Server 2008 R2 When you are using MS SQL Server in mixed mode, it is very important that you know your SA password. There can be different reasons you lost the password Person who installed the SQL Server knows the password but has left the building. You did not write down the password in your password file Password file is lost … Steps to recover the...
Read More »

Wednesday, December 3, 2014

CKEditor Toolbar in asp.net

CKEditor Toolbar Toolbar Customization CKEDITOR.editorConfig = function( config ) { // Define changes to default configuration here. For example: // config.language = 'fr';         // config.uiColor = '#AADC6E';     config.toolbar_Full =     [    { name: 'document', items: ['Source', '-', 'Save', 'NewPage', 'DocProps', 'Preview', 'Print', '-', 'Templates'] },    { name: 'clipboard', items: ['Cut', 'Copy',...
Read More »

Tuesday, December 2, 2014

All About Client Script

Page redirection script ///     /// This method is used to redirect into another page     ///     ///     private void RedirectionScript(string pageUrl)     {         string redirectionScript = "" + "function Delayer(){" + "setTimeout('Redirection()', 0);" + "}" + "function Redirection(){" + "window.location = '" + pageUrl + "';" + "}" + "Delayer()" + "";         Page.ClientScript.RegisterStartupScript(this.GetType(),...
Read More »

My Blog List