User Vaibhav - Stack Overflow most recent 30 from stackoverflow.com 2009-12-09T00:24:02Z http://stackoverflow.com/feeds/user/380 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/54929/hidden-features-of-asp-net 112 Hidden Features of ASP.NET Vaibhav 2008-09-10T18:20:47Z 2009-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-benefits 6 Do sealed classes really offer performance Benefits? Vaibhav 2008-08-05T12:00:28Z 2009-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-technology 10 How popular is WPF as a technology? Vaibhav 2008-09-01T13:32:22Z 2009-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-net 5 Memory Leaks in .Net Vaibhav 2008-08-21T16:11:34Z 2009-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#1521250 2 Answer by Vaibhav for A .NET DLL question Vaibhav 2009-10-05T17:04:36Z 2009-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#3279 7 Answer by Vaibhav for What is the single most influential book every programmer should read? Vaibhav 2008-08-06T10:59:37Z 2009-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-pc 0 How can I access UDP ports using a web application on the client PC? Vaibhav 2009-09-29T20:44:03Z 2009-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#61165 1 Answer by Vaibhav for Hidden Features of JavaScript? Vaibhav 2008-09-14T06:42:19Z 2009-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-cms 23 Your experience with .Net based CMS Vaibhav 2008-08-14T09:24:32Z 2009-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-linq 1 When should I use Compiled LINQ vs Normal LINQ Vaibhav 2008-08-11T19:50:31Z 2009-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#38220 158 Answer by Vaibhav for What non-programming books should programmers read? Vaibhav 2008-09-01T17:56:58Z 2009-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-linq 3 Has anyone run performance benchmarks comparing LINQ Vaibhav 2008-08-11T19:11:49Z 2009-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-iphone 4 Help on website optimization for iPhone Vaibhav 2008-09-09T20:23:55Z 2009-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#743416 0 Answer by Vaibhav for What is the correct way to model an object which provides many services ? Vaibhav 2009-04-13T09:11:28Z 2009-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#743371 0 Answer by Vaibhav for Is it possible to convert web application to mobile application? Vaibhav 2009-04-13T08:42:04Z 2009-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#38216 52 Answer by Vaibhav for What non-programming books should programmers read? Vaibhav 2008-09-01T17:54:14Z 2009-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#646459 1 Answer by Vaibhav for Counting to 10 Vaibhav 2009-03-14T18:43:27Z 2009-03-14T18:43:27Z <p>C#</p> <pre><code>for (int i = 1; i &lt;= 10; i++) Console.WriteLine(i.ToString()); </code></pre> http://stackoverflow.com/questions/41239/i-am-having-trouble-getting-phpbb-to-authenticate-with-our-active-directory 0 I am having trouble getting phpBB to authenticate with our Active Directory Vaibhav 2008-09-03T06:16:34Z 2009-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-environment 1 Need help with Programming Environment Vaibhav 2008-09-10T16:48:46Z 2009-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-sharepoint 2 Which is the best online resource for mastering SharePoint? Vaibhav 2008-08-25T20:14:06Z 2009-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#531216 0 Answer by Vaibhav for how to destroy a Static Class in C# Vaibhav 2009-02-10T06:14:39Z 2009-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#531170 1 Answer by Vaibhav for How to run periodic processes on SQL Server 2008 Vaibhav 2009-02-10T05:40:55Z 2009-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#488470 0 Answer by Vaibhav for Can I change the owner of the file saved through IIS (with ASP.NET) Vaibhav 2009-01-28T17:07:47Z 2009-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#466420 4 Answer by Vaibhav for Static methods in a class - okay in this situation? Vaibhav 2009-01-21T18:22:10Z 2009-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#462635 1 Answer by Vaibhav for Should <br /> and <hr /> be avoided at all costs in web design? Vaibhav 2009-01-20T19:07:03Z 2009-01-20T19:07:03Z <p>Interesting question. I have always used <code>&lt;br/&gt;</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>&lt;hr/&gt;</code> on the other hand...</p> http://stackoverflow.com/questions/462587/does-the-term-genius-apply-in-programming/462594#462594 7 Answer by Vaibhav for Does the term genius apply in programming? Vaibhav 2009-01-20T18:56:20Z 2009-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#374117 1 Answer by Vaibhav for What is a solution folder in visual studio Vaibhav 2008-12-17T09:53:40Z 2008-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#355329 1 Answer by Vaibhav for ASP.NET MVC - How to explain it? Vaibhav 2008-12-10T07:17:19Z 2008-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-application 1 Document Management for an Application Vaibhav 2008-11-29T23:11:09Z 2008-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#328165 4 Answer by Vaibhav for What do you think of "Programming is Gardening, not Engineering"? Vaibhav 2008-11-29T23:17:09Z 2008-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-question Comment by Vaibhav on A .NET DLL question Vaibhav 2009-10-05T17:02:07Z 2009-10-05T17:02:07Z Are 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#1494914 Comment by Vaibhav on How can I access UDP ports using a web application on the client PC? Vaibhav 2009-09-30T19:11:16Z 2009-09-30T19:11:16Z Yes, 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-pc Comment by Vaibhav on How can I access UDP ports using a web application on the client PC? Vaibhav 2009-09-29T21:18:47Z 2009-09-29T21:18:47Z I 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#1494914 Comment by Vaibhav on How can I access UDP ports using a web application on the client PC? Vaibhav 2009-09-29T21:01:27Z 2009-09-29T21:01:27Z One 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#1494868 Comment by Vaibhav on How can I access UDP ports using a web application on the client PC? Vaibhav 2009-09-29T20:55:33Z 2009-09-29T20:55:33Z Yes, 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#1078420 Comment by Vaibhav on Hidden Features of ASP.NET Vaibhav 2009-07-15T08:23:54Z 2009-07-15T08:23:54Z Awesome - thanks :) http://stackoverflow.com/questions/531104/how-to-run-periodic-processes-on-sql-server-2008/531107#531107 Comment by Vaibhav on How to run periodic processes on SQL Server 2008 Vaibhav 2009-02-10T05:39:07Z 2009-02-10T05:39:07Z Yes, that is one way to do it, voted up :) http://stackoverflow.com/questions/377857/reboot-stackoverflow Comment by Vaibhav on Reboot Stackoverflow Vaibhav 2008-12-18T13:43:20Z 2008-12-18T13:43:20Z I 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#111969 Comment by Vaibhav on Outsourcing Vaibhav 2008-09-21T20:21:08Z 2008-09-21T20:21:08Z er... 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#64250 Comment by Vaibhav on Confessions of your worst WTF Moment. (What not to do.) Vaibhav 2008-09-19T14:28:21Z 2008-09-19T14:28:21Z Nice to see Scott on here... http://stackoverflow.com/questions/101238/letting-several-assemblies-access-the-same-text-file/101247#101247 Comment by Vaibhav on Letting several assemblies access the same text file Vaibhav 2008-09-19T11:48:32Z 2008-09-19T11:48:32Z Well, 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#101247 Comment by Vaibhav on Letting several assemblies access the same text file Vaibhav 2008-09-19T11:46:12Z 2008-09-19T11:46:12Z What about Registry? http://stackoverflow.com/questions/101238/letting-several-assemblies-access-the-same-text-file Comment by Vaibhav on Letting several assemblies access the same text file Vaibhav 2008-09-19T11:45:30Z 2008-09-19T11:45:30Z I 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#100928 Comment by Vaibhav on Help needed for extending Asp.Net Vaibhav 2008-09-19T10:26:18Z 2008-09-19T10:26:18Z That, 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#100926 Comment by Vaibhav on Help needed for extending Asp.Net Vaibhav 2008-09-19T10:24:56Z 2008-09-19T10:24:56Z That 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.