User indyfromoz - Stack Overflow most recent 30 from stackoverflow.com 2009-12-04T08:23:20Z http://stackoverflow.com/feeds/user/32649 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1748247/asp-net-based-open-source-support-ticket-system/1748267#1748267 0 Answer by indyfromoz for ASP.net based open source support ticket system indyfromoz 2009-11-17T11:39:01Z 2009-11-17T11:39:01Z <ol> <li><a href="http://ifdefined.com/bugtrackernet.html" rel="nofollow">Bugtracker.NET</a></li> <li><a href="http://sourceforge.net/projects/bugnet/" rel="nofollow">BugNet</a></li> </ol> <p>I prefer BugNet over others for a number of reasons. It is regularly updated and has quite a good number of followers.</p> <p>HTH,<br/> indyfromoz</p> http://stackoverflow.com/questions/1739312/asp-net-mvc-checkbox/1739362#1739362 0 Answer by indyfromoz for ASP.NET MVC CheckBox indyfromoz 2009-11-15T23:56:40Z 2009-11-15T23:56:40Z <p>I have been working on a ASP.NET MVC based CRM application for a while. I faced the same issue while fetching a list of leads. What users (i.e., Sales Managers, Sales Representatives, etc) usually like to see in a list of leads is the leads that are "hot" or "active". In my case, I load up all the "hot"/"active" leads in the Index method. I have a partial view (within the Index view) which has a list of checkboxes, these checkboxes represent the various stages of a lead, for example, "contacted", "converted", "closed". When the user clicks on one of the checkboxes, I do an <a href="http://docs.jquery.com/Ajax/jQuery.get" rel="nofollow">AJAX/jQuery GET</a> of all the leads which have a status in the array of checked checboxes. Example - </p> <pre> $(document).ready(function() { $(".lead-status").click( function() { var checkedOptions = ''; $("input[class=lead-status]:checked").each( function() { checkedOptions += $(this).attr('name') + ','; }); var leadFilterUrl = "/Lead/FilteredLeadList/?filterString=" + checkedOptions; $.get(leadFilterUrl, function(data) { var divToShowId = "#leads"; var divToShow = $(divToShowId); divToShow.html(''); divToShow.html(data); }, "html"); }); }); </pre> <p>The partial view of checkboxes is like so - </p> <pre><code> &lt;div class="filters-body"&gt; &lt;div class="checkbox-holder"&gt; &lt;div id="new-leads-count" style="float:right;"&gt;&lt;%= Model.NewLeadsCount.ToString() %&gt;&lt;/div&gt; &lt;%= Html.CheckBox("new", new { @checked = "checked", @class = "lead-status" }) %&gt; New &lt;/div&gt; &lt;div class="checkbox-holder"&gt; &lt;div id="contacted-leads-count" style="float:right;"&gt;&lt;%= Model.ContactedLeadsCount.ToString() %&gt;&lt;/div&gt; &lt;%= Html.CheckBox("contacted", new { @checked = "checked", @class = "lead-status" })%&gt; Contacted &lt;/div&gt; &lt;div class="checkbox-holder"&gt; &lt;div id="following-up-leads-count" style="float:right;"&gt;&lt;%= Model.FollowingUpLeadsCount.ToString() %&gt;&lt;/div&gt; &lt;%= Html.CheckBox("following", new { @checked = "checked", @class = "lead-status" })%&gt; Following up &lt;/div&gt; &lt;div class="checkbox-holder"&gt; &lt;div id="rejected-leads-count" style="float:right;"&gt;&lt;%= Model.RejectedLeadsCount.ToString() %&gt;&lt;/div&gt; &lt;%= Html.CheckBox("rejected", new { @checked = "checked", @class = "lead-status" })%&gt; Rejected &lt;/div&gt; &lt;div class="checkbox-holder"&gt; &lt;div id="converted-leads-count" style="float:right;"&gt;&lt;%= Model.ConvertedLeadsCount.ToString() %&gt;&lt;/div&gt; &lt;%= Html.CheckBox("converted", new { @checked = "checked", @class = "lead-status" })%&gt; Converted &lt;/div&gt; &lt;div class="summary"&gt; &lt;div id="total-leads-count" style="float:right;"&gt;&lt;b&gt;&lt;%= Model.TotalLeadsCount.ToString() %&gt;&lt;/b&gt;&lt;/div&gt; &lt;b&gt;Total Leads&lt;/b&gt; &lt;/div&gt; </code></pre> <p></p> <p>In the <code>FilteredLeadList</code>controller, I fetch a list of leads from the database based on the selected filters and return the HTML which is then set in the appropriate div. </p> <p>I hope this gives an idea of how to use AJAX/jQuery to fetch a partial list of items. I am working on enhancing the application to use JSON instead of HTML which should improve the performance. </p> <p>Hope this helps, indy</p> http://stackoverflow.com/questions/1728433/route-doesnt-register/1728713#1728713 0 Answer by indyfromoz for Route doesnt register indyfromoz 2009-11-13T11:37:45Z 2009-11-13T11:37:45Z <ol> <li><p>Remove the default value for "RouteID"</p> <p>routes.MapRoute( "Views", "View/{RouteID}", new { controller = "BookingViewsPublicController", action = "Index" } );</p></li> <li><p>Try using <a href="http://haacked.com/archive/0001/01/01/url-routing-debugger.aspx" rel="nofollow">Phil Haack's excellent routing debugger</a>. </p></li> </ol> <p>HTH,<br/> indyfromoz</p> http://stackoverflow.com/questions/1714028/mvc-which-submit-button-has-been-pressed/1714046#1714046 1 Answer by indyfromoz for MVC which submit button has been pressed indyfromoz 2009-11-11T09:25:03Z 2009-11-11T09:25:03Z <p>I suggest looking at <a href="http://stackoverflow.com/questions/442704/how-do-you-handle-multiple-submit-buttons-in-asp-net-mvc-framework">this post</a>. I like the second solution since you are programming the logic in the controller and not in the view.</p> <p>HTH, indyfromoz</p> http://stackoverflow.com/questions/1713175/can-anyone-advice-on-a-simple-way-to-create-sql-tables-on-the-fly-using-a-csv-fi/1713209#1713209 0 Answer by indyfromoz for Can anyone advice on a simple way to create SQL tables on the fly, using a CSV file upload in a .NET Web App? indyfromoz 2009-11-11T05:23:15Z 2009-11-11T05:23:15Z <p>I recently worked on something quite close to your requirements. In my case, the data from each row in a CSV file that is uploaded in to the server is stored as a 'blob'. I have used the <a href="http://www.codeproject.com/KB/database/CsvReader.aspx" rel="nofollow">Lumen Works CSV reader</a> to parse the uploaded CSV file. It has the ability to read the column headers, which you can strip of whitespaces and may to SQL database table columns. </p> <p>Hope this helps indyfromoz</p> http://stackoverflow.com/questions/1709827/choosing-an-orm-for-a-simple-saas-startup-asp-net-mvc/1710946#1710946 1 Answer by indyfromoz for Choosing an ORM for a "simple" SaaS startup (ASP.NET MVC) indyfromoz 2009-11-10T20:26:04Z 2009-11-10T20:26:04Z <p>Inspired by the engine that runs stackoverflow.com, I have been working on developing a full-blown CRM and business-in-a-box solution over the last few months. I had lot of reservations about using LINQ to SQL as the ORM (discussion on stackoverflow.com and elsewhere pointed out the fact that the Entity framework was the 'in thing'),however, I found LINQ to SQL to be a breeze to work with, even with its known limitations. With LINQ-to-SQL, I could build a fully-functional prototype CRM within weeks. Currently, the CRM is in late stages of beta with few customers and some of them have quite a high volume of usage (1000s of lead and few dozen users). I haven't seen any noticeable, show-stopping issues with the ORM/database so far. </p> <p>I have written quite a few SQL stored procedures (and used them with LINQ to SQL) where very complex joins were required. Since I come from a SQL/Microsoft Enterprise Library background, I find it easier to write complex stored procedures in SQL and keeping the basic CRUD operations within the LINQ to SQL layer</p> <p>indyfromoz</p> http://stackoverflow.com/questions/1659432/asp-net-mvc-liveid-should-i-use-the-membership-provider-account-controlle/1660415#1660415 0 Answer by indyfromoz for ASP.NET MVC + LiveID --> should I use the Membership provider & Account controller? indyfromoz 2009-11-02T10:13:38Z 2009-11-02T10:13:38Z <p><a href="http://stackoverflow.com/questions/373018/windows-live-id-in-asp-net-mvc">Answered here before</a>, Peter Bromberg has a <a href="http://www.eggheadcafe.com/tutorials/aspnet/48857836-0c72-4efb-9d29-fbcb8e17ef3a/integrate-windows-live-id.aspx" rel="nofollow">nice sample</a>. You would still use the Membership provider albeit as a custom provider.</p> <p>HTH, Indyfromoz</p> http://stackoverflow.com/questions/168008/good-simple-mvc-and-jquery-asp-net-application/1658368#1658368 1 Answer by indyfromoz for Good simple MVC and JQuery ASP.NET application? indyfromoz 2009-11-01T21:20:48Z 2009-11-01T21:20:48Z <p>Some applications developed with ASP.NET MVC &amp; jQuery - </p> <ul> <li><a href="http://mvccms.codeplex.com/" rel="nofollow">MVCCMS</a> (Simple CMS Implementation)</li> <li><a href="http://juqerymvc.codeplex.com/" rel="nofollow">jQuery &amp; ASP.NET MVC Integration Sample</a> (Showcase of integration of jQuery UI plugions)</li> <li><a href="http://www.codeplex.com/oxite" rel="nofollow">Oxite</a> </li> </ul> <p>Kazi Manzur Rashid has a 3-part series on building Shrinkr, a URL shortening service with ASP.NET MVC, jQuery &amp; Entity Framework -</p> <ul> <li><a href="http://weblogs.asp.net/rashid/archive/2009/09/10/shrinkr-url-shrinking-service-developed-with-entity-framework-4-0-unity-asp-net-mvc-and-jquery-part-1.aspx" rel="nofollow">Part 1</a></li> <li><a href="http://weblogs.asp.net/rashid/archive/2009/09/13/shrinkr-url-shrinking-service-developed-with-entity-framework-4-0-unity-asp-net-mvc-and-jquery-part-2.aspx" rel="nofollow">Part 2</a></li> <li><a href="http://weblogs.asp.net/rashid/archive/2009/09/15/shrinkr-url-shrinking-service-developed-with-entity-framework-4-0-unity-asp-net-mvc-and-jquery-part-3.aspx" rel="nofollow">Part 3</a> </li> </ul> <p>HTH, Indyfromoz</p> http://stackoverflow.com/questions/1656340/where-can-i-find-a-simple-asp-net-mvc-c-tutorials/1656366#1656366 4 Answer by indyfromoz for Where can I find a simple ASP.NET MVC (C#) tutorial(s)? indyfromoz 2009-11-01T04:15:21Z 2009-11-01T04:15:21Z <p>I have been working with ASP.NET MVC since it Beta days and have always found lack of proper technical details in blogs and forum posts to be quite inhibiting in the climbing up the learning curve. Then, ScottGu, ScottHa and others posted the <a href="http://www.nerddinner.com/" rel="nofollow">Nerddiner sample application</a> and the first chapter of the excellent <a href="http://rads.stackoverflow.com/amzn/click/0470384611" rel="nofollow">Professional ASP.NET MVC 1.0</a> book. </p> <p>It is a good idea to look at sample code/applications and build our own blog/forum application using ASP.NET MVC while working your way through. Steven Sanderson's <a href="http://rads.stackoverflow.com/amzn/click/1430210079" rel="nofollow">book</a> and his <a href="http://blog.codeville.net/" rel="nofollow">blog</a> are terrific resources too.</p> <p>HTH, indyfromoz</p> http://stackoverflow.com/questions/323371/asp-net-webmail-engine 0 ASP.NET Webmail Engine indyfromoz 2008-11-27T10:04:46Z 2009-08-05T11:37:18Z <p>A friend of mine asked me today if there is any open-source or commercially available Webmail/Email "engine". When I asked her what she meant by engine, I got a list of features her boss asked for - </p> <ul> <li>Web interface to login &amp; access e-mails</li> <li>Ability to send/receive/forward e-mails using the web interface </li> <li>Ability to compose and save drafts using the web interface</li> <li>Ability to delete emails, empty deleted items folder using the web interface</li> <li>Ability to search e-mails (by Sender's e-mail, Subject, Content)</li> <li>Maintain and manage a contacts list (of e-mail addresses) using the web interface</li> <li>Allow users to synchronise their e-mails with iPhone/Windows Mobile smartphones</li> </ul> <p>I found <a href="http://anmar.eu.org/projects/sharpwebmail/" rel="nofollow">SharpWebMail</a> to have some of the features, although it has not had updates in recent times, last update was in April 2006. I am inclined towards using ASP.NET, the proposal is to primarily use the e-mail in conjunction with an intranet (developed in ASP.NET). If you have any suggestions, please let me know.</p> <p>indy</p> http://stackoverflow.com/questions/973506/asp-net-mvc-linq-to-sql-or-entities/973511#973511 0 Answer by indyfromoz for ASP.NET MVC + LINQ to SQL or Entities? indyfromoz 2009-06-10T03:08:21Z 2009-06-10T03:08:21Z <p>The nerddinner sample chapter written by ScottGu uses Linq-To-SQL, he does not endorse LINQ-to-SQL but does not promote LINQ-To-Entities either. With ViewModel (Stephen Walther has a nice post on this) &amp; the repository pattern, LINQ-To-SQL is perfect for developing ASP.NET MVC applications</p> http://stackoverflow.com/questions/249332/remote-desktop-client-to-connect-to-linux-from-vista-x64 0 Remote desktop client to connect to Linux from Vista x64 indyfromoz 2008-10-30T05:11:13Z 2009-02-19T10:17:19Z <p>I am looking at connecting to a openSuse 11.1 Beta 3 virtual machine from my Vista 64-bit development workstation. I found UltraVNC Viewer to be the only option for this purpose. Is there any other clients that I can use to connect from Vista to openSuse/other Linux installs? </p> <p>Note: Bandwidth is not a worry, the connection will be using a Gigabit network.</p> http://stackoverflow.com/questions/391139/asp-net-advertisement-website 3 ASP.NET advertisement website indyfromoz 2008-12-24T09:57:56Z 2009-01-10T09:25:52Z <p>I am currently working on a website that is an advertisement portal for businesses. Advertisers can create an account, select various options for listing (State, caregory, etc) and upload a graphic is measured in a multiples of an "unit". An "unit" is an image or a flash file that is 180px wide and 120 high. An advertiser can choose multiple units that are horizontal or vertical, i.e, 2 single units aligned horizontally or 2 single units aligned vertically. </p> <p>I have gone to the point where the the website is working fine. I am stuck at a point I am going to lay out the "units" and display them properly, without any empty space between them. As an example, if we had 4 advertisements, a horizontal 2 unit ad, a vertical 2 unit and 2 single unit ad, like so - </p> <pre><code> | | 2 unit ad | 2 ------------------| unit | | ad 1 unit | 1 unit | | | | | </code></pre> <p>I am currently storing the advertisements units in a database with attributes that are used in the web form to build a table (i.e., colspan, rowspan, etc). I am not sure if this is the right approach, I fear it is not. I shall be very grateful if I got some advice.</p> <p>Thanks, Indy</p> http://stackoverflow.com/questions/418475/silverlight-control-wont-go-higher-than-600-bug/418890#418890 1 Answer by indyfromoz for Silverlight Control won't go higher than 600, bug? indyfromoz 2009-01-07T01:43:01Z 2009-01-07T01:43:01Z <p>I just tried your XAML and ASPX, it works for me; I can see all the three rows. While creating a new Silverlight project, VS adds this ASPX - </p> <pre><code>&lt;%@ Page Language="C#" AutoEventWireup="true" %&gt; &lt;%@ Register Assembly="System.Web.Silverlight" Namespace="System.Web.UI.SilverlightControls" TagPrefix="asp" %&gt; &lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&gt; &lt;html xmlns="http://www.w3.org/1999/xhtml" style="height:100%;"&gt; &lt;head runat="server"&gt; &lt;title&gt;SilverlightApplication1&lt;/title&gt; &lt;/head&gt; &lt;body style="height:100%;margin:0;"&gt; &lt;form id="form1" runat="server" style="height:100%;"&gt; &lt;asp:ScriptManager ID="ScriptManager1" runat="server"&gt;&lt;/asp:ScriptManager&gt; &lt;div style="height:100%;"&gt; &lt;asp:Silverlight ID="Xaml1" runat="server" Source="~/ClientBin/SilverlightApplication1.xap" MinimumVersion="2.0.31005.0" Width="100%" Height="100%" /&gt; &lt;/div&gt; &lt;/form&gt; &lt;/body&gt; &lt;/html&gt; </code></pre> <p>Can you try the above ASPX?</p> <p>HTH, indy</p> http://stackoverflow.com/questions/401014/how-do-you-learn-wpf-and-silverlight/412742#412742 0 Answer by indyfromoz for How do you learn WPF and Silverlight? indyfromoz 2009-01-05T10:23:41Z 2009-01-05T10:23:41Z <p>I have worked my way through "Pro Silverlight 2" and I found every chapter very detailed and thorough. I also referred to SAMS "Silverlight 2 Unleashed", that book is a good complement to "Pro Silverlight 2". Also, have a look at "<a href="http://silverlight.net/blogs/msnow/archive/2009/01/02/silverlight-tips-of-the-day-summary-outline.aspx" rel="nofollow">Silverlight Tip Of The Day</a>" and Jesse Liberty's blog for some handy tips.</p> <p>HTH, Indy</p> http://stackoverflow.com/questions/405394/using-routing-without-mvc-authentication-form/405407#405407 0 Answer by indyfromoz for Using Routing without MVC: authentication form indyfromoz 2009-01-01T20:07:20Z 2009-01-01T20:07:20Z <p>The first result I got from a Google search is Frederiks excellent post on <a href="http://weblogs.asp.net/fredriknormen/archive/2008/02/07/asp-net-mvc-framework-using-forms-authentication.aspx" rel="nofollow">forms authentication in ASP.NET MVC</a>. Note that the post was relevant for an early version of ASP.NET MVC, you will have to write and test the code.</p> <p>HTH, Indy</p> http://stackoverflow.com/questions/394241/add-checkboxes-to-vb-net-wpf-3-5-treeview/394252#394252 1 Answer by indyfromoz for Add Checkboxes to VB.NET WPF 3.5 TreeView indyfromoz 2008-12-26T20:53:57Z 2008-12-26T20:53:57Z <p>Josh Smith has a <a href="http://joshsmithonwpf.wordpress.com/2008/08/01/article-about-checkboxes-in-a-wpf-treeview/" rel="nofollow">post in his blog</a>, with a link to a <a href="http://www.codeproject.com/KB/WPF/TreeViewWithCheckBoxes.aspx" rel="nofollow">Codeproject article</a> that could help you. The article may not be enough to get you what you want to achieve, but it is a good article to start investigations with :)</p> <p>HTH, indy</p> http://stackoverflow.com/questions/322921/check-if-page-is-in-partial-rendering-mode-asp-net-2-0-ajax-net/323008#323008 3 Answer by indyfromoz for Check if page is in partial rendering mode ASP.NET 2.0 + AJAX.NET indyfromoz 2008-11-27T05:38:49Z 2008-11-27T05:38:49Z <p>You can use the <a href="http:///asp.net/AJAX/Documentation/Live/mref/P_System_Web_UI_ScriptManager_IsInAsyncPostBack.aspx" rel="nofollow">IsInAsyncPostBack</a> property of ScriptManager to check if the page is loading through a partial postback.</p> http://stackoverflow.com/questions/249312/php-operator/249321#249321 1 Answer by indyfromoz for php operator <> indyfromoz 2008-10-30T05:03:15Z 2008-10-30T05:03:15Z <p><code>$_SERVER['SERVER_PORT']</code> gets the port used by the web server to serve HTTP requests. <code>$_SERVER['SERVER_PORT'] &lt;&gt; 443</code> checks if the port is not equal to 443 (the default HTTPS port) and if not, invokes <code>doSomething()</code> </p> http://stackoverflow.com/questions/1728433/route-doesnt-register/1729182#1729182 Comment by indyfromoz on Route doesnt register indyfromoz 2009-11-13T18:32:49Z 2009-11-13T18:32:49Z Great to hear! Sometimes we do not need to look for complex solutions :) http://stackoverflow.com/questions/1709827/choosing-an-orm-for-a-simple-saas-startup-asp-net-mvc/1710946#1710946 Comment by indyfromoz on Choosing an ORM for a "simple" SaaS startup (ASP.NET MVC) indyfromoz 2009-11-11T04:15:53Z 2009-11-11T04:15:53Z I must add this - LINQPad is perhaps the reason why felt confident with LINQ to SQL! Although it was not very hard to move away from the query designer in SQLMS, but, with LINQPad, it was easy to get up to speed. I would also invest in the autocomplete plugin, it saves a lot of time. Cheers, indyfromoz http://stackoverflow.com/questions/1645568/asp-net-mvc-1-0-web-hosting/1664584#1664584 Comment by indyfromoz on ASP.Net MVC 1.0 Web Hosting indyfromoz 2009-11-03T00:42:05Z 2009-11-03T00:42:05Z are you insane?? http://stackoverflow.com/questions/973506/asp-net-mvc-linq-to-sql-or-entities/973511#973511 Comment by indyfromoz on ASP.NET MVC + LINQ to SQL or Entities? indyfromoz 2009-06-10T04:20:56Z 2009-06-10T04:20:56Z Two links - <a href="http://stephenwalther.com/blog/archive/2009/02/27/chapter-5-understanding-models.aspx" rel="nofollow">stephenwalther.com/blog/archive/&hellip;</a> <a href="http://stephenwalther.com/blog/archive/2009/02/27/chapter-5-understanding-models.aspx" rel="nofollow">stephenwalther.com/blog/archive/&hellip;</a> http://stackoverflow.com/questions/405394/using-routing-without-mvc-authentication-form/405407#405407 Comment by indyfromoz on Using Routing without MVC: authentication form indyfromoz 2009-01-02T05:40:02Z 2009-01-02T05:40:02Z Sorry, I didn't really help! Maybe if you can give some more details as to what you are trying to achieve will help? Like - + Login.aspx - Login the user with membership API, redirect to secure area. + Secure area (Accessible by logged in users) Something like this? http://stackoverflow.com/questions/323371/asp-net-webmail-engine/323383#323383 Comment by indyfromoz on ASP.NET Webmail Engine indyfromoz 2008-11-27T10:13:57Z 2008-11-27T10:13:57Z Thanks for the links. The management wishes to have their employees using their &quot;branded&quot; e-mail! So, using any free services are ruled out. http://stackoverflow.com/questions/249332/remote-desktop-client-to-connect-to-linux-from-vista-x64/249343#249343 Comment by indyfromoz on Remote desktop client to connect to Linux from Vista x64 indyfromoz 2008-11-27T09:28:19Z 2008-11-27T09:28:19Z Adam, I was away on holidays, sorry about the delay in marking your reply as the best! Yes, X-Ming is the solution I really liked and using it now. By the way, your blog is very informative and useful. Cheers, indy