shankarmanne.blogspot.com
Shankar Manne: May 2011
http://shankarmanne.blogspot.com/2011_05_01_archive.html
Tuesday, May 3, 2011. Ankur Bhatnagar: Order Of Elements in Hash Table. Ankur Bhatnagar: Order Of Elements in Hash Table. Remember that a Hashtable represents a collection of key/value pairs that are organized based on the hash code of the key, and when a eleme.". Subscribe to: Posts (Atom). Ankur Bhatnagar: Order Of Elements in Hash Table. View my complete profile.
shankarmanne.blogspot.com
Shankar Manne: How to Create Data Base using a Stored Procedure during RUN TIME!
http://shankarmanne.blogspot.com/2010/12/how-to-create-data-base-using-stored.html
Monday, December 20, 2010. How to Create Data Base using a Stored Procedure during RUN TIME! Assume that we have a requirement to create data base on the run time, for that purpose we can create an SP to create a data base and we can throw the new data base name as parameter as shown below…. CREATE PROCEDURE sp dbCreation. Newdb sysname = NULL. EXEC ( 'CREATE DATABASE ' @newdb ). EXEC sp dbcreation Sample1. EXEC sp dbcreation Sample2. Subscribe to: Post Comments (Atom). View my complete profile.
shankarmanne.blogspot.com
Shankar Manne: Task: Using Cross Page Posting and Query String across pages to share information among web pages in ASP.NET
http://shankarmanne.blogspot.com/2011/02/demo-using-cross-page-posting-and-query.html
Tuesday, February 1, 2011. Task: Using Cross Page Posting and Query String across pages to share information among web pages in ASP.NET. Develop three pages, one for input, two for confirmation and three for send mail. 1 Collect information about user in Page1 (INPUT) and user submits that go to page2 using Cross Page Posting. 2 In Page2(Confirm) access the information of controls from page1 using Cross Page Posting (previouspage) and generate the output look a like in screenshot. View my complete profile.
shankarmanne.blogspot.com
Shankar Manne: February 2011
http://shankarmanne.blogspot.com/2011_02_01_archive.html
Tuesday, February 1, 2011. Task: Using Cross Page Posting and Query String across pages to share information among web pages in ASP.NET. Develop three pages, one for input, two for confirmation and three for send mail. 1 Collect information about user in Page1 (INPUT) and user submits that go to page2 using Cross Page Posting. 2 In Page2(Confirm) access the information of controls from page1 using Cross Page Posting (previouspage) and generate the output look a like in screenshot. View my complete profile.
shankarmanne.blogspot.com
Shankar Manne: April 2010
http://shankarmanne.blogspot.com/2010_04_01_archive.html
Thursday, April 22, 2010. Smooth Streaming, an IIS Media Services. Extension, enables adaptive streaming of media to Silverlight and other clients over HTTP. Smooth Streaming provides a high-quality viewing experience that scales massively on content distribution networks, making true HD 1080p media experiences a reality. Smooth Streaming is the productized version of technology first used by Microsoft to deliver on-demand video of the 2008 Summer Olympics for NBCOlympics.com. Subscribe to: Posts (Atom).
shankarmanne.blogspot.com
Shankar Manne: May 2010
http://shankarmanne.blogspot.com/2010_05_01_archive.html
Friday, May 7, 2010. Deploying Windows Service - Error. No public installers with the RunInstallerAttribute.Yes attribute could be found". In general lot of people get a problem in common while deploying a Windows Service by utility like InstallUtil of .NET Framework, the reason for this may be your Windows Service is missing Service Installer pointing to it which is required and following program demonstrates adding a Service Installer as attribute along with your Windows Service code. M streamWriter...
shankarmanne.blogspot.com
Shankar Manne: Optional & Named Parameters in C#
http://shankarmanne.blogspot.com/2011/04/optional-named-parameters-in-c.html
Sunday, April 10, 2011. Optional and Named Parameters in C#. Copied From Professional C# WROX for my students reference. Optional and Named Parameters. Public void CreateUser(string firstname, string lastname, bool isAdmin, bool isTrialUser) . If you wanted to overload this and have default values for the two. Public void CreateUser(string firstname, string lastname, bool isAdmin = false, bool isTrialUser = true) . Looking over this bit of code, the parameters. Do not have a default value set, while.
shankarmanne.blogspot.com
Shankar Manne: Private Constructors In Hierarchy
http://shankarmanne.blogspot.com/2011/04/private-constructors-in-hierarchy.html
Tuesday, April 12, 2011. Private Constructors In Hierarchy. Private Constructors In Hierarchy Leads to Compilation Error:. Conclusion: Defining Private constructors in Hierarchy compromises Hierarchy of Constructors. Refer Constructor Calling Hierarchy @ http:/ shankarmanne.blogspot.com/2011/04/constructor-calling-hierarchy-among.html. Private int no1;. Thisno1 = 0;. Class DerivedClass : BaseClass. Private int no2;. Thisno2 = 0;. Static void Main(string[] args). DerivedClass d1 = new DerivedClass();.
shankarmanne.blogspot.com
Shankar Manne: Calling Base Versions of Functions
http://shankarmanne.blogspot.com/2011/04/calling-base-versions-of-functions.html
Tuesday, April 12, 2011. Calling Base Versions of Functions. Assume We have a base class and derived class, We overrided a method in derived class and we have a requirement of calling this virtual method of base class from overrided method of derived class or any other position of the derived class, then we can use C# feature called as "Calling Base Versions of Functions" using the sytax base. Note that you can use the base. Public virtual void ShowVal(). Console.WriteLine("In Base Class");.
shankarmanne.blogspot.com
Shankar Manne: July 2010
http://shankarmanne.blogspot.com/2010_07_01_archive.html
Sunday, July 18, 2010. Replication Publishing Model Overview. Replication uses a publishing industry metaphor to represent the components in a replication topology, which include Publisher, Distributor, Subscribers, publications, articles, and subscriptions. It is helpful to think of Microsoft SQL Server replication in terms of a magazine:. 183; A magazine publisher produces one or more publications. 183; A publication contains articles. 183; Subscribers receive publications to which they have subscribed.