dot-net-factory.blogspot.com
Vipin Cherukara's Dot net Factory: April 2010
http://dot-net-factory.blogspot.com/2010_04_01_archive.html
SQL Server : string.Format. Posted by Vipin Cherukara. On Wednesday, April 28, 2010. Labels: Sql Server 2005. DROP FUNCTION dbo.fnFormatString GO. CREATE FUNCTION dbo.fnFormatString (. Arg1 sql variant, @arg2 sql variant =. Arg3 sql variant =. AS BEGIN RETURN REPLACE (. Arg1 as varchar (. Arg2 as varchar (. Arg3 as varchar (. PRINT dbo.fnFormatString (. This {0} of works like {1} in that langauge {2}'. Dot net 2.0 Framework. Dot Net Tools and Utilities. SQL Server : string.Format.
dot-net-factory.blogspot.com
Vipin Cherukara's Dot net Factory: SQL Server : string.Format
http://dot-net-factory.blogspot.com/2010/04/sql-server-stringformat.html
SQL Server : string.Format. Posted by Vipin Cherukara. On Wednesday, April 28, 2010. Labels: Sql Server 2005. DROP FUNCTION dbo.fnFormatString GO. CREATE FUNCTION dbo.fnFormatString (. Arg1 sql variant, @arg2 sql variant =. Arg3 sql variant =. AS BEGIN RETURN REPLACE (. Arg1 as varchar (. Arg2 as varchar (. Arg3 as varchar (. PRINT dbo.fnFormatString (. This {0} of works like {1} in that langauge {2}'. Your blog is my stepping stone, my friend. Thanks for the heads up on this subject.
dot-net-factory.blogspot.com
Vipin Cherukara's Dot net Factory: ASP.NET 2.0 Master Pages !
http://dot-net-factory.blogspot.com/2009/06/aspnet-20-master-pages.html
ASPNET 2.0 Master Pages! Posted by Vipin Cherukara. On Monday, June 8, 2009. Dot net 2.0 Framework. Master pages are like any other ASP.NET pages with a couple of exceptions. They are identified by a .master file extension. Listing 1 (the code is online at www.sys-con.com/dotnet/source.cfm. Is an example of a simple master page. Note that instead of the familiar page directive. In a normal ASPX page, the master page has a. Controls in the master page are initialized. Master page is initialized. ASPNET 2&...
dot-net-factory.blogspot.com
Vipin Cherukara's Dot net Factory: Tools and Utilities for .NET
http://dot-net-factory.blogspot.com/2009/06/tools-and-utilities-for-net.html
Tools and Utilities for .NET. Posted by Vipin Cherukara. On Friday, June 5, 2009. Labels: Dot Net Tools and Utilities. Third Party Tools and Utilities. Hunter Stone's WCE is a tool designed to make management of ASP.NET Web configuration (web.config) files quicker and easier. Web.Config Editor supports two modes—Simple Mode, used for editing a single web.config file, and Composite Mode, used for editing all web.config files that apply to an ASP.NET application. Macromedia - Macromedia Dreamweaver MX.
dot-net-factory.blogspot.com
Vipin Cherukara's Dot net Factory: Creating Shared Assembly or GAC Assembly and accessing
http://dot-net-factory.blogspot.com/2009/06/creating-shared-assembly-or-gac.html
Creating Shared Assembly or GAC Assembly and accessing. Posted by Vipin Cherukara. On Friday, June 5, 2009. Labels: Dot net info. Creating an assembly key file. To create a strong name, you use the syntax:. Sn -k StrongNameFile.snk. Adding StrongNameFile.snk entry and modifying the version in AssemblyInfo.cs. Assembly: AssemblyVersion("1.0.1.1")]. Assembly: AssemblyKeyFile("c: DuttLibrary.snk")]. Adding your assembly to your GAC. Gacutil /i AssemblyFileName.dll. Adding your assembly machine.config. Power...
dot-net-factory.blogspot.com
Vipin Cherukara's Dot net Factory: Dot net Interview questions and answers
http://dot-net-factory.blogspot.com/2009/06/dot-net-interview-questions-and-answers.html
Dot net Interview questions and answers. Posted by Vipin Cherukara. On Tuesday, June 9, 2009. Labels: Dot net 2.0 Framework. What do you mean by three-tier architecture? The three-tier architecture was comes into existence to improve management of code and contents and to improve the performance of the web based applications. There are mainly three layers in three-tier architecture. the are define as follows. Does NET CLR and SQL SERVER run in different process? Dot Net CLR and all .net realtes appli...
dot-net-factory.blogspot.com
Vipin Cherukara's Dot net Factory: Exporting data from datagrid to excel
http://dot-net-factory.blogspot.com/2009/06/exporting-data-from-datagrid-to-excel.html
Exporting data from datagrid to excel. Posted by Vipin Cherukara. On Friday, June 5, 2009. DgHeaderStyle.ForeColor=Color.Blue;. DgDataSource = DSCustRepFormsListExcel;. Response.ContentType = "application/vnd.ms-excel";. FileName = "CustomReportsForms.xls";. Response.AddHeader("Content-Disposition","FileName=" fileName);. Response.ContentEncoding = System.Text.Encoding.UTF7;. Response.Charset = " ;. System.IO.StringWriter oStringWriter =. System.IO.StringWriter();. Dot net 2.0 Framework.
dot-net-factory.blogspot.com
Vipin Cherukara's Dot net Factory: Should I use an abstract class or an interface?
http://dot-net-factory.blogspot.com/2009/06/should-i-use-abstract-class-or.html
Should I use an abstract class or an interface? Posted by Vipin Cherukara. On Wednesday, June 17, 2009. Labels: Dot net 2.0 Framework. 8212;inherit from—one other class. Therefore, by inheriting from (subclassing) an abstract class, the derived class has used up its ability to participate in a meaningful type hierarchy. On the other hand, a class can implement. 8212;inherit from—any number of interfaces. And, it can still inherit from (subclass) a base class which makes sense. 8212; can implement the.
dot-net-factory.blogspot.com
Vipin Cherukara's Dot net Factory: June 2009
http://dot-net-factory.blogspot.com/2009_06_01_archive.html
Should I use an abstract class or an interface? Posted by Vipin Cherukara. On Wednesday, June 17, 2009. Labels: Dot net 2.0 Framework. 8212;inherit from—one other class. Therefore, by inheriting from (subclassing) an abstract class, the derived class has used up its ability to participate in a meaningful type hierarchy. On the other hand, a class can implement. 8212;inherit from—any number of interfaces. And, it can still inherit from (subclass) a base class which makes sense. 8212; can implement the.