allianz77

Stories kicked by allianz77

T-SQL limit(code-cs.blogspot.com)

submitted by allianz77allianz77(80) 1 year, 1 month ago

Simple t-sql Limit as in mysql using row_number function read more...

add a comment |category: |Views: 7

tags: another

T-SQL recursive query(code-cs.blogspot.com)

submitted by allianz77allianz77(80) 1 year, 2 months ago

Recursive sql query made simple read more...

add a comment |category: |Views: 40

tags: another

svc logging(aspnetfix.blogspot.com)

submitted by allianz77allianz77(80) 2 years, 1 month ago

Enable logging of silverlight wcf services under IIS. Find why service not found execption is thrown. read more...

add a comment |category: |Views: 5

tags: another

Render web user control in a web service(aspnetfix.blogspot.com)

submitted by allianz77allianz77(80) 2 years, 8 months ago

Render web user control in a web service and return output as string. You can use it then with ajax to have custom dynamic web page. read more...

add a comment |category: |Views: 67

tags: another

Boosting performance on aspx pages(aspnetfix.blogspot.com)

submitted by allianz77allianz77(80) 4 years, 1 month ago

Most of internet tutorials tells you to use Page Load event to bind your data to controls. What's happening when you have to rebind controls again because your data source is changed due to some event where you have to re bind controls. read more...

add a comment |category: |Views: 16

tags: another

wwDataBinder with dictionaries and lists(aspnetfix.blogspot.com)

submitted by allianz77allianz77(80) 4 years, 1 month ago

This a a small article for those who used wwdatabinder and want to use automatic binding with dictionaries or lists. You can download code. read more...

add a comment |category: |Views: 111

tags: another

Web user controls design pattern and data binding part 1(aspnetfix.blogspot.com)

submitted by allianz77allianz77(80) 4 years, 1 month ago

A lot of people are using user controls in asp because they are very easy to use, have design time support and so on. The purpose of this article is to prevent making mistakes when design a web control and to present a pattern that works for me perfectly read more...

add a comment |category: |Views: 71

tags: another

Things you MUST dispose(dotnetfacts.blogspot.com)

submitted by eugenciutaeugenciuta(715) 4 years, 1 month ago

When the .NET Framework instantiates an object, it allocates memory for that object on the managed heap. The object remains on the heap until it's no longer referenced by any active code, at which point the memory it's using is reclamed by the Garbage Collector (GC). Before the GC deallocates the memory, the framework calls the object's Finalize() method, but developers are responsible for calling the Dispose() method. read more...

add a comment |category: |Views: 22

tags: another

How to: Optimize the memory usage with strings(dotnetfacts.blogspot.com)

submitted by eugenciutaeugenciuta(715) 4 years, 1 month ago

System.String type is used in any .NET application. We have strings as: names, addresses, descriptions, error messages, warnings or even application settings. Each application has to create, compare or format string data. Considering the immutability and the fact that any object can be converted to a string, all the available memory can be swallowed by a huge amount of unwanted string duplicates or unclaimed string objects. Now let's see how a string object should be handled to preserve memory. read more...

add a comment |category: |Views: 56

tags: another

How to: Optimize the strings’ comparison(dotnetfacts.blogspot.com)

submitted by eugenciutaeugenciuta(715) 4 years, 1 month ago

Due to my web research I found some useful tips about how to compare two strings making full use of performance in .NET Framework. read more...

add a comment |category: |Views: 10

tags: another