User Vaibhav - Stack Overflowmost recent 30 from stackoverflow.com2009-12-09T00:24:02Zhttp://stackoverflow.com/feeds/user/380http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/54929/hidden-features-of-asp-net112Hidden Features of ASP.NETVaibhav2008-09-10T18:20:47Z2009-11-27T22:59:22Z
<p>There are always features that would be useful in fringe scenarios, but for that very reason most people don't know them. I am asking for features that are not typically taught by the text books.</p>
<p>What are the ones that you know?</p>
http://stackoverflow.com/questions/2134/do-sealed-classes-really-offer-performance-benefits6Do sealed classes really offer performance Benefits?Vaibhav2008-08-05T12:00:28Z2009-11-26T17:58:10Z
<p>I have come across a lot of optimization tips which say that you should mark your classes as sealed to get extra performance benefits.</p>
<p>I ran some tests to check the performance differential and found none. Am I doing something wrong? Am I missing the case where sealed classes will give better results?</p>
<p>Has anyone run tests and seen a difference?</p>
<p>Help me learn :) </p>
http://stackoverflow.com/questions/37944/how-popular-is-wpf-as-a-technology10How popular is WPF as a technology?Vaibhav2008-09-01T13:32:22Z2009-11-17T08:59:58Z
<p>I had a discussion with some colleagues mentioning that there are not too many projects that we do which make use of WPF for creating UI for a windows application (we almost always use Windows Forms instead).</p>
<ul>
<li>Are your experiences the same - i.e. there is not too much adoption of this technology?</li>
<li>Why do you think that is? And will we have a time when we see much more of WPF?</li>
</ul>
http://stackoverflow.com/questions/20386/memory-leaks-in-net5Memory Leaks in .NetVaibhav2008-08-21T16:11:34Z2009-11-13T01:20:48Z
<p>What are all the possible ways in which we can get memory leaks in .Net. I know of two:</p>
<ol>
<li>Not properly un-registering <a href="http://diditwith.net/PermaLink,guid,fcf59145-3973-468a-ae66-aaa8df9161c7.aspx" rel="nofollow">Event Handlers/Delegates</a>.</li>
<li>Not disposing dynamic child controls in Windows Forms:</li>
</ol>
<p>Example:</p>
<pre><code>// Causes Leaks
Label label = new Label();
this.Controls.Add(label);
this.Controls.Remove(label);
// Correct Code
Label label = new Label();
this.Controls.Add(label);
this.Controls.Remove(label);
label.Dispose();
</code></pre>
<p><strong>Update</strong>: The idea is to list common pitfalls which are not too obvious (such as the above). Usually the notion is that memory leaks are not a big problem because of the GC. Not like it used to be in C++.</p>
http://stackoverflow.com/questions/1521216/a-net-dll-question/1521250#15212502Answer by Vaibhav for A .NET DLL questionVaibhav2009-10-05T17:04:36Z2009-10-05T17:04:36Z<p>You need to reference it using /r. If you are using the command line compiler. Here's a link:
<a href="http://msdn.microsoft.com/en-us/library/ms379563%28VS.80%29.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/ms379563%28VS.80%29.aspx</a></p>
<p>If you are using Visual Studio, you simple add it as a reference in your project.</p>
http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/3279#32797Answer by Vaibhav for What is the single most influential book every programmer should read?Vaibhav2008-08-06T10:59:37Z2009-10-02T19:46:08Z<p><a href="http://rads.stackoverflow.com/amzn/click/0805353402" rel="nofollow">Object-Oriented Analysis and Design with Applications</a> by Grady Booch.</p>
http://stackoverflow.com/questions/1494835/how-can-i-access-udp-ports-using-a-web-application-on-the-client-pc0How can I access UDP ports using a web application on the client PC?Vaibhav2009-09-29T20:44:03Z2009-09-29T20:59:11Z
<p>One of the thing that current Windows application does is that it writes out information to a hardware device via a UDP message. We are considering porting the application to web-based.</p>
<p>I checked Silverlight, and that doesn't allow UDP. We don't want to use ActiveX or Java Applets.</p>
<p>What are the other options?</p>
<p>Thanks.</p>
<p><strong>Update</strong> - does anyone know if I can use Flash to do this?</p>
http://stackoverflow.com/questions/61088/hidden-features-of-javascript/61165#611651Answer by Vaibhav for Hidden Features of JavaScript?Vaibhav2008-09-14T06:42:19Z2009-09-22T23:04:47Z<p>It's surprising how many people don't realize that it's object oriented as well.</p>
http://stackoverflow.com/questions/10836/your-experience-with-net-based-cms23Your experience with .Net based CMSVaibhav2008-08-14T09:24:32Z2009-09-10T15:02:03Z
<p>Which is a good .Net based CMS out there (for creating a corporate website). I have used Kentico CMS for some time, and am moderately happy with it.</p>
<p>However, is there anything better out there. I would like the ability to develop my own custom asp.net templates for various page types and install them.</p>
http://stackoverflow.com/questions/8142/when-should-i-use-compiled-linq-vs-normal-linq1When should I use Compiled LINQ vs Normal LINQVaibhav2008-08-11T19:50:31Z2009-08-18T12:53:12Z
<p>I just read up on a performance of LINQ, and there is a HUGE amount to be gained by using Compiled LINQ.</p>
<p>Now, why won't I always use compiled LINQ?</p>
http://stackoverflow.com/questions/38210/what-non-programming-books-should-programmers-read/38220#38220158Answer by Vaibhav for What non-programming books should programmers read?Vaibhav2008-09-01T17:56:58Z2009-08-14T20:14:30Z<h2><a href="http://en.wikipedia.org/wiki/The%5FMythical%5FMan-Month" rel="nofollow">The Mythical Man-Month</a></h2>
<p>by Fred Brooks</p>
<p><img src="http://upload.wikimedia.org/wikipedia/en/f/fd/Mythical%5Fman-month%5F%28book%5Fcover%29.jpg" alt="The Mythical Man Month" /></p>
http://stackoverflow.com/questions/8106/has-anyone-run-performance-benchmarks-comparing-linq3Has anyone run performance benchmarks comparing LINQVaibhav2008-08-11T19:11:49Z2009-08-13T13:40:43Z
<p>to yesteryear's standards such as nHibernate, good old custom ORM, or something like LLBGenPro?</p>
<p>Also, having run the benchmarks, what are your suggestions?</p>
http://stackoverflow.com/questions/52816/help-on-website-optimization-for-iphone4Help on website optimization for iPhoneVaibhav2008-09-09T20:23:55Z2009-06-18T20:22:12Z
<p>We re trying to work on making a mobile version for one of our asp.net web applications, however we would like to make iPhone specific.</p>
<p>Are there any resources out there which provide best practice guidelines: </p>
<ul>
<li>UI Guidelines, any .net control libraries which are iPhone specific.</li>
<li>Security guidelines - anything special that the iPhone Browser (mobile safari) has.</li>
<li>Usability Guidelines - navigation tips, button sizes, etc.</li>
</ul>
<p>Anything else which will help us put together an app which looks native to iPhone.</p>
http://stackoverflow.com/questions/743409/what-is-the-correct-way-to-model-an-object-which-provides-many-services/743416#7434160Answer by Vaibhav for What is the correct way to model an object which provides many services ?Vaibhav2009-04-13T09:11:28Z2009-04-13T09:11:28Z<p>I think with the first approach you are not tying your design down in any way. You could load services dynamically, and easily add new services in the future (since there is no code binding to the exact service type - as in the second method).</p>
http://stackoverflow.com/questions/743348/is-it-possible-to-convert-web-application-to-mobile-application/743371#7433710Answer by Vaibhav for Is it possible to convert web application to mobile application?Vaibhav2009-04-13T08:42:04Z2009-04-13T08:42:04Z<p>Most new mobile platforms have very rich browser capabilities. What you need to watch out for however is to follow good UI standards while developing the web application.</p>
<p>You shouldn't use complex layouts and deeply nested html, too many tables, etc. Remember that a simpler UI can be easily manipulated and resized by most modern mobile browsers to fit their screens.</p>
<p>I agree with Assaf, go easy on the dynamic client side UI stuff.</p>
http://stackoverflow.com/questions/38210/what-non-programming-books-should-programmers-read/38216#3821652Answer by Vaibhav for What non-programming books should programmers read?Vaibhav2008-09-01T17:54:14Z2009-04-11T19:03:49Z<h2><a href="http://rads.stackoverflow.com/amzn/click/0672316498" rel="nofollow">The Inmates Are Running the Asylum</a></h2>
<p>by Alan Cooper</p>
<p><img src="http://ecx.images-amazon.com/images/I/51AGVJzr9LL.%5FSL500%5FBO2,204,203,200%5FAA219%5FPI.jpg" alt="alt text" /></p>
http://stackoverflow.com/questions/646456/counting-to-10/646459#6464591Answer by Vaibhav for Counting to 10 Vaibhav2009-03-14T18:43:27Z2009-03-14T18:43:27Z<p>C#</p>
<pre><code>for (int i = 1; i <= 10; i++)
Console.WriteLine(i.ToString());
</code></pre>
http://stackoverflow.com/questions/41239/i-am-having-trouble-getting-phpbb-to-authenticate-with-our-active-directory0I am having trouble getting phpBB to authenticate with our Active DirectoryVaibhav2008-09-03T06:16:34Z2009-03-10T03:00:26Z
<p>I am pretty sure that the settings that I am using are correct, so all possible things can be wrong which I should check out so that I can make authentication with our Active Directory work.</p>
http://stackoverflow.com/questions/54652/need-help-with-programming-environment1Need help with Programming EnvironmentVaibhav2008-09-10T16:48:46Z2009-02-26T05:56:15Z
<p>I am a .net developer (currently using Visual Studio 2008). I am looking to buy a new computer which I don't want to change for the next 3 years.</p>
<p>Among the choices I have, I am thinking whether a dual core 3 GHz machine will be better, or will a 2.4 GHz quad core machine be better?</p>
<p>Please help.</p>
<p>Update: This is what I got finally:
Intel Q9550 (quad core with 12 M Cache)
4 GB RAM
10K rpm hard drive</p>
http://stackoverflow.com/questions/26757/which-is-the-best-online-resource-for-mastering-sharepoint2Which is the best online resource for mastering SharePoint?Vaibhav2008-08-25T20:14:06Z2009-02-19T09:21:38Z
<p>Please suggest.</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/531199/how-to-destroy-a-static-class-in-c/531216#5312160Answer by Vaibhav for how to destroy a Static Class in C#Vaibhav2009-02-10T06:14:39Z2009-02-10T06:14:39Z<p>The best way in your condition is to have an Reset() method built-in as well, which can reset the values of the class.</p>
http://stackoverflow.com/questions/531104/how-to-run-periodic-processes-on-sql-server-2008/531170#5311701Answer by Vaibhav for How to run periodic processes on SQL Server 2008Vaibhav2009-02-10T05:40:55Z2009-02-10T05:40:55Z<p>While the answer given above for using SQL Server Agent is a very good solution, have you considered having a component (a WCF component maybe) on the server which is doing all the state management, instead of managing the state in the database directly?</p>
http://stackoverflow.com/questions/488310/can-i-change-the-owner-of-the-file-saved-through-iis-with-asp-net/488470#4884700Answer by Vaibhav for Can I change the owner of the file saved through IIS (with ASP.NET)Vaibhav2009-01-28T17:07:47Z2009-01-28T17:07:47Z<p>While this is not a customized example, I believe your answer lies in the
<a href="http://msdn.microsoft.com/en-us/library/system.security.accesscontrol.aspx" rel="nofollow">System.Security.AccessControl</a> namespace.</p>
<p>Take a look at the FileSecurity Class which lets you identify rules and permissions. The FileSecurity class is used by methods such as File.Create().</p>
http://stackoverflow.com/questions/466406/static-methods-in-a-class-okay-in-this-situation/466420#4664204Answer by Vaibhav for Static methods in a class - okay in this situation?Vaibhav2009-01-21T18:22:10Z2009-01-21T18:22:10Z<p>A static method is just fine as long as it is not using any of persistent data between successive calls. I am guessing that your method simply runs a query on the database and returns true/false based on that.</p>
<p>In this scenario, I think the static method should work without a problem, regardless of how many calls you make to it.</p>
http://stackoverflow.com/questions/462619/should-br-and-hr-be-avoided-at-all-costs-in-web-design/462635#4626351Answer by Vaibhav for Should <br /> and <hr /> be avoided at all costs in web design?Vaibhav2009-01-20T19:07:03Z2009-01-20T19:07:03Z<p>Interesting question. I have always used <code><br/></code> as a carriage return (and hence as part of content, really). Not sure if that is the right way of going about it, but its served me well.</p>
<p><code><hr/></code> on the other hand...</p>
http://stackoverflow.com/questions/462587/does-the-term-genius-apply-in-programming/462594#4625947Answer by Vaibhav for Does the term genius apply in programming?Vaibhav2009-01-20T18:56:20Z2009-01-20T18:56:20Z<p>It does apply. A genius programmer writes code which when other programmers see, they tap themselves on their forehead and say, why didn't I think of that.</p>
http://stackoverflow.com/questions/374081/what-is-a-solution-folder-in-visual-studio/374117#3741171Answer by Vaibhav for What is a solution folder in visual studioVaibhav2008-12-17T09:53:40Z2008-12-17T09:53:40Z<p>What I have done historically is to create a project for just holding files (DLLs, etc.)</p>
<p>You can do that as well. This project can be named as whatever folder you are trying to create.</p>
http://stackoverflow.com/questions/355082/asp-net-mvc-how-to-explain-it/355329#3553291Answer by Vaibhav for ASP.NET MVC - How to explain it?Vaibhav2008-12-10T07:17:19Z2008-12-10T07:17:19Z<p><a href="http://www.emadibrahim.com/2008/09/07/deciding-between-aspnet-mvc-and-webforms/" rel="nofollow">http://www.emadibrahim.com/2008/09/07/deciding-between-aspnet-mvc-and-webforms/</a></p>
http://stackoverflow.com/questions/328151/document-management-for-an-application1Document Management for an ApplicationVaibhav2008-11-29T23:11:09Z2008-11-30T02:32:48Z
<p>We are designing an application which would also have a need to manage a large number of files (docs, spreadsheets, scanned files, pdfs, etc.). We will need to associate files with other data in the system.</p>
<p>This will be a web-based application.(asp.net)</p>
<p>While there are many ways to solve this problem, I am thinking whether there is document management backend which we can plug into the software, and use its API to store, retrieve and reference files.</p>
<p>There must be some, but do you know of any open source ones that you have used in the past.</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/328141/what-do-you-think-of-programming-is-gardening-not-engineering/328165#3281654Answer by Vaibhav for What do you think of "Programming is Gardening, not Engineering"?Vaibhav2008-11-29T23:17:09Z2008-11-29T23:17:09Z<p>I think the reason it is never used in common practice is that if this metaphor was presented to the client, you would never get the work - this metaphor = more cost upfront.</p>
<p>You are essentially already telling the client that no matter what, we will definitely have to rewrite code, and bugs will definitely be there post delivery, and all kinds of bad things will happen.</p>
http://stackoverflow.com/questions/1521216/a-net-dll-questionComment by Vaibhav on A .NET DLL questionVaibhav2009-10-05T17:02:07Z2009-10-05T17:02:07ZAre you trying to compile it from the command line?http://stackoverflow.com/questions/1494835/how-can-i-access-udp-ports-using-a-web-application-on-the-client-pc/1494914#1494914Comment by Vaibhav on How can I access UDP ports using a web application on the client PC?Vaibhav2009-09-30T19:11:16Z2009-09-30T19:11:16ZYes, but in that case I am not necessarily going to be able to access the device which is hosted on the client's local LAN from my server... Ideally, the client needs to connect directly to the target.http://stackoverflow.com/questions/1494835/how-can-i-access-udp-ports-using-a-web-application-on-the-client-pcComment by Vaibhav on How can I access UDP ports using a web application on the client PC?Vaibhav2009-09-29T21:18:47Z2009-09-29T21:18:47ZI was afraid of that... well, looks like a change in strategy is required.http://stackoverflow.com/questions/1494835/how-can-i-access-udp-ports-using-a-web-application-on-the-client-pc/1494914#1494914Comment by Vaibhav on How can I access UDP ports using a web application on the client PC?Vaibhav2009-09-29T21:01:27Z2009-09-29T21:01:27ZOne of the reasons why we are moving to web is because the users don't want to install anything on their computer. So, a middleman is not an option.http://stackoverflow.com/questions/1494835/how-can-i-access-udp-ports-using-a-web-application-on-the-client-pc/1494868#1494868Comment by Vaibhav on How can I access UDP ports using a web application on the client PC?Vaibhav2009-09-29T20:55:33Z2009-09-29T20:55:33ZYes, a device either directly attached to the client PC, or accessible through the local LAN of the client PC.
And about your response, I was afraid of that.http://stackoverflow.com/questions/54929/hidden-features-of-asp-net/1078420#1078420Comment by Vaibhav on Hidden Features of ASP.NETVaibhav2009-07-15T08:23:54Z2009-07-15T08:23:54ZAwesome - thanks :)http://stackoverflow.com/questions/531104/how-to-run-periodic-processes-on-sql-server-2008/531107#531107Comment by Vaibhav on How to run periodic processes on SQL Server 2008Vaibhav2009-02-10T05:39:07Z2009-02-10T05:39:07ZYes, that is one way to do it, voted up :)http://stackoverflow.com/questions/377857/reboot-stackoverflowComment by Vaibhav on Reboot StackoverflowVaibhav2008-12-18T13:43:20Z2008-12-18T13:43:20ZI agree with mson. I think instead of closing, the relevance of the questions should simply be decided through upvotes/downvotes.http://stackoverflow.com/questions/111948/outsourcing/111969#111969Comment by Vaibhav on OutsourcingVaibhav2008-09-21T20:21:08Z2008-09-21T20:21:08Zer... outsourcing is not necessarily off shoring (although they do usually go hand in hand)http://stackoverflow.com/questions/63668/confessions-of-your-worst-wtf-moment-what-not-to-do/64250#64250Comment by Vaibhav on Confessions of your worst WTF Moment. (What not to do.)Vaibhav2008-09-19T14:28:21Z2008-09-19T14:28:21ZNice to see Scott on here...http://stackoverflow.com/questions/101238/letting-several-assemblies-access-the-same-text-file/101247#101247Comment by Vaibhav on Letting several assemblies access the same text fileVaibhav2008-09-19T11:48:32Z2008-09-19T11:48:32ZWell, I say if you have a database, then yes put them in the database for sure.... http://stackoverflow.com/questions/101238/letting-several-assemblies-access-the-same-text-file/101247#101247Comment by Vaibhav on Letting several assemblies access the same text fileVaibhav2008-09-19T11:46:12Z2008-09-19T11:46:12ZWhat about Registry?http://stackoverflow.com/questions/101238/letting-several-assemblies-access-the-same-text-fileComment by Vaibhav on Letting several assemblies access the same text fileVaibhav2008-09-19T11:45:30Z2008-09-19T11:45:30ZI am wondering if you are going to experience locking problems... with multiple applications trying to write the same file.http://stackoverflow.com/questions/100860/help-needed-for-extending-asp-net/100928#100928Comment by Vaibhav on Help needed for extending Asp.NetVaibhav2008-09-19T10:26:18Z2008-09-19T10:26:18ZThat, I guess, is what I was hoping is not the case. I think I read in a Scott Gu article that there are events exposed by the pipeline for something like this. Now, I wonder if it really is hard coded.http://stackoverflow.com/questions/100860/help-needed-for-extending-asp-net/100926#100926Comment by Vaibhav on Help needed for extending Asp.NetVaibhav2008-09-19T10:24:56Z2008-09-19T10:24:56ZThat won't work, right? Because this technique doesn't even let the App Domain load, so I am thinking that the HTTP Handler will never get called.