Being a Chapter Lead, I organized this event with help of executive members on technology discussion so named it “Technology Day”. We did this meeting on 3rd August at Unit Nexus Corporation, Zirakpur with help from SSS & Educational Society, Gorakhpur.
[More]
23. July 2013
Anil Kumar
C# , WCF
We can stop non authorized users access to our hosted WCF services by applying some sort of techniques. WCF doesn't provide us any direct On and Off mechanism for valid and invalid access.
[More]
SignalR is new buzz in development technology. It is not going to replace asp.net but works for asp.net. It is a technology ( in more technical words it is a library) that facilitate us to add real-time functionality into our asp.net based applications. It is very useful where high time/real time update is required like online group gaming, chat, stock trade etc.
[More]
It was the first event in beautiful city Chandigarh from C#Corner. In June month only, I took the in
[More]
There could be many ways to update or change the serial number value in existing list. Using LINQ, we can update the serial number without using our normal loop. This can be done with help of Lambda Expression as below -
int rowIndexNumber = 0;
myExistingList.ToList()
.ForEach(row...
[More]
WCF services writing and consuming related basic points are as in short -
Service : A service is a unit of functionality, available to the world on some contract or deal.
Client : A Client is nothing but a service consuming party. It uses the required protocols to consume/use the exposed s...
[More]
Microsoft provides an property for pages " maintainScrollPositionOnPostBack". If this is set to true it works fine in Internet Explorer browser. But maintainScrollPositionOnPostBack="true" doesn't work in webkit browsers correctly.
some techies use hidden field to maintain the scroll position...
[More]
Are you expecting a required field validator will fire on your empty textbox field (textbox with readonly property)? Well, it will not fire. You need to refer the behavior of asp.net validators. Required field validator is disabled for readonly inputs. But still you have a scenario where you wa...
[More]
CodePatternAdSense
You can do it using third party well written code that are available in the
[More]
Though iframe is no more used in modern web programming. HTML5 and CSS3 is buzz now a days. Some prefer using update panel for their whole content page. There are many ways to handle the post backs of pages for better efficiency.
Here, I am giving a good sample for using master pages with iframe fo...
[More]