-
In continuation of my previous post on search implementation using knockoutjs . In previous example I bind grid with knockoutjs observable array object. Because of observable characteristics, once view model update then knockoutjs engine render html controls which are bound to that view model. I found...
-
In most of the websites we have contact forms and other forms where we have some standard inputs like Phone,Email and Website URL and those are widely used in any site and has specific features. Email is one of the most standard used input elements which are used in our forms. Till HTML 4.1 we have standard...
-
These Questions are common to C++, C#, Java Interviews. Questions are related to software design patterns 1. What is Loosely Coupling in Object Oriented Programming or Software Design? System should have as many dependencies as is needed to do their job - and the dependencies should be few. ...
-
Volatile variable and Thread.MemoryBarrier method use in condition when you want to access variable across threads without putting lock. You can read more about Volatile and Thread.MemoryBarrier on MSDN. Volatile keyword: Excerpts from MSDN The volatile modifier is usually used for a field that is accessed...
-
Introduction to Windows Azure. Recently I have got chance to work with SQL Azure and I loved it. So that’s why Here I am going to start series of post on Windows Azure and SQL Server Azure. In first post of this series I am going to introduce you windows azure platform. I know there are many peoples...
-
I have been writing few post about Code refactoring features of visual studio 2010 and This blog post is also one of them. In this post I am going to show you reorder parameters features in visual studio 2010. As a developer you might need to reorder parameter of a method or procedure in code for better...
-
Almost two years ago I blogged about How To Get Design-Time Support for DotNetNuke Controls , and back then the solution seemed to be the easiest, just change one setting in your project and everything was just fine. Well, as the years have progressed and people have downloaded and worked with...
-
Exceptions plays very important role in any application. You are expected to throw and catch correct exceptions. In case of custom message you can throw custom Exceptions. I am outlining some important points which might help in Exception handling in your application. Fewer Exceptions throws and catches...
-
Recently in one the project we require to check whether page is secure or not as we are going to open a new popup window from that page and that why we need to pass https protocol if we have that page secure. I have search lots of things on internet and I have found following ways of finding whether...
-
I developed a sample application long time back to use WPF UI in multithreaded scenario. This application shows market prices in real time. I don’t have any exchange connection so I created arbitrary market price generator to simulate live environment. I am explaining step by step functionality...
-
JQuery UI contains great controls and it’s very useful when developing sites. Today a new version of Jquery UI is launched. You can find more details about that from following link. http://blog.jqueryui.com/2011/01/jquery-ui-1-8-9/ It’s contains Bug fixes for Datepicker, Tabs and other things and also...
-
When compiling source code, your compiler must process each literal string and emit the string into the managed module's metadata. If the same literal string appears several times in your source code, emitting all of these strings into the metadata will bloat the size of the resulting file...
-
Now a days computers are coming with multiple processors that enable multiple threads to be executed simultaneously to give performance of applications and we can expect significantly more CPUs in near future. If application is doing CPU intensive tasks and we find that one CPU is taking 100 %usage and...
-
We all love Visual Studio as great IDE and Microsoft is providing more and more features for that IDE. Let’s investigate one of great features that Microsoft has given with Visual Studio 2010. What is code snippets? Code snippets is a one of the cool feature that given in Visual Studio IDE. If...
Posted to
DotNetJalps-SQL
by
Jalpesh
on
01-21-2011
Filed under:
Filed under: BRH, #DOTNET, #ASP.NET, ASP.NET, DOTNET, #.NET, ASP.NET MVC, VisualStudio, .NET, ASP.NET 4.0, VisualStudio2010
-
An implicit keyword is used to declare an implicit user-defined type conversion operator. In other word, this gives a power to your C# class, which can accepts any reasonably convertible data type without type casting. And such kind of class can also be assigned to any convertible object or variable...