|
|
-
|
|
Often in web applications, while displaying some data, we often pad data with some characters for uniform look. Suppose, to display dates in a combo box, we might want to display them as 00,01,02...30. Similarly in a numeric box with range 1 to 100, we......
|
|
-
|
|
I was facing one issue with hosting wcf service with httpbinding. I was getting below error message
"HTTP could not register URL http://+:8088/MarketService/. Your process does not have access rights to this namespace"
It clearly says service host p......
|
|
-
|
|
In general, when a .net assembly is compiled, it will generate IL, When its executed, it can be converted to any platform native code.
Its possible to create assembly directly targeting specific platform. To generate Platform specific assembly such a......
|
|
-
|
|
In my previous post I discussed about generating auto-generate serial no. in a GridView using Container.DataItemIndex. However, this property will not work for Repeater and Datalist. For these controls, there is another property called ItemIndex , which......
|
|
-
|
|
In Asp.net we used to one submit button per one form. Now suppose you have scenario where you need to add more than one submit button in single form, In MVC its simpler with help of “ActionNameSelectorAttribute“. Here is example.
[code]
@using (Htm......
|
|
-
|
|
Timespan.Minutes will gives the minutes part of difference. (Suppose for a 2Hrs 10 Mins difference, it will gives 10mins)
Timespan.TotalMinutes will gives the Total Minutes difference. (Suppose for a 2Hrs 10 Mins difference, it will gives 130mins)
R......
|
|
-
|
|
Today I learn from Jalpesh Blog C# 4.0 introduce new BigInteger data type.you can store up to 2^64 number in this data type
Thank You......
|
|
-
|
|
ILSpy, recently get to know about this tool from my colleague, which can be used to view the source code of an assembly. Suppose, if you have a compiled assembly and if you don't have source code, by using this ILSpy, you can decompile the assembly and ......
|
|
-
|
|
Just learned from "Peter Tyrrell" blog post on "ResolveUrl vs. ResolveClientUrl" ,ResolveClientUrl returns a path relative to the current page, and ResolveUrl returns a path relative to the site root. Both methods are particularly useful when passing in......
|
|
-
|
|
One limitation of output caching with ASP.NET V1->V3.5, though, is that the cache store itself is not extensible and it has to stored in in-memory to overcome this issue ASP.NET 4 adds an extensibility point to output caching that now enables develop......
|
|