Suresh Behera
The Microsoft .Net Junkies
-
101 Visual Basic and C# Code Samples
101 Visual Basic and C# Code Samples
http://www.microsoft.com/downloads/details.aspx?familyid=08E3D5F8-033D-420B-A3B1-3074505C03F3&displaylang=en#filelist -
ILMerge
ILMerge is a utility that can be used to merge multiple .NET assemblies into a single assembly. ILMerge takes a set of input assemblies and merges them into one target assembly. The first assembly in the list of input assemblies is the primary assembly. When the primary assembly is an executable, then the target assembly is created as an executable with the same entry point as the primary assembly. Also, if the primary assembly has a strong name, and a .snk file is provided, then the target assembly is re-signed with the specified key so that it also has a strong name.
ILMerge is packaged as a console application. But all of its functionality is also available programmatically. While Visual Studio does not allow one to add an executable as a reference, the C# compiler does, so you can write a C# client that uses ILMerge as a library.
There are several options that control the behavior of ILMerge. See the documentation that comes with the tool for details.
Currently, ILMerge does not work on Rotor or Mono. -
SQL Script and Profiler templates
Good SQL Information
------------------- -
Becoming a Guru
Wha....This is what i was looking for long time ago.I always get a common question directly/indirectly which is somthing similar to below.Thanks to —J.T.
-
A query cannot update a text, ntext, or image column and a clustering key at the same time
The above error was killing my team's time.Here how we solve this.
-
How:Debugging SQL With the Visual Studio .NET debugger
Wann More...
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/vsdebug/html/_core_debugging_sql.asp -
Web Application Security
Nice article on Web Application Security
-
How to Override the __doPostBack function ?
Well it sometime things are looks difficult when you work simple traditional way.Sometime back i was trying to submit server data from JavaScript confirm message box. I did by calling __doPostBack function in asp.net.Which looks something like this
btnSuresh.Attributes.Add("onclick", "if(!confirm('Are you sure you want to delete?')){return false;}__doPostBack();"); -
How to Override the __doPostBack function ?
Well it sometime things are looks difficult when you work simple traditional way.Sometime back i was trying to submit server data from JavaScript confirm message box. I did by calling __doPostBack function in asp.net.Which looks something like this
btnSuresh.Attributes.Add("onclick", "if(!confirm('Are you sure you want to delete?')){return false;}__doPostBack();"); -
About the Pop-up Blocker
The Pop-up Blocker feature in Microsoft Internet Explorer 6 for Microsoft Windows XP Service Pack 2 (SP2) protects users from malicious activity that is often hidden behind or initiated by pop-up windows. Designed to give users more control over their Web browsing experience, this feature is on by default, and blocks script-initiated pop-up and pop-under windows that launch automatically from a Web site. By understanding how the Pop-up Blocker works, you can ensure that important information on your Web site gets noticed, and you can provide your users with a better Web-browsing experience.