User Chris M - Stack Overflowmost recent 30 from stackoverflow.com2009-12-10T14:32:13Zhttp://stackoverflow.com/feeds/user/52912http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1831681/how-do-i-create-a-selective-windows-authorise-in-asp-net-mvc0How do I create a selective Windows Authorise in ASP.Net MVCChris M2009-12-02T09:17:19Z2009-12-04T18:51:53Z
<p>I want to use Windows authentication within an MVC app, but only for certain areas of the site (i.e. admin area).</p>
<p>Currently I've set in the web.config; but unlike the Forms one this seems to force authentication on the whole application even though the controlers don't contain the [Authorize] filter.</p>
<p>Is this feature built in or will I have to resort to enrolling people into a forms based protection?</p>
<p><strong>Solution</strong></p>
<p>Found a good answer (as I couldnt get the AD user/pass) in using IIS auth <a href="http://support.microsoft.com/kb/316748/en-us" rel="nofollow">http://support.microsoft.com/kb/316748/en-us</a></p>
http://stackoverflow.com/questions/1829142/is-it-possible-to-make-sql-server-convert-entries-columns-in-a-set-of-results1Is it possible to make SQL Server convert entries columns in a set of resultsChris M2009-12-01T21:45:01Z2009-12-01T22:01:35Z
<p>I have the following setup...</p>
<pre><code>Table: properties
p_id [pk]
p_propname
o_id_owners [fk]
Table: owners
o_id [pk]
o_extcode
o_fname
o_lname
Table: selectedfeatures
s_id [pk]
d_id_features [fk]
p_id_properties [fk]
Table: features
d_id [pk]
d_code
d_featurename
g_id_featuregroup [fk]
Table: featuregroup
g_id [pk]
g_featuregroupname
</code></pre>
<p><hr></p>
<p>Ideally I want it to output </p>
<pre><code><header> Owner name | Owner Extcode | Prop name | [GROUP NAMES (featuregroup)]
<row> Owner name | Owner Extcode | Prop name | ^feature code | ^feature code |
</code></pre>
<p>Its the group names bit I'm struggling with; The tables are linked and I can get the records to display thus:</p>
<pre><code><header> Owner name | Owner Extcode | Prop name | Feature Name
<row> Owner name | Owner Extcode | Prop name | Feature Name
<row> Owner name | Owner Extcode | Prop name | Feature Name
</code></pre>
http://stackoverflow.com/questions/1803372/using-isapi-rewrite-3-asp-net-mvc0Using ISAPI Rewrite 3 & ASP.Net MVC?Chris M2009-11-26T12:20:21Z2009-11-27T14:26:13Z
<p>I'm using ISAPI Rewrite3 on IIS6 for two Virtual Directories at the moment that contain Wordpress.</p>
<p>I need to setup some rules at the root of the site to redirect old urls to new urls:</p>
<pre><code>i.e.
http://www.example.com/somefolder/* > http://www.example.com/newfolder/
&
http://www.example.com/somefolder/file_1.htm > http://www.example.com/newmvcpath/
</code></pre>
<p>I need to do this without breaking MVC (as its set to wildcard) and without affecting the two virtual directories.</p>
<p>Also how would I set a wildcard up for /somefolder/file_**1**.htm the numeric bit.</p>
<p>Any help greatly appreciated</p>
<p>(heliontech iis rewrite)</p>
http://stackoverflow.com/questions/1803372/using-isapi-rewrite-3-asp-net-mvc/1809081#18090810Answer by Chris M for Using ISAPI Rewrite 3 & ASP.Net MVC?Chris M2009-11-27T14:26:13Z2009-11-27T14:26:13Z<p>.htaccess file</p>
<pre><code># Helicon ISAPI_Rewrite configuration file
# Version 3.1.0.64
RewriteEngine on
#301 Redirections
#FRANCE (all .html files in a folder)
RewriteRule places-in-france/(.*)\.html places/france [NC,R=301]
#Numeric
RewriteRule companies-france/Companies-in-Pyrenees_(.*)\.htm companies/france [NC,R=301]
#rest of stuff
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
# Add extensions to this rule to avoid them being processed by ASP.NET
RewriteRule (.*)\.(css|gif|png|jpeg|jpg|js|zip) $1.$2 [I,L]
# Prefixes URLs with "rewritten.aspx/", so that ASP.NET handles them
RewriteRule ^(.*) /rewritten.aspx/$1 [I]
</code></pre>
<p>Added code to Global.asax.cs</p>
<pre><code>protected void Application_BeginRequest(Object sender, EventArgs e)
{
HttpApplication app = sender as HttpApplication;
if (app != null)
if (app.Request.AppRelativeCurrentExecutionFilePath == "~/rewritten.aspx")
app.Context.RewritePath(
app.Request.Url.PathAndQuery.Replace("/rewritten.aspx", "")
);
}
</code></pre>
<p>Using option 4 from this blog <a href="http://blog.codeville.net/2008/07/04/options-for-deploying-aspnet-mvc-to-iis-6/" rel="nofollow">http://blog.codeville.net/2008/07/04/options-for-deploying-aspnet-mvc-to-iis-6/</a> but slightly amended.</p>
<p>This also means I've turned wildcard mapping off.</p>
http://stackoverflow.com/questions/561581/including-class-libraries-within-a-page-behind-c-asp-net0Including class libraries within a page behind, C# ASP.NetChris M2009-02-18T15:41:10Z2009-11-09T12:09:20Z
<p>Working on our restricted system means I cant drop class librariess into the app_bin/bin/App_Code basically any normal folder, so I'm currently linking to my class library as follows...</p>
<pre><code><%@ Page Language="C#" AutoEventWireup="true" CodeFile="~/cs/codebehind.cs" Inherits="codebehind" %>
<%@ Assembly Src="~/cs/mycodelibrary.cs" %>
</code></pre>
<p>The problem I'm trying to solve is how would I reference the class library as a file in the codebehind so I don't need to have another thing on the page, and VS stops telling me the things in the assembly don't exist.</p>
<p>i.e </p>
<pre><code>using "~/cs/regionalPages.cs"
</code></pre>
<p><hr /></p>
<p>Quick addition, adding the mycodelibrary.cs as above does work. I'm just trying to find a better way.
<br><br>
And i should reaffirm that <strong>I have no access to normal .net folders</strong>, if I did I wouldn't be asking this seemingly dumb question.</p>
http://stackoverflow.com/questions/1493450/adobe-dreamweaver-extensions0Adobe Dreamweaver ExtensionsChris M2009-09-29T15:55:28Z2009-10-13T11:05:00Z
<p>Does anyone know if its possible to turn off dreamweavers "custom icons" that it shows in the file browser so you can see the standard system-cache ones instead?</p>
<p>Something I'm trying to do via an extension but I cant find where its coming from in the large pile of XML files that is dreamweaver.</p>
<p>As the guy below pointed out this isn't available in the API; does anyone know a way of disabling the icons elsewhere (i.e which of the hundreds of files the icons are stored in) so I can in theory patch the file... can see that upsetting adobe but who cares.</p>
<p>Literally Looking for an if so, how.</p>
<p>Ta</p>
http://stackoverflow.com/questions/1493450/adobe-dreamweaver-extensions/1559535#15595350Answer by Chris M for Adobe Dreamweaver ExtensionsChris M2009-10-13T11:02:45Z2009-10-13T11:02:45Z<p>Its actually impossible via the extension interface; but is possible by editing the Dreamweaver library files. </p>
<p>Rubbish solution though and would never make it through adobe-exchange</p>
http://stackoverflow.com/questions/1477661/selectlist-dropdowns-in-c-selected-value0SelectList Dropdowns in C# (Selected value)Chris M2009-09-25T14:36:14Z2009-09-25T14:39:19Z
<p>Ok I have the following Code</p>
<pre><code> #region getDurationListDD
private List<KeyValuePair<int, int>> getDurationListDD
{
get
{
List<KeyValuePair<int, int>> dDur = new List<KeyValuePair<int, int>>();
dDur.Add(new KeyValuePair<int, int>(2, 2));
dDur.Add(new KeyValuePair<int, int>(3, 3));
dDur.Add(new KeyValuePair<int, int>(4, 4));
dDur.Add(new KeyValuePair<int, int>(7, 7));
dDur.Add(new KeyValuePair<int, int>(14, 14));
dDur.Add(new KeyValuePair<int, int>(21, 21));
return dDur;
}
}
#endregion
</code></pre>
<p>Then the following in the main ActionResult...</p>
<pre><code>ViewData["changeDuration"] = new SelectList(getDurationListDD, "Key", "Value", Duration);
</code></pre>
<p>this on the view</p>
<pre><code>Html.DropDownList("changeduration", (SelectList)ViewData["changeDuration"])
</code></pre>
<p>Now if the Duration was set (i.e. int Duration = 7;) then I'd expect that 7 would be selected, but for some reason it isn't. Any hints before I give up trying and do something more productive?</p>
<p>Ta</p>
http://stackoverflow.com/questions/1477661/selectlist-dropdowns-in-c-selected-value/1477688#14776881Answer by Chris M for SelectList Dropdowns in C# (Selected value)Chris M2009-09-25T14:39:19Z2009-09-25T14:39:19Z<p>Just fixed it and I cant believe how retarded this is...</p>
<p>Changed
Html.DropDownList("<strong>changeduration</strong>", (SelectList)ViewData["changeDuration"])</p>
<p>to</p>
<p>Html.DropDownList("<strong>cduration</strong>", (SelectList)ViewData["changeDuration"])</p>
<p>Problem Solved... that has to be a bug really doesn't it?</p>
http://stackoverflow.com/questions/1465029/if-statement-hell-how-to-check-if-a-date-passed-matches-a-date-within-3-days-but0If Statement Hell, How to check if a date passed matches a date within 3 days but only if the date doesnt match the other conditions.Chris M2009-09-23T09:51:56Z2009-09-23T16:13:26Z
<p>As the garbled question says I'm basically looking for a tidier way to do the following snip.
(its used in a calendar for availability matching)</p>
<pre><code> //TODO: Optimize elseif Statement
if (date.Year == now.Year && date.Month == now.Month && day == now.Day)
{
daysXhtml.Append("<td class=\"today\">" + day.ToString() + "</td>");
}
else if (((day == SelectedDate.Day)
|| (day != SelectedDate.Day && ((day == SelectedDate.AddDays(1).Day || (SelectedDate.Day > 3 && day == SelectedDate.AddDays(-1).Day)) && (day != SelectedDate.AddDays(2).Day || (SelectedDate.Day > 3 && day != SelectedDate.AddDays(-2).Day) || day != SelectedDate.AddDays(3).Day || (SelectedDate.Day > 3 && day != SelectedDate.AddDays(-3).Day))))
|| (day != SelectedDate.Day && ((day == SelectedDate.AddDays(2).Day || (SelectedDate.Day > 3 && day == SelectedDate.AddDays(-2).Day)) && (day != SelectedDate.AddDays(3).Day || (SelectedDate.Day > 3 && day != SelectedDate.AddDays(-3).Day) || day != SelectedDate.AddDays(1).Day || (SelectedDate.Day > 3 && day != SelectedDate.AddDays(-1).Day))))
|| (day != SelectedDate.Day && ((day == SelectedDate.AddDays(3).Day || (SelectedDate.Day > 3 && day == SelectedDate.AddDays(-3).Day)) && (day != SelectedDate.AddDays(2).Day || (SelectedDate.Day > 3 && day != SelectedDate.AddDays(-2).Day) || day != SelectedDate.AddDays(1).Day || (SelectedDate.Day > 3 && day != SelectedDate.AddDays(-1).Day)))))
&& ((float)endprice > 0) && (SelectedDate.Month == date.Month))
{}
</code></pre>
<p>Your ears and eyes can bleed now ;o)</p>
<p>Just to clarify...
SelectedDate is the date passed to the calendar. And Day is Day in the month. (while loop day <= days)
var date = new DateTime(SelectedDate.Year, SelectedDate.Month, 1);</p>
<p>Basically I'm passing a Date (say 27/11/2010 which is SelectedDay) which I need to test it. Is the SelectedDay the Current Calendar day being added to the string. If its not then if i add a day to the Selected Day does it match, then if not, two days, and again, three days. </p>
<p>But because its a date I have to check if its over day 3 before allowing it to check if it can match the day minus 3 (or the end of the last month will be used to mark the end of this month)</p>
<h2>Answer</h2>
<p>I used the following Syntax in the end.</p>
<pre><code> DateTime currentCalDate = DateTime.Parse(String.Format("{0}/{1}/{2}", day, SelectedDate.Month, SelectedDate.Year));
int daysToAdd = (currentCalDate.Day + 3 < days) ? 3 : 0;
int daysToDeduct = (currentCalDate.Day - 3 > 0) ? -3 : 0;
</code></pre>
<p>And</p>
<pre><code>else if ((SelectedDate >= currentCalDate.AddDays(daysToDeduct) && SelectedDate <= currentCalDate.AddDays(daysToAdd)) && ((float)endprice > 0))
</code></pre>
<p>:o)</p>
http://stackoverflow.com/questions/1388307/should-i-set-rewrite-rules-on-an-asp-net-mvc-site-with-heliontech-iisrewriter-glo0Should I set rewrite rules on an ASP.Net MVC site with heliontech IISRewriter Globally or by folder with wordpress?Chris M2009-09-07T08:53:04Z2009-09-08T13:14:24Z
<p>I'm using IIS6 (unfortunatly) and have built an ASP.Net MVC app; IIS is set up for wildcards to make the routing work but I have two virtual directories that contain wordpress installations which works fine.</p>
<p>I have two .htaccess files (one in each wp install) that handles their rewriting fine, but I want to setup a rewrite from /about to /blog/about. How would I do that and is it better to create all the rewrites in one .htaccess at the root of the site?</p>
http://stackoverflow.com/questions/1341648/credit-card-validation-resource-for-uk-merchant1Credit Card Validation Resource for UK merchantChris M2009-08-27T14:58:28Z2009-08-29T05:53:42Z
<p>I'm trying to set the credit card numbers based on the standard check parameters but am finding lots of UK cards (Maestro / Visa Debit / Barclaycard Connect) have start numbers that dont meet other card validation script regexes; </p>
<p>I.e Maestro (Switch) cards are still around and start with a 4, using alot of the regex's online this would cause Visa Credit card to be selected.</p>
<p>Does anyone know of a resource where these registered start codes are stored?</p>
<p>Ta</p>
<h2>Anyone Looking for a UK Credit Card Validation Table (BIN TABLE)</h2>
<p><a href="http://www.barclaycardbusiness.co.uk/information%5Fzone/processing/bin%5Frules.html" rel="nofollow">http://www.barclaycardbusiness.co.uk/information%5Fzone/processing/bin%5Frules.html</a> Link to the latest is on here</p>
http://stackoverflow.com/questions/1321331/replace-multiple-string-elements-in-c5Replace Multiple String Elements in C#Chris M2009-08-24T09:25:04Z2009-08-24T09:53:01Z
<p>Is there a better way of doing this... </p>
<pre><code>MyString .Trim().Replace("&", "and").Replace(",", "").Replace(" ", " ")
.Replace(" ", "-").Replace("'", "").Replace("/", "").ToLower();
</code></pre>
<p>I've extended the string class to keep it down to one job but is there a quicker way?</p>
<pre><code>public static class StringExtention
{
public static string clean(this string s)
{
return s.Replace("&", "and").Replace(",", "").Replace(" ", " ")
.Replace(" ", "-").Replace("'", "").Replace(".", "")
.Replace("eacute;", "é").ToLower();
}
}
</code></pre>
<p>Ta</p>
http://stackoverflow.com/questions/1268675/alternative-to-sessions-asp-net-mvc-c1Alternative To Sessions? (asp.net mvc c#)Chris M2009-08-12T20:52:59Z2009-08-13T13:14:15Z
<p>I'm being told that the server we're being given to use has 2gb of ram but is nearly maxed out with the current main application that runs on it.
But for the site were building, which is wholly reliant on a web service, we need to pass the response to the previous request within a chain...
i.e.</p>
<p><em>Page One</em></p>
<pre><code>var stepone = project.webservice.stepone("companyname","companyid"); //List Array Returned
</code></pre>
<p><em>Page Two</em></p>
<pre><code>var steptwo = project.webservice.steptwo(stepone, otherargs);
</code></pre>
<p>As 'they' don't want us to store 'a lot' in the session, and were using ASP.net MVC C#, what other ways are there that would keep our memory footprint low but allow us to store what we need to for the users progression.</p>
http://stackoverflow.com/questions/1266292/checkboxes-in-asp-net-mvc-c0Checkboxes in ASP.net MVC (c#)Chris M2009-08-12T13:52:25Z2009-08-12T14:16:45Z
<p>I'm creating a checkbox list to handle some preferences as follows...</p>
<pre><code> <ul>
<%foreach (var item in ViewData["preferences"] as IEnumerable<MvcA.webservice.SearchablePreference>)
{
var feature = new StringBuilder();
feature.Append("<li>");
feature.Append("<label><input id=\"" + item.ElementId + "\" name=\"fpreferences\" type=\"checkbox\" />" + item.ElementDesc + "</label>");
feature.Append("</li>");
Response.Write(feature);
}
%>
</ul>
</code></pre>
<p>The data handed to the viewdata of SearchablePreference[] and the list displays fine.</p>
<p>The question is; How would I repopulate the selected boxes if the page had to return itself back (i.e failed validation).</p>
<p>In webforms its handled automatically by the viewstate; with the other input elements I'm simply passing the sent-data back to the page via ViewData.</p>
<p>Thanks</p>
http://stackoverflow.com/questions/955394/mysql-optimizing-a-table-with-137000-rows2MYSQL Optimizing a table with 137000 rowsChris M2009-06-05T11:21:49Z2009-08-01T10:35:16Z
<p>I'm trying to optimize a <a href="http://www.redmine.org" rel="nofollow">redmine</a> database before it gets too much of a pain; the Changes (basically a log of all the SVN Changes) is at 137000 rows (ish) and the table is set to the b asic default settings. No key packing etc.</p>
<p>The table is as follows</p>
<pre><code>ID int[11] Auto Inc (PK)
changeset_id int[11]
action varchar[1]
path varchar[255]
from_path varchar[255]
from_revision varchar[255]
revision varchar[255]
branch varchar[255]
</code></pre>
<p>Indices: Primary (ID), <br>
changeset_id set to INDEX BTREE</p>
<p>All on latin1 charset based on a bit of info from <a href="http://forge.mysql.com/wiki/Top10SQLPerformanceTips" rel="nofollow">http://forge.mysql.com/wiki/Top10SQLPerformanceTips</a></p>
<p>The Table Engine is InnoDB
Pack Keys is set to Default (only packs char varchar)</p>
<p>All the other options are turned off.</p>
<p><strong>Whats the best way to optimize this? (Bar Truncate ;o) )</strong></p>
http://stackoverflow.com/questions/1213384/how-do-i-store-a-hash-with-the-search-results1How do I store a hash with the search results?Chris M2009-07-31T15:58:57Z2009-07-31T17:32:51Z
<p>I'm pulling 500 results from a search query to a webservice; I store these in the session for that user so pagnation doesnt cause further calls.</p>
<p>What I want to do is stick the parameters together into one long string and hash them so I have a quick hash to check against.</p>
<p>in php this would look something like...</p>
<pre><code><?php
$_SESSION["shash"] = md5($_GET['x'] . $_GET['y'] . $_GET['z']);
?>
</code></pre>
<p>Done Lazily anyway.</p>
<p>So in C# I have...</p>
<pre><code> #region Session Check
string sCheckStr = rarREF;
string searchCheck = GetMd5Sum(sCheckStr);
if ((Session["schk"].ToString().Length > 0) && (Session["schk"].ToString() == searchCheck))
{ }
else
{
if (searchResults != null) this.mySess.SessionVariables.SearchResults = null;
Session["schk"] = searchCheck;
}
#endregion
</code></pre>
<p>And apparently no default MD5 Class built in so I've used one off another site.</p>
<pre><code> #region MD5 Class
static public string GetMd5Sum(string str)
{
// First we need to convert the string into bytes, which
// means using a text encoder.
Encoder enc = System.Text.Encoding.Unicode.GetEncoder();
// Create a buffer large enough to hold the string
byte[] unicodeText = new byte[str.Length * 2];
enc.GetBytes(str.ToCharArray(), 0, str.Length, unicodeText, 0, true);
// Now that we have a byte array we can ask the CSP to hash it
MD5 md5 = new MD5CryptoServiceProvider();
byte[] result = md5.ComputeHash(unicodeText);
// Build the final string by converting each byte
// into hex and appending it to a StringBuilder
StringBuilder sb = new StringBuilder();
for (int i = 0; i < result.Length; i++)
{
sb.Append(result[i].ToString("X2"));
}
// And return it
return sb.ToString();
}
#endregion
</code></pre>
<p>Which doesn't work properly. rarRef is in the original (public ActionResult Index(string rarREF))
Is there a quicker way, as this needs to be fast. Would Base64 Encoding it do?</p>
http://stackoverflow.com/questions/1211441/link-helper-class-in-asp-net-mvc-where-is-the-url-encode0Link Helper Class in ASP.Net MVC; Where is the URL-Encode?Chris M2009-07-31T09:05:06Z2009-07-31T11:05:34Z
<p>To get the URL's I wanted i created a simple Link Creator helper for my search results.
But it wont let me use server urlencode in it and some of the details passed are French/Czech/Swedish words commas and apostrophes;</p>
<p>Is there a quick function that will strip all this garbage out before hand? </p>
http://stackoverflow.com/questions/1165397/how-do-i-iterate-through-a-list-in-my-view0How do I iterate through a list in my View?Chris M2009-07-22T13:48:15Z2009-07-24T22:40:25Z
<p>In my view I'm returning some results from a webservice and storing them in a session variable.</p>
<p>Here's the Session Storage Method:</p>
<pre><code>//AreaSummary[] is a reference to the webservice reference gubbins
public AreaSummary[] Results
{
get
{
if (this.Results != null)
{
return this.Results;
}
else
{
if (HttpContext.Current.Session["Results"] != null)
{
this.Results =
(AreaSummary[])HttpContext.Current.Session["Results"];
return this.Results;
}
else
{
return null;
}
}
}
set
{
this.Results= null;
HttpContext.Current.Session["Results"] = value;
}
}
</code></pre>
<p>In the Controller I set the results to this session to save having to push the request again and again (for paging).</p>
<p>So I set the session to the result set:</p>
<pre><code>this.mySess.SessionVarss.Results = myservice.SearchForX("stuff");
</code></pre>
<p>Both the '<code>Results</code>' and '<code>SearchForX</code>' are of <code>AreaSummary[]</code></p>
<pre><code>ViewData["ResultSet"] = this.mySess.SessionVars.Results;
</code></pre>
<p>I then pass this as <code>ViewData</code> in the controller without an issue and <code>databind</code> it to a <code>repeater</code> or <code>datagrid</code> (that i get).</p>
<p>My first thought was to use a <code>foreach</code> loop.</p>
<p>So in the view I was trying:</p>
<pre><code><% foreach (var item in (ViewData["ResultSet"] as List<MyMVC.webservice.AreaSummary[]>))
{ %>
<li class="image">
<img src="<%=item.MainImage.ImageUrl %>" />
</li>
<% } %>
</code></pre>
<p>I'm sure the mistake is glaringly obvious to some and I'm missing it through the tunnel-vision.</p>
<p>It compiles fine, but dies with the following error:</p>
<pre><code>Object reference not set to an instance of an object.
</code></pre>
<p>The following works:</p>
<pre><code><%
placelist.DataSource = ViewData["ResultSet"];
placelist.DataBind();
%>
<asp:Repeater ID="productlist" runat="server" Visible="true">
<ItemTemplate>
<li class="image">
<img src="<%# DataBinder.Eval(Container.DataItem, "MainImage.ImageUrl")%>" />
</li>
</ItemTemplate>
</asp:Repeater>
</code></pre>
<p>But I'd prefer to use a <code>foreach</code> loop as some of the items returned are arrays and with the <code>repeater</code> I'll end up doing more.</p>
<h2>Proper Solution</h2>
<p>The better solution in the end was to pass the data to the view: </p>
<pre><code>return View("index",SearchResults);
</code></pre>
<p>Then right click -> <code>add view</code>, <code>index</code>, <code>create strongly typed view</code>, select <code>webservice.AreaSummary</code> and <code>list</code>. </p>
http://stackoverflow.com/questions/1160128/how-to-change-an-asp-net-mvc-url1How to change an ASP.net MVC URLChris M2009-07-21T15:56:01Z2009-07-21T16:19:46Z
<p>Is there a simple way of generating a new Route-URL without all this faff.</p>
<p>I'm currently Handling several routes to the same view, all of which end with
/{pagenumber}</p>
<p>All I'm trying to do is delete everything back to the last backslash and replace the number.</p>
<p>I was trying to avoid using the URL Maker as it seems a tad overkill for pagination but all suggestions welcome…</p>
<p>Heres the method im using for pagination</p>
<pre><code>#region Create View Pagination
/// <summary>
/// Create Pagination For Display
/// </summary>
/// <param name="TotalPgs"></param>
/// <param name="currentPg"></param>
/// <returns></returns>
private string pagnationStr(int TotalPgs, int currentPg)
{
string tmp = "";
string URLX = "";
URLX = string.Format("{0}", base.Request.Url);
int pageSet = 10;
//Previous Link
if (currentPg > 1) tmp += "<li><a href='" + URLX + (currentPg - 1) + "'>Previous</a></li>";
//Standard Pagination
tmp += "<ul class=\"pagination\">";
for (int i = currentPg; i < TotalPgs; i++)
{
tmp += "<li><a href='" + URLX + i + "'>" + i.ToString() + "</a></li>";
if (pageSet < 1) break;
pageSet--;
}
tmp += "</ul>";
return tmp;
}
#endregion
</code></pre>
<ul>
<li>various bits of this normally come from the app-settings I've replaced them with numbers to be complete.</li>
</ul>
http://stackoverflow.com/questions/1153486/how-to-do-if-statement-in-linq-query1How to do If statement in Linq QueryChris M2009-07-20T13:11:25Z2009-07-20T14:05:43Z
<p>I currently have a list that contains the following</p>
<pre><code>CountryCode (string)
CountryStr (string)
RegionStr (string)
RegionID (int)
AreaStr (string)
AreaID (int)
</code></pre>
<p>This is a flattened set of linked data (so basically the results of a joined search that ive stored)</p>
<p>The MVC route will only pass one string which I then need to match up to the data at the right level in the heirachy.
So I'm trying to query the CountryStr then if it doesn't produce results the region then the area; but I need to do that bit of the query and for instance...</p>
<pre><code> var datURL = (from xs in myList
//query 1
where xs.RegionStr == rarREF
select new
{
regionID = xs.RegionId,
CountryID = xs.CountryCd
}
//IF theres no results
where xs.AreaStr == rarREF
select new
{
AreaID = xs.AreaID
regionID = xs.RegionId,
CountryID = xs.CountryCd
}
).ToList();
</code></pre>
<p>The only way I see of doing this at the moment is running each query separately then checking which returned values and using that one. I'm hoping there's a cleverer, cleaner method.</p>
http://stackoverflow.com/questions/1152434/site-not-rendered-properly/1152658#11526582Answer by Chris M for site not rendered properly.Chris M2009-07-20T09:49:01Z2009-07-20T11:13:38Z<p>First and foremost id say that your css should be loading in the header, not half way through the body. </p>
<p>The page flashes for me (because of this) but the css does load and I've not been able to replicate the problem beyond that.</p>
<p>Aim to build the page so that it validates as this will make debugging Cake, more like debugging cake (rather than it being an abstract problem on top of messy html)</p>
<p><a href="http://validator.w3.org/check?verbose=1&uri=http%3A%2F%2Fwww.mytopten.in%2Ftopics%2Findex%2Fordermode%3Apopular" rel="nofollow">http://validator.w3.org/check?verbose=1&uri=http%3A%2F%2Fwww.mytopten.in%2Ftopics%2Findex%2Fordermode%3Apopular</a></p>
<p>Get the page to a state where it resembles XHTML 1.0 first :o) (XHTML 1.0 Transitional as you've set)</p>
<p>The validator output is pretty verbose but in the case of your css, if you wish to use the same style repeatedly, and wish to attribute it on each element you want it to apply to (rather than using parent:child) you should use class (<code>.mystyle // class="mystyle"</code>) for repeated styles and id (<code>#myid // id="myid"</code>) for unique elements. An ID should only occur once on a page.</p>
http://stackoverflow.com/questions/1152523/should-we-implement-proprietary-firefox-css/1152619#11526191Answer by Chris M for Should we implement proprietary Firefox CSS?Chris M2009-07-20T09:38:01Z2009-07-20T09:38:01Z<p>We tend to use the proprietary methods followed by the CSS3 spec version for when the method becomes more widley supported.</p>
<ul>
<li><a href="http://www.w3.org/TR/css3-background/#the-border-radius" rel="nofollow">http://www.w3.org/TR/css3-background/#the-border-radius</a></li>
</ul>
<p>If necessary (which isn't often) we use JQuery + IE conditional tags to render the same for IE. </p>
<ul>
<li><a href="http://malsup.com/jquery/corner/" rel="nofollow">http://malsup.com/jquery/corner/</a></li>
<li><a href="http://www.quirksmode.org/css/condcom.html" rel="nofollow">http://www.quirksmode.org/css/condcom.html</a></li>
</ul>
<p>It really all depends on your target audience, we wouldn't generally use unsupported CSS on a public facing site as 89% of our users are still using IE 6/7 so it would be useless to most of them.</p>
<p>We currently use it on a few admin systems and some internal systems; mostly to give the design team exposure to the new techniques.</p>
<p>Consider your target audience, browser specs based on analytic's and how necessary it really is first.</p>
http://stackoverflow.com/questions/1148066/is-there-a-quick-way-to-say-if-notempty-x-y-else-x-default-in-a-linq-where-qu0Is there a quick way to say If notempty x = y else x = default in a Linq where queryChris M2009-07-18T17:25:17Z2009-07-18T18:00:50Z
<p>Is there a quick way to say </p>
<pre><code>Where (data.x == (If notempty x = y else x = default))
</code></pre>
<p>Assuming the data being compared is both strings</p>
<pre><code>Compare listitem.string with passed.string - if passed.string isnotempty, else passed.string equals default value.
</code></pre>
<p>in a Linq 'where` query.</p>
<p>Apologies that the question was really badly written.</p>
<p>... As per the comments updated ...</p>
http://stackoverflow.com/questions/1136705/dealing-with-linq-httpcontext-application-webservices0Dealing with LINQ / HttpContext.Application & WebServicesChris M2009-07-16T10:26:02Z2009-07-17T19:54:22Z
<p>I have the following function + code to parse and query a webservice request then in theory store the results in the application (as it only needs to refresh once a day, which luckily is when the application refreshes).</p>
<pre><code>//tocommondata is a reference to the common stuff in the webservice
var dCountries = toCommonData.PropertyCountries; //KeyValuePair
var dRegions = toCommonData.Regions;//Array
var dAreas = toCommonData.Areas;//Array
var commonDAT = (from c in dCountries
join r in dRegions on c.Key equals r.CountryCode
join a in dAreas on r.Id equals a.RegionId
join p in dResorts on a.Id equals p.AreaId
select new CommonSave
{
Key = c.Key,
Value = c.Value,
Id = r.Id,
Name = r.Name,
dAreasID = a.Id,
dAreasName = a.Name,
}
).ToList().AsQueryable();
HttpContext.Current.Application["commonDAT"] = commonDAT;
</code></pre>
<p><strong>THIS Bit Works Fine</strong></p>
<pre><code>foreach (var item in commonDAT)
{
Response.Write(item.value);
}
</code></pre>
<p>**Ideally I want to then pull it out of the appmemory so I can then access the data, which is where I've tried various (probably stupid) methods to use the information. Just pulling it out is causing me issues :o( **</p>
<pre><code>//This Seems to kinda work for at least grabbing it (I'm probably doing this REALLY wrong).
IQueryable appCommonRar = (IQueryable)HttpContext.Current.Application["commonDAT"];
</code></pre>
<p><br /></p>
<p><strong><em>Answer as Marked(remove the .AsQueryable() )</em></strong>
<strong><em>Quick Example</em></strong></p>
<p>Just to make this a verbose answer, a quick way to re-query and display a resultset...</p>
<pre><code>List<CommonSave> appcommon = (List<CommonSave>)HttpContext.Current.Application["commonDAT"];
Response.Write(appcommon.Count()); // Number of responses
var texst = (from xs in appcommon
where xs.Key == "GBR"
select xs.dAreasName
);
foreach (var item in texst)
{
Response.Write("<br><b>"+item.ToString()+"<b><br>");
}
</code></pre>
<p>Hopefully of use to someone.</p>
http://stackoverflow.com/questions/1142761/fastest-way-to-store-a-large-set-of-data-c-asp-net1Fastest way to store a Large Set of Data (C# ASP.net)Chris M2009-07-17T11:43:13Z2009-07-17T12:37:44Z
<p>A webservice i'm working with sends back a result set that equates to around 66980 lines of XML, .net returns this as a list object.</p>
<p>As the user journey requires that we can reload this set if they step back a page, whats the fastest/best way of storing this result set per-user without slowing everything down.</p>
<p>Ta</p>
<p>--
<em>many solutions:</em>
<a href="http://msdn.microsoft.com/en-us/magazine/cc300437.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/magazine/cc300437.aspx</a></p>
http://stackoverflow.com/questions/1126057/optimal-way-to-link-multiple-arrays-in-c-asp-net2Optimal Way to Link Multiple Arrays in C# ASP.netChris M2009-07-14T15:11:57Z2009-07-15T15:11:46Z
<p>I have 3 arrays coming from a webservice...</p>
<pre><code>Countries : Consists of Key - Value
Regions : Consists of Id - Name - CountryCode(fk: countries)
Areas : Consists of Id - Name - CountryCode - RegionID(fk: regions)
</code></pre>
<p>(the fk is just showing that its the bit of information, foreign key, associating it to the previous array)</p>
<p>I'm stuck on what the best way (most optimal) is to link these together, LINQ Joining looks like a headache and I'm not sure about HashSets. </p>
<p>Any Ideas?</p>
<p>*** Additional;* This will be stored in the application state as the APP as it needs to be refreshed once a day (which in my opinion is quicker to do by simply refreshing the app once a day than storing in a database and updating based on a date stamp.</p>
http://stackoverflow.com/questions/1130832/how-do-i-store-list-array-in-the-application-state-c-asp-net-mvc0How do I store List ~ Array in the Application State (C# ASP.net MVC)Chris M2009-07-15T11:23:12Z2009-07-15T15:11:04Z
<p>I'm trying to stick some data into the app so I can then build a public string get + linq query to pull out just the bits I want when I need them.</p>
<p>I'm just struggling to store it and then how I'd go about pulling it back out so I can query against it...</p>
<pre><code>public void CommonDatatoApp()
{
CDataResponse cCommonData = this.GatewayReference.GetCommonData();
var dCountries = cCommonData.PropertyCountries; //KeyValue
var dRegions = cCommonData.Regions; //Array
var dAreas = cCommonData.Areas; //Array
var dResorts = cCommonData.Resorts; //Array
var commonRAR = (from c in dCountries
join r in dRegions on c.Key equals r.CountryCd
join a in dAreas on r.Id equals a.RegionId
select new { c.Key, c.Value, r.Id, r.Name, dAreasID = a.Id, dAreasIDName = a.Name}
);
HttpContext.Current.Application["commonData"] = commonRAR;
}
</code></pre>
http://stackoverflow.com/questions/1127767/linq-error-could-not-find-an-implementation-of-the-query-pattern-for-source-type1Linq Error "Could not find an implementation of the query pattern for source type 'System.Linq.IQueryable' Join Not Found'...Chris M2009-07-14T20:19:40Z2009-07-14T20:25:08Z
<p><strong>What the hell does this mean?</strong> Ignore the return, and the get, The results will be flattened and stuck in the application mem (so this will be a set... probably)<br /><br />
<em>"Could not find an implementation of the query pattern for source type 'System.Linq.IQueryable'. 'Join' not found. Consider explicitly specifying the type of the range variable 'a'."</em></p>
<pre><code>private CommonDataResponse toCommonData
{
get
{
CommonDataResponse toCommonData = this.gatewayReference.GetCommonData();
Array dCountries = toCommonData.PropertyCountries.ToArray(); //Webservice sends KeyValuePairOfString
Array dRegions = toCommonData.Regions; //Webservice sends Array
Array dAreas = toCommonData.Areas; //Webservice sends Array
var commonRAR = from a in dAreas
join r in dRegions
on a.RegionID equals r.Id
join c in dCountries
on r.CountryCode equals c.Key
select new {c.Value, r.Name, a.Name, a.Id };
return toCommonData;
}
}
</code></pre>
<p>dRegions/dAreas Both arrays, dCountries is .toArray()</p>
http://stackoverflow.com/questions/1119849/how-do-i-use-optional-parameters-in-an-asp-net-mvc-controller0How do I use Optional Parameters in an ASP.NET MVC ControllerChris M2009-07-13T14:40:02Z2009-07-13T14:55:01Z
<p>I have a set of drop down controls on a view that are linked to two lists.</p>
<pre><code>//control
ViewData["Countries"] = new SelectList(x.getCountries().ToList(), "key","value",country);
ViewData["Regions"] = new SelectList(x.getRegions(country).ToList(), "id", "name", regions);
/*
on the view
*/
<% using (Html.BeginForm("","", FormMethod.Get))
{ %>
<ol>
<li>
<%= MvcEasyA.Helpers.LabelHelper.Label("Country", "Country:")%>
<%= Html.DropDownList("Country", ViewData["Countries"] as SelectList) %>
<input type="submit" value="countryGO" class="ddabtns" />
</li>
<li>
<%= MvcEasyA.Helpers.LabelHelper.Label("Regions", "Regions:")%>
<%= Html.DropDownList("Regions", ViewData["Regions"] as SelectList,"-- Select One --") %>
<input type="submit" value="regionsGO" class="ddabtns" />
</li>
</ol>
<br />
<input type="submit" value="go" />
<% } %>
</code></pre>
<p>So its sending a query to the same page (as its only really there to provide an alternative way of setting/updating the appropriate dropdowns, this is acceptable as it will all be replaced with javascript).</p>
<p>The url on clicking is something like...
<a href="http://localhost:1689/?Country=FRA&Regions=117" rel="nofollow">http://localhost:1689/?Country=FRA&Regions=117</a></p>
<p>Regions is Dependant on being passed the country code.</p>
<p>I'm trying to achieve this bit without bothering with routing as there's no real point with regards this function.</p>
<p>So the Controller has the following method.</p>
<pre><code>public ActionResult Index(string country, int regions)
</code></pre>
<p>I've tried</p>
<pre><code>public ActionResult Index([Optional] string country, [Optional] int regions)
</code></pre>
<p>Which doesn't do the job.</p>
http://stackoverflow.com/questions/1341648/credit-card-validation-resource-for-uk-merchantComment by Chris M on Credit Card Validation Resource for UK merchantChris M2009-12-08T16:48:30Z2009-12-08T16:48:30ZThanks, Its a nightmare finding useful information to validate against :o)http://stackoverflow.com/questions/1072904/advantages-of-web-applications-over-desktop-applications/1072916#1072916Comment by Chris M on Advantages of web applications over desktop applicationsChris M2009-12-06T21:28:19Z2009-12-06T21:28:19Z@Canavar if its internal App to Web App then you can usually guarantee IT control the browser + version.
Thanks to JS libraries coding for multiple browsers isnt that difficult. Coding CSS for everything past IE6 isn't that difficult anyway if your a good enough web-designer/developer.
http://stackoverflow.com/questions/1831681/how-do-i-create-a-selective-windows-authorise-in-asp-net-mvc/1835448#1835448Comment by Chris M on How do I create a selective Windows Authorise in ASP.Net MVCChris M2009-12-02T22:21:23Z2009-12-02T22:21:23ZCool; That answers the question :o) Tahttp://stackoverflow.com/questions/1831681/how-do-i-create-a-selective-windows-authorise-in-asp-net-mvc/1835448#1835448Comment by Chris M on How do I create a selective Windows Authorise in ASP.Net MVCChris M2009-12-02T21:31:17Z2009-12-02T21:31:17ZIts a corporate server so as far as I know I will be able to use the active directory. I'm not looking to add users just authenticate them.http://stackoverflow.com/questions/1829142/is-it-possible-to-make-sql-server-convert-entries-columns-in-a-set-of-results/1829198#1829198Comment by Chris M on Is it possible to make SQL Server convert entries columns in a set of resultsChris M2009-12-01T22:03:13Z2009-12-01T22:03:13ZGood link; I was drowning in reference sites. Tahttp://stackoverflow.com/questions/1829142/is-it-possible-to-make-sql-server-convert-entries-columns-in-a-set-of-resultsComment by Chris M on Is it possible to make SQL Server convert entries columns in a set of resultsChris M2009-12-01T22:02:35Z2009-12-01T22:02:35Z@marc thanks;
@OMG g_id_featuregroup for instance is Tbl: featuregroup; PK: g_idhttp://stackoverflow.com/questions/1493450/adobe-dreamweaver-extensions/1529362#1529362Comment by Chris M on Adobe Dreamweaver ExtensionsChris M2009-10-07T10:16:30Z2009-10-07T10:16:30ZCrap; I could grow to hate adobe... morehttp://stackoverflow.com/questions/1477661/selectlist-dropdowns-in-c-selected-value/1477688#1477688Comment by Chris M on SelectList Dropdowns in C# (Selected value)Chris M2009-09-28T08:07:51Z2009-09-28T08:07:51ZYe I'm guessing that the abiguous name was the use of changeDuration twice.http://stackoverflow.com/questions/1207053/selecteditem-not-being-remembered-in-selectlist-in-aspnet-mvc/1207107#1207107Comment by Chris M on SelectedItem not being remembered in SelectList in ASPNET.MVCChris M2009-09-25T14:42:26Z2009-09-25T14:42:26ZGuessing that example came from <a href="http://blog.benhartonline.com/post/2008/11/24/ASPNET-MVC-SelectList-selectedValue-Gotcha.aspx" rel="nofollow">blog.benhartonline.com/post/2008/…</a>http://stackoverflow.com/questions/1465029/if-statement-hell-how-to-check-if-a-date-passed-matches-a-date-within-3-days-but/1465113#1465113Comment by Chris M on If Statement Hell, How to check if a date passed matches a date within 3 days but only if the date doesnt match the other conditions.Chris M2009-09-23T11:07:50Z2009-09-23T11:07:50ZI cheated See Answer Added to the Question :o)http://stackoverflow.com/questions/1465029/if-statement-hell-how-to-check-if-a-date-passed-matches-a-date-within-3-days-but/1465113#1465113Comment by Chris M on If Statement Hell, How to check if a date passed matches a date within 3 days but only if the date doesnt match the other conditions.Chris M2009-09-23T10:28:13Z2009-09-23T10:28:13ZKind of right I need to compare the whole dates rather than just the days otherwise I have to deal with testing that were not adding 3 days to the end of the month or taking 3 days off the beginning of the month.http://stackoverflow.com/questions/1465029/if-statement-hell-how-to-check-if-a-date-passed-matches-a-date-within-3-days-but/1465113#1465113Comment by Chris M on If Statement Hell, How to check if a date passed matches a date within 3 days but only if the date doesnt match the other conditions.Chris M2009-09-23T10:13:54Z2009-09-23T10:13:54ZAdmittedly It started off as about 2 statements and in trying to fix an issue with multiple days being selected I ended up over complicating it to the point of being massively convoluted.http://stackoverflow.com/questions/1465029/if-statement-hell-how-to-check-if-a-date-passed-matches-a-date-within-3-days-butComment by Chris M on If Statement Hell, How to check if a date passed matches a date within 3 days but only if the date doesnt match the other conditions.Chris M2009-09-23T10:11:57Z2009-09-23T10:11:57ZYou typed the questions as I was clarifying it :o)
Basically I'm passing a Date (say 27/11/2010 which is SelectedDay) which I need to test it.
Is the SelectedDay the Current Calendar day being added to the string.
If its not then if i add a day to the Selected Day does it match, then if not, two days, and again, three days.
http://stackoverflow.com/questions/1308194/determine-credit-card-type-by-number/1308410#1308410Comment by Chris M on Determine credit card type by number?Chris M2009-08-28T10:38:00Z2009-08-28T10:38:00ZCredit cards arent too bad as they follow a set of rules; we have Maestro cards which cause all the issues as they use the same start codes as Credit Card producers and have over 16digits.http://stackoverflow.com/questions/1308194/determine-credit-card-type-by-number/1308240#1308240Comment by Chris M on Determine credit card type by number?Chris M2009-08-28T10:37:04Z2009-08-28T10:37:04ZMost Cards are 16# in length (UK) Maestro can be up to 19 so length checks become a PITA.