User indyfromoz - Stack Overflowmost recent 30 from stackoverflow.com2009-12-04T08:23:20Zhttp://stackoverflow.com/feeds/user/32649http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1748247/asp-net-based-open-source-support-ticket-system/1748267#17482670Answer by indyfromoz for ASP.net based open source support ticket systemindyfromoz2009-11-17T11:39:01Z2009-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#17393620Answer by indyfromoz for ASP.NET MVC CheckBoxindyfromoz2009-11-15T23:56:40Z2009-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> <div class="filters-body">
<div class="checkbox-holder">
<div id="new-leads-count" style="float:right;"><%= Model.NewLeadsCount.ToString() %></div>
<%= Html.CheckBox("new", new { @checked = "checked", @class = "lead-status" }) %>
New
</div>
<div class="checkbox-holder">
<div id="contacted-leads-count" style="float:right;"><%= Model.ContactedLeadsCount.ToString() %></div>
<%= Html.CheckBox("contacted", new { @checked = "checked", @class = "lead-status" })%>
Contacted
</div>
<div class="checkbox-holder">
<div id="following-up-leads-count" style="float:right;"><%= Model.FollowingUpLeadsCount.ToString() %></div>
<%= Html.CheckBox("following", new { @checked = "checked", @class = "lead-status" })%>
Following up
</div>
<div class="checkbox-holder">
<div id="rejected-leads-count" style="float:right;"><%= Model.RejectedLeadsCount.ToString() %></div>
<%= Html.CheckBox("rejected", new { @checked = "checked", @class = "lead-status" })%>
Rejected
</div>
<div class="checkbox-holder">
<div id="converted-leads-count" style="float:right;"><%= Model.ConvertedLeadsCount.ToString() %></div>
<%= Html.CheckBox("converted", new { @checked = "checked", @class = "lead-status" })%>
Converted
</div>
<div class="summary">
<div id="total-leads-count" style="float:right;"><b><%= Model.TotalLeadsCount.ToString() %></b></div>
<b>Total Leads</b>
</div>
</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#17287130Answer by indyfromoz for Route doesnt registerindyfromoz2009-11-13T11:37:45Z2009-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#17140461Answer by indyfromoz for MVC which submit button has been pressedindyfromoz2009-11-11T09:25:03Z2009-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#17132090Answer 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?indyfromoz2009-11-11T05:23:15Z2009-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#17109461Answer by indyfromoz for Choosing an ORM for a "simple" SaaS startup (ASP.NET MVC)indyfromoz2009-11-10T20:26:04Z2009-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#16604150Answer by indyfromoz for ASP.NET MVC + LiveID --> should I use the Membership provider & Account controller?indyfromoz2009-11-02T10:13:38Z2009-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#16583681Answer by indyfromoz for Good simple MVC and JQuery ASP.NET application?indyfromoz2009-11-01T21:20:48Z2009-11-01T21:20:48Z<p>Some applications developed with ASP.NET MVC & 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 & 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 & 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#16563664Answer by indyfromoz for Where can I find a simple ASP.NET MVC (C#) tutorial(s)?indyfromoz2009-11-01T04:15:21Z2009-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-engine0ASP.NET Webmail Engineindyfromoz2008-11-27T10:04:46Z2009-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 & 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#9735110Answer by indyfromoz for ASP.NET MVC + LINQ to SQL or Entities?indyfromoz2009-06-10T03:08:21Z2009-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) & 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-x640Remote desktop client to connect to Linux from Vista x64indyfromoz2008-10-30T05:11:13Z2009-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-website3ASP.NET advertisement websiteindyfromoz2008-12-24T09:57:56Z2009-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#4188901Answer by indyfromoz for Silverlight Control won't go higher than 600, bug?indyfromoz2009-01-07T01:43:01Z2009-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><%@ Page Language="C#" AutoEventWireup="true" %>
<%@ Register Assembly="System.Web.Silverlight" Namespace="System.Web.UI.SilverlightControls"
TagPrefix="asp" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" style="height:100%;">
<head runat="server">
<title>SilverlightApplication1</title>
</head>
<body style="height:100%;margin:0;">
<form id="form1" runat="server" style="height:100%;">
<asp:ScriptManager ID="ScriptManager1" runat="server"></asp:ScriptManager>
<div style="height:100%;">
<asp:Silverlight ID="Xaml1" runat="server" Source="~/ClientBin/SilverlightApplication1.xap" MinimumVersion="2.0.31005.0" Width="100%" Height="100%" />
</div>
</form>
</body>
</html>
</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#4127420Answer by indyfromoz for How do you learn WPF and Silverlight?indyfromoz2009-01-05T10:23:41Z2009-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#4054070Answer by indyfromoz for Using Routing without MVC: authentication formindyfromoz2009-01-01T20:07:20Z2009-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#3942521Answer by indyfromoz for Add Checkboxes to VB.NET WPF 3.5 TreeViewindyfromoz2008-12-26T20:53:57Z2008-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#3230083Answer by indyfromoz for Check if page is in partial rendering mode ASP.NET 2.0 + AJAX.NETindyfromoz2008-11-27T05:38:49Z2008-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#2493211Answer by indyfromoz for php operator <>indyfromoz2008-10-30T05:03:15Z2008-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'] <> 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#1729182Comment by indyfromoz on Route doesnt registerindyfromoz2009-11-13T18:32:49Z2009-11-13T18:32:49ZGreat 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#1710946Comment by indyfromoz on Choosing an ORM for a "simple" SaaS startup (ASP.NET MVC)indyfromoz2009-11-11T04:15:53Z2009-11-11T04:15:53ZI 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,
indyfromozhttp://stackoverflow.com/questions/1645568/asp-net-mvc-1-0-web-hosting/1664584#1664584Comment by indyfromoz on ASP.Net MVC 1.0 Web Hostingindyfromoz2009-11-03T00:42:05Z2009-11-03T00:42:05Zare you insane??http://stackoverflow.com/questions/973506/asp-net-mvc-linq-to-sql-or-entities/973511#973511Comment by indyfromoz on ASP.NET MVC + LINQ to SQL or Entities?indyfromoz2009-06-10T04:20:56Z2009-06-10T04:20:56ZTwo links -
<a href="http://stephenwalther.com/blog/archive/2009/02/27/chapter-5-understanding-models.aspx" rel="nofollow">stephenwalther.com/blog/archive/…</a>
<a href="http://stephenwalther.com/blog/archive/2009/02/27/chapter-5-understanding-models.aspx" rel="nofollow">stephenwalther.com/blog/archive/…</a>
http://stackoverflow.com/questions/405394/using-routing-without-mvc-authentication-form/405407#405407Comment by indyfromoz on Using Routing without MVC: authentication formindyfromoz2009-01-02T05:40:02Z2009-01-02T05:40:02ZSorry, 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#323383Comment by indyfromoz on ASP.NET Webmail Engineindyfromoz2008-11-27T10:13:57Z2008-11-27T10:13:57ZThanks for the links. The management wishes to have their employees using their "branded" 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#249343Comment by indyfromoz on Remote desktop client to connect to Linux from Vista x64indyfromoz2008-11-27T09:28:19Z2008-11-27T09:28:19ZAdam,
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