User Jedidja - Stack Overflowmost recent 30 from stackoverflow.com2009-12-21T03:20:44Zhttp://stackoverflow.com/feeds/user/9913http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/201327/mstest-run-fails-because-source-assembly-is-not-trusted13MSTest run fails because source assembly is not trustedJedidja2008-10-14T14:15:50Z2009-12-17T21:06:38Z
<p>I just added xUnit to our test project (for the Asserts, we're still using MSTest as the framework) and immediately the test runs refused to execute any of the tests. This is the error message:</p>
<blockquote>
<p>Failed to queue test run '{ .... }'
Test run deployment issue: The
location of the file or directory
'...xUnit.dll' is not trusted.</p>
</blockquote>
http://stackoverflow.com/questions/1897555/what-is-the-equivalent-of-memset-in-c4What is the equivalent of memset in C#?Jedidja2009-12-13T19:59:00Z2009-12-15T12:59:40Z
<p>I need to fill a <code>byte[]</code> with a single <strong>non-zero</strong> value. How can I do this in C# without looping through each <code>byte</code> in the array?</p>
<p><strong>Update:</strong> The comments seem to have split this into two questions -</p>
<ol>
<li>Is there a Framework method to fill a byte[] that might be akin to <code>memset</code></li>
<li>What is the most efficient way to do it when we are dealing with a very large array?</li>
</ol>
<p>I totally agree that using a simple loop works just fine, as Eric and others have pointed out. The point of the question was to see if I could learn something new about C# :) I think Juliet's method for a Parallel operation should be even faster than a simple loop.</p>
<p><strong>Benchmarks:</strong>
Thanks to Mikael Svenson: <a href="http://techmikael.blogspot.com/2009/12/filling-array-with-default-value.html" rel="nofollow">http://techmikael.blogspot.com/2009/12/filling-array-with-default-value.html</a></p>
<p>It turns out the simple <code>for</code> loop is the way to go unless you want to use unsafe code.</p>
<p>Apologies for not being clearer in my original post. Eric and Mark are both correct in their comments; need to have more focused questions for sure. Thanks for everyone's suggestions and responses.</p>
http://stackoverflow.com/questions/1867329/does-t4mvc-work-with-visual-studio-2010-beta-2-and-net-41Does T4MVC work with Visual Studio 2010 Beta 2 and .Net 4?Jedidja2009-12-08T14:31:01Z2009-12-13T20:13:48Z
<p>I cannot get the current build of T4MVC (2.6.02) to work with an ASP.NET MVC 2 project compiled against .NET 4 in VS2010 Beta 2.</p>
<p>There is one error:</p>
<ul>
<li><code>The C# 2.0 and C# 3.5 compilers are no longer supported. Templates will always be compiled with the version 4 compiler instead of 'v3.5' as specified.</code></li>
</ul>
<p>Which is easily fixed by changing</p>
<pre><code><#@ template language="C#v3.5" debug="true" hostspecific="true" #>
</code></pre>
<p>to</p>
<pre><code><#@ template language="C#" debug="true" hostspecific="true" #>
</code></pre>
<p>And then the <code>.generated.cs</code> files are created, however I get a compile error in <code>T4MVC.cs</code> which says </p>
<p><code>error CS0116: A namespace cannot directly contain members such as fields or methods.</code></p>
<p>Has anyone else experienced this?</p>
http://stackoverflow.com/questions/1883647/why-has-ctrlf-find-in-vs2010-stopped-automatically-searching-for-the-currently0Why has Ctrl+F (Find) in VS2010 stopped automatically searching for the currently selected text?Jedidja2009-12-10T20:09:15Z2009-12-11T07:52:04Z
<p>Normally if you select some text in the Visual Studio editor and press Ctrl+F, when the Find and Replace modeless dialog appears, your selected text is automatically shown in the "Find what:" textbox/dropdown.</p>
<p>For some strange reason this has stopped working - is there a setting that controls this?</p>
http://stackoverflow.com/questions/1877300/how-can-i-use-a-panel-as-a-region-in-prism0How can I use a Panel as a Region in Prism?Jedidja2009-12-09T22:14:19Z2009-12-09T22:17:40Z
<p>The prism documentation states that there are three region adapters available:</p>
<blockquote>
<p><strong>ContentControlRegionAdapter</strong>. This adapter adapts controls of type <code>System.Windows.Controls.ContentControl</code> and derived classes.</p>
<p><strong>SelectorRegionAdapter</strong>. This adapter adapts controls derived from the class <code>System.Windows.Controls.Primitives.Selector</code>, such as the <code>System.Windows.Controls.TabControl</code> control.</p>
<p><strong>ItemsControlRegionAdapter</strong>. This adapter adapts controls of type <code>System.Windows.Controls.ItemsControl</code> and derived classes.</p>
</blockquote>
<p>Unfortunately, <code>Panel</code> does not fall into any of those categories, and I want to be able to write this in my <code>.xaml.cs</code>:</p>
<pre><code><Canvas cal:RegionManager.RegionName="{x:Static local:RegionNames.MainCanvas}">
</code></pre>
<p>How can we accomplish this?</p>
http://stackoverflow.com/questions/1877300/how-can-i-use-a-panel-as-a-region-in-prism/1877325#18773250Answer by Jedidja for How can I use a Panel as a Region in Prism?Jedidja2009-12-09T22:17:40Z2009-12-09T22:17:40Z<p>The answer to this can be found in this very nice, <a href="http://geekswithblogs.net/JeffFerguson/archive/2009/06/30/working-with-prism-and-the-blacklight-controls.aspx" rel="nofollow">descriptive blog post</a>.</p>
<p>However, I want the answer stored on StackOverflow as well :) It took a bit of searching to get this from Google. Here is my code that works with a basic Panel.</p>
<p><strong>Step 1 - create a new region adapter</strong></p>
<pre><code>public class PanelHostRegionAdapter : RegionAdapterBase<Panel>
{
public PanelHostRegionAdapter(IRegionBehaviorFactory behaviorFactory)
: base(behaviorFactory)
{
}
protected override void Adapt(IRegion region, Panel regionTarget)
{
region.Views.CollectionChanged += (s, e) =>
{
if (e.Action == NotifyCollectionChangedAction.Add)
{
foreach (FrameworkElement element in e.NewItems)
{
regionTarget.Children.Add(element);
}
}
else if (e.Action == NotifyCollectionChangedAction.Remove)
{
foreach (FrameworkElement CurrentElement in e.OldItems)
regionTarget.Children.Remove(CurrentElement);
}
};
}
protected override IRegion CreateRegion()
{
return new AllActiveRegion();
}
}
</code></pre>
<p><strong>Step 2 - update your bootstrapper</strong></p>
<pre><code>public class Bootstrapper : UnityBootstrapper
{
protected override DependencyObject CreateShell()
{
...
}
protected override IModuleCatalog GetModuleCatalog()
{
...
}
protected override RegionAdapterMappings ConfigureRegionAdapterMappings()
{
RegionAdapterMappings Mappings = base.ConfigureRegionAdapterMappings();
Mappings.RegisterMapping(typeof(Panel), Container.Resolve<PanelHostRegionAdapter>());
return Mappings;
}
}
</code></pre>
http://stackoverflow.com/questions/201327/mstest-run-fails-because-source-assembly-is-not-trusted/201335#20133519Answer by Jedidja for MSTest run fails because source assembly is not trustedJedidja2008-10-14T14:17:43Z2009-12-08T14:41:01Z<p>It took me a few tries to find the answer in Google, so I'm putting it here in case anyone else runs into the same problem. A detailed description can be found at <a href="http://smartclientfactory.blogspot.com/2008/01/nmock2-was-blocked.html" rel="nofollow">this blog posting</a>.</p>
<p>Basically, the fix invovles right-clicking on the dll file (xunit.dll for example), going to Properties, and clicking "Unblock" at the bottom of the tab next to the 'Security' text. It seems that Vista / Windows 2008 will automatically mark assemblies that come from other machines or the internet as unsafe.</p>
http://stackoverflow.com/questions/1867329/does-t4mvc-work-with-visual-studio-2010-beta-2-and-net-4/1867360#18673602Answer by Jedidja for Does T4MVC work with Visual Studio 2010 Beta 2 and .Net 4?Jedidja2009-12-08T14:34:12Z2009-12-08T14:34:12Z<p>Apparently you have to do a build first :) The compile message seems to go away afterwards.</p>
http://stackoverflow.com/questions/1826944/why-is-stylecop-sa1305-not-respecting-the-allowed-prefixes-list-in-vs20100Why is StyleCop SA1305 not respecting the allowed prefixes list in VS2010?Jedidja2009-12-01T15:32:29Z2009-12-01T15:32:29Z
<p>I just upgraded a project from 2008 to 2010 Beta 2 and StyleCop is now reporting SA1305 (Hungarian notation) warnings on variable names with the prefix 'is'. 'Is' is definitely in the list of allowed prefixes.</p>
<p>Is this a known issue? Has anyone else run across this problem? The code was definitely compiling without any warnings in 2008.</p>
http://stackoverflow.com/questions/1783612/how-do-i-unit-test-a-controller-action-that-uses-ther-controller-user-variable2How do I unit test a controller action that uses ther Controller.User variable?Jedidja2009-11-23T14:54:18Z2009-11-23T16:47:12Z
<p>I have a controller action that automatically redirects to a new page if the user is already logged in (<code>User.Identity.IsAuthenticated</code>). What is the best way to write a unit test for this scenario to ensure that the redirect takes places?</p>
http://stackoverflow.com/questions/324649/how-do-you-set-the-width-of-an-html-helper-textbox-in-asp-net-mvc3How do you set the width of an HTML Helper TextBox in ASP.NET MVC?Jedidja2008-11-27T21:06:44Z2009-11-15T09:23:27Z
<p>Some examples I found that apparently worked with older versions of mvc suggest that there was a length parameter of sorts:</p>
<pre><code><%=Html.TextBox("test", 50)%>
</code></pre>
<p>But that may have been mistakenly setting the value.</p>
<p>How do this work in the current release? Passing in the style doesn't appear to have any effect.</p>
http://stackoverflow.com/questions/1651278/how-can-a-page-in-ie-render-differently-between-cassini-and-iis70How can a page in IE render differently between Cassini and IIS7?Jedidja2009-10-30T17:36:47Z2009-10-30T19:52:31Z
<p>I am completely confused - I have a website that renders perfectly in IE8 when run through Cassini (in Visual Studio) but has several messed up elements (style/look) when deployed to localhost and viewed through the same browser (IE8).</p>
<p>I have run Beyond Compare 3 on the html and CSS files and they are exactly the same. Are there any circumstances where IIS7 could be somehow sending extra/different information to the browser? Has anyone run across something like this before?</p>
<p>Note that Chrome and Firefox both render the same webpage just fine through Cassini and IIS7.</p>
<p>(<strong>Update</strong>)
What Browser Mode and Document Mode does IE8 Developer Tools think you are in if you press F12? </p>
<p>When running from Cassini (<a href="http://localhost:22120" rel="nofollow">http://localhost:22120</a>), IE8 stays in IE8 mode (with the option for turning on IE7 compatibility view) and everything looks great.</p>
<p>When running from IIS7 (http://{machine name}), IE8 automatically goes into in IE8 Compat View, IE7 standards and things look horrible.</p>
http://stackoverflow.com/questions/258897/what-is-a-captcha-that-is-compatible-with-asp-net-mvc/1491625#14916251Answer by Jedidja for What is a CAPTCHA that is compatible with ASP.NET MVC ?Jedidja2009-09-29T10:01:18Z2009-10-27T05:32:04Z<p>This is a <a href="http://devlicio.us/blogs/derik%5Fwhittaker/archive/2008/12/02/using-recaptcha-with-asp-net-mvc.aspx" rel="nofollow"><strong>great</strong> tutorial on using reCaptcha in MVC</a> and works with the currently newest release.</p>
http://stackoverflow.com/questions/1626998/why-is-the-wrong-field-value-shown-in-the-error-message-when-using-jquery-remote0Why is the wrong field value shown in the error message when using jQuery (remote) validation?Jedidja2009-10-26T20:00:11Z2009-10-26T20:39:29Z
<p>I'm using the jQuery validation plugin in a very similar manner to the <a href="http://jquery.bassistance.de/validate/demo/milk/" rel="nofollow">Remember The Milk demo</a>.</p>
<pre><code>$("#registrationForm").validate({
rules: {
email: {
required: true,
email: true,
remote: '<%=Url.Action(...) %>'
},
},
messages: {
email: {
required: "Please enter an email address",
email: "Please enter a valid email address",
remote: jQuery.format("{0} is already in use")
}
});
</code></pre>
<p>The first time an invalid email (e.g. bob@mail.com) is submitted, the error message is as expected. However, if I then enter another invalid email (e.g. sue@mail.com), the validation plugin still displays "bob@mail.com is already in use."</p>
<p>I've traced the parameters that are reaching the controller specified in <code>Url.Action</code> call and they are definitely correct (i.e. "sue@mail.com" is sent as the email address when that is what is entered in the field).</p>
<p>Has anyone else run into this or a similar issue using the jQuery validation plugin?</p>
http://stackoverflow.com/questions/1625671/what-is-the-problem-with-a-get-json-request1What is the "problem" with a GET JSON request?Jedidja2009-10-26T16:10:37Z2009-10-26T17:22:42Z
<p>As part of the ASP.NET MVC 2 Beta 2 update, JSON GET requests are disallowed by default. It appears that you need to set the <code>JsonRequestBehavior</code> field to <code>JsonRequestBehavior.AllowGet</code> before returning a <code>JsonResult</code> from your controller.</p>
<pre><code> public JsonResult IsEmailValid(...)
{
JsonResult result = new JsonResult();
result.Data = ..... ;
result.JsonRequestBehavior = JsonRequestBehavior.AllowGet;
return result;
}
</code></pre>
<p>What is the reasoning behind this? If I am using JSON GET to try and do some remote validation, should I be using a different technique instead?</p>
http://stackoverflow.com/questions/1615144/what-is-the-proper-way-to-do-multi-parameter-ajax-form-validation-with-jquery-and0What is the proper way to do multi-parameter AJAX form validation with jQuery and ASP.NET MVC?Jedidja2009-10-23T18:23:33Z2009-10-23T18:44:35Z
<p>I have a registration form for a website that needs to check if an email address already exists for a given company id. When the user tabs or clicks out of the email field (blur event), I want jQuery to go off and do an AJAX request so I can then warn the user they need to pick another address.</p>
<p>In my controller, I have a method such as this: </p>
<pre><code>public JsonResult IsEmailValid(int companyId, string customerNumber)
{
return Json(...);
}
</code></pre>
<p>To make this work, I will need to update my routes to point directly to <code>/Home/IsEmailValid</code> and the two parameters <code>{companyId}</code> and <code>{customerNumber}</code>. This seems like I'm "hacking" around in the routing system and I'm guessing perhaps there is a cleaner alternative.</p>
<p>Is there a "proper" or recommended way to accomplish this task?</p>
<p>EDIT: What I meant by the routes is that passing in extra parameter ({customerNumber}) in the URL (/Home/IsEmailValid/{companyId}/{customerNumber}) won't work with the default route mapping.</p>
http://stackoverflow.com/questions/293281/why-wont-visual-studio-2008-create-mdf-files-with-sql-server-2008-developer-ins8Why won't Visual Studio 2008 create .mdf files with SQL Server 2008 Developer installed?Jedidja2008-11-16T00:18:11Z2009-10-19T02:49:46Z
<p>I'm trying some of the ASP.NET MVC tutorials and one of them has the following steps:</p>
<ul>
<li>Right-click on the "App_Data" folder, and choose "Add New item"</li>
<li>Choose "SQL Server Database" under the "Data" category.</li>
</ul>
<p>However, once I do that, I get the following message from Visual Studio:</p>
<blockquote>
<p>Connections to SQL Server files (*.mdf) require SQL Server Express 2005 to function proprely. Please verify the installation of the component or download from the URL...</p>
</blockquote>
<p>The thing is that I have SQL Server 2008 Developer Edition installed, and I would really rather not install any Express versions (2005 or 2008) if I don't have to. Is there a work-around for this issue?</p>
http://stackoverflow.com/questions/1573643/how-can-i-make-jsonresult-return-an-array-of-arrays-without-field-names-rather0How can I make JsonResult return an array of arrays (without field names) rather than an array of objects?Jedidja2009-10-15T16:48:04Z2009-10-16T09:50:51Z
<p>I have an IEnumerable list of date/value pairs that I am returning as a Json list to flot. However, when I call JsonResult(), the result looks like this:</p>
<pre><code>[{"Date":date1, "Value":value1}, {"Date":date2, "Value":value2}...]
</code></pre>
<p>Flot is expecting</p>
<pre><code>[[date1, value1], [date2, value2]...]
</code></pre>
<p>Is there any simple way to get the MVC framework to output objects like this or do I need to write my own seralizer / StringBuffer code? For that matter I don't even need to output the field names, just the values themselves.</p>
http://stackoverflow.com/questions/1465875/how-do-i-create-a-facade-for-identical-linq-2-sql-tables0How do I create a facade for identical LINQ 2 SQL tables?Jedidja2009-09-23T13:07:03Z2009-10-12T12:07:00Z
<p>I'm working with a 14-year old schema where a parent table (P) contains a type (8 possibilities) and location (3 possibilities) field that together point to one of twenty-four specific tables (A1, A2, A3, B1, B2, B3...), all with identical schemas for their type.</p>
<p>I would like to create a generic way to access the specific tables but cannot seem to make it work.</p>
<p>Let's say the parent table is called Document and two types of specific are (NewLetter, CurrentLetter, and HistoricLetters) and (NewBill, CurrentBill, and HistoricBills).</p>
<pre><code> public interface ILetter
{
DateTime CreationDate { get; }
}
public interface IBill
{
DateTime BillDate { get; }
}
// The LINQ 2 SQL generated classes already implement the CreationDate property
public partial class NewLetter : ILetter { }
public partial class CurrentLetter : ILetter { }
public partial class HistoricLetter : ILetter { }
</code></pre>
<p>Then in my code, I would like to be able to do this:</p>
<pre><code> switch (type)
{
case 1:
Table<IBill> specificBill;
switch (location)
{
...
}
case 2:
Table<ILetter> specificTable;
switch (location)
{
case 1: specificTable = dataContext.NewLetter as Table<ILetter>; break;
case 2: specificTable = dataContext.CurrentLetter ...
case 3: specificTable = dataContext.HistoricLetter ...
}
}
</code></pre>
<p>Or something similar. Unfortunately I can't cast <code>Table<NewLetter></code> to <code>Table<ILetter></code> even if NewLetter implements ILetter. Is there any way around this? I guess I'm basically trying to create a view in C#, as I don't have the permissions to create one in the db itself.</p>
http://stackoverflow.com/questions/1543511/why-would-a-wcf-webservice-hosted-in-iis-randomly-stop-responding1Why would a WCF webservice hosted in IIS randomly stop responding?Jedidja2009-10-09T12:37:25Z2009-10-09T12:43:26Z
<p>This is my first attempt to use WCF so there may be something fundamentally wrong with this approach - if so I'm happy to switch to a different model. At quick glance, I thought the answer to <a href="http://stackoverflow.com/questions/739312/c-wcf-wcf-stops-responding-after-about-10-or-so-calls-throttling">this question</a> would have worked, but my scenario appears to be different.</p>
<p>I have an ASP.NET MVC website where the controllers access the WCF client class through an intermediate repository. The repository is just a wrapper around the WCF client that instantiates it once and sets the proper endpoint address.</p>
<pre><code>public class WcfRepository : IRepository
{
private MyWCFServiceClient client;
public WcfRepository()
{
client = new MyWCFServiceClient();
}
public bool MyMethod1()
{
return client.MyMethod1();
}
... etc
}
</code></pre>
<p>I can access different pages on the website until a seemingly random point where the WCF service will start timing out. It doesn't matter which method I call either - it timesout on different ones. I cannot see any exceptions on the IIS machine hosting the WCF service either; the event log there is empty. A simple method like <code>GetCustomerByName()</code> which worked two minutes earlier will no longer so I think it's more to do with WCF communication rather than the service itself.</p>
<p>If I try to use the WCF Test Client after one of these timeouts occurs, it will also fail. But, if I wait a while (and choose 'start a new proxy') then things will work again.</p>
<p>I'm very confused - should I be creating a new instance of the WCF client each time I want to use it in my repository? Is there another way I should be using the client? Wrapping each call in <code>Open()/Close()</code> doesn't work either since the first call to <code>Close()</code> puts the object in a disposed state.</p>
http://stackoverflow.com/questions/95105/is-there-any-built-in-way-to-convert-an-integer-to-a-string-of-any-base-in-c5Is there any built-in way to convert an integer to a string (of any base) in C#?Jedidja2008-09-18T18:09:09Z2009-08-12T07:02:29Z
<p>Convert.ToString() only allows base values of 2, 8, 10, and 16 for some odd reason; is there some obscure way of providing any base between 2 and 16?</p>
http://stackoverflow.com/questions/255170/markdown-and-image-alignment2Markdown and image alignmentJedidja2008-10-31T22:43:46Z2009-08-04T15:18:46Z
<p>I'm helping out a friend with a non-profit site that publishes articles in issues each month. They are mostly straightforward, and I think using a markdown editor (like the wmd one here in SO) would be perfect. However, they do need the ability to have images right-aligned in a given paragraph. I can't see any way to do that with the current system - is it possible?</p>
http://stackoverflow.com/questions/293854/how-can-i-enable-live-preview-for-fckeditor-in-an-asp-net-site0How can I enable live preview for FCKeditor in an ASP.Net site?Jedidja2008-11-16T13:19:37Z2009-07-12T19:25:24Z
<p>Over in <a href="http://stackoverflow.com/questions/84353/i-need-a-wysiwyg-web-editor-web-based">this</a> question, Scott writes that it is possible to get the current HTML for what's written in the FCKeditor by using <code>FCKeditorAPI.__Instances['instanceNameHere'].GetHTML();</code></p>
<p>Could someone provide step-by-step instructions on how to accomplish this in an ASP.NET page? All I currently have so far in the .aspx file is this:</p>
<pre><code><%@ Register Assembly="FredCK.FCKeditorV2" Namespace="FredCK.FCKeditorV2" TagPrefix="FCKeditorV2" %>
<%@ Page Title="" Language="C#" ... %>
<asp:Content ID="Content1" ContentPlaceHolderID="MainContent" runat="server">
<h2>Create a new piece</h2>
<form id="form1" runat="server">
<FCKeditorV2:FCKeditor ID="FCKeditor1" runat="server">
</FCKeditorV2:FCKeditor>
<input id="Submit1" type="submit" value="Submit" runat="server" />
</form>
</asp:Content>
</code></pre>
http://stackoverflow.com/questions/300424/how-do-i-display-html-stored-in-a-database-from-an-asp-net-mvc-view1How do I display HTML stored in a database from an ASP.NET MVC view?Jedidja2008-11-18T22:43:41Z2009-03-17T19:55:37Z
<p>I have HTML code emitted by FCKEditor stored in a database and would like to display (well render) it onto a view. So, for instance, something stored as:</p>
<pre><code>&lt;&gt;pre&lt;&gt;This is some sample test&lt;&gt;pre&lt;/&gt
</code></pre>
<p>Will be displayed to the user as:</p>
<pre><code>This is some sample text
</code></pre>
<p>(With the appropriate style for preformatted-text)</p>
<p>The view already has the required string to display from <code>ViewData</code>, I'm just not sure what the best way to show it to the user is.</p>
http://stackoverflow.com/questions/439855/how-do-you-unit-test-the-database-schema2How do you (Unit) Test the database schema?Jedidja2009-01-13T17:08:08Z2009-02-06T22:02:49Z
<p>When there are a number of people working on a project, all of who could alter the database schema, what's the simplest way to unit test / test / verify it? The main suggestion we've had so far is to write tests for each table to verify column names, constraints, etc.</p>
<p>Has anyone else done anything similar / simpler? We're using C# with SQL Server, if that makes any real difference.</p>
<p>Updates:</p>
<ul>
<li>The segment of the project we're working on is using SSIS packages to do the bulk of the work so there is very little C# code to write unit tests agains.</li>
<li>The code for creating tables / stored procedures is spread across SQL files. Because of the build system, we could maintain a separate VS DB project file as well, but I'm not sure how that would help us verify the schema either.</li>
</ul>
http://stackoverflow.com/questions/378524/how-do-i-create-a-regex-to-ensure-a-word-is-made-up-only-of-given-single-letters2How do I create a regex to ensure a word is made up only of given single letters and letter groups?Jedidja2008-12-18T17:14:59Z2008-12-20T03:42:49Z
<p>I'm trying to create a Regex usuable in C# that will allow me to take a list of single letters and/or letter groups and ensure that a word is only comprised of items from that list. For instance:</p>
<ul>
<li>'a' would match 'a', 'aa', 'aaa', but not 'ab'</li>
<li>'a b' would match 'a', 'ab', 'abba', 'b', but not 'abc'</li>
<li>'a b abc' would match 'a', 'ab', 'abc', 'aabc', 'baabc', but not 'ababac'</li>
</ul>
<p>I thought something of the form</p>
<pre><code>(a|b|abc)*
</code></pre>
<p>would work, but it incorrectly matches the last term. Here's the code I'm testing with:</p>
<pre><code>[Fact]
public void TestRegex()
{
Regex regex = new Regex("(a|b|abc)*");
regex.IsMatch("a").ShouldBeTrue();
regex.IsMatch("b").ShouldBeTrue();
regex.IsMatch("abc").ShouldBeTrue();
regex.IsMatch("aabc").ShouldBeTrue();
regex.IsMatch("baabc").ShouldBeTrue();
// This should not match ... I don't think anyway
regex.IsMatch("ababac").ShouldBeFalse();
}
</code></pre>
<p>I have a pretty basic understanding of regex, so apologies if I'm missing something obvious here :)</p>
<p><strong>Update</strong>
<em>I don't understand why your counter-example is a counter-example : ababac = a b a bac. cCould you clarify ?</em></p>
<p>I only want to use 'a', 'b', and 'abc' - 'bac' would be a completely different term.</p>
<p>Let me give another example: Using 'ba' and 't', I could match the word 'bat', but not 'tab'. The order of the letters inside the letter groups is important.</p>
<p>(Tests with Diadistis' solution)</p>
<pre><code> [Fact]
public void TestRegex()
{
Regex regex = new Regex(@"\A(?:(e|l|ho)*)\Z");
regex.IsMatch("e").ShouldBeTrue();
regex.IsMatch("l").ShouldBeTrue();
regex.IsMatch("ho").ShouldBeTrue();
regex.IsMatch("elho").ShouldBeTrue();
regex.IsMatch("hole").ShouldBeTrue();
regex.IsMatch("holle").ShouldBeTrue();
regex.IsMatch("hello").ShouldBeFalse();
regex.IsMatch("hotel").ShouldBeFalse();
}
</code></pre>
http://stackoverflow.com/questions/329447/in-asp-net-mvc-how-do-i-get-the-mangled-name-of-a-control-when-a-form-is-submitt2In ASP.NET MVC, how do I get the mangled name of a control when a form is submitted?Jedidja2008-11-30T21:55:34Z2008-12-01T12:27:50Z
<p>I've got a form inside an <code><asp:Content></code> block that is being submitted to a controller. For one of the controls, I need to get some information from it directly that won't happen automatically by calling <code>UpdateModel()</code>.</p>
<p>However, in the <code>Request.Form</code> dictionary, the control's id is of the mangled form <code>ctl00$ContentPlaceHolder${name}</code>. Given that I'm in the controller, and know nothing about the view at this point, what is the proper way of accessing the control's data?</p>
<p>Here is what the view (.aspx) looks like (removed extraneous code):</p>
<pre><code><%@ Register Assembly="FredCK.FCKeditorV2" Namespace="FredCK.FCKeditorV2" TagPrefix="FCKeditorV2" %>
<%@ Page Title="" Language="C#" MasterPageFile="~/Views/Shared/Admin.Master" AutoEventWireup="true"
CodeBehind="...." Inherits="...." %>
<asp:Content ID="Content3" ContentPlaceHolderID="ContentPlaceHolder" runat="server">
<form id="form1" action="..." method="post">
<FCKeditorV2:FCKeditor ID="AuthorBio" runat="server" Height="250"/>
<input type="submit" value="Save" />
</form>
</asp:Content>
</code></pre>
<p>The control named <code>AuthorBio</code> shows up in the controller in the <code>Form.Request</code> dictionary as <code>ctl00$ContentPlaceHolder$AuthorBio$</code></p>
<p>The reason I'm trying to use the 3rd-party control with "runat-server" is because I need to set the editor's Value as follows: </p>
<pre><code>AuthorBio.Value = HttpUtility.HtmlDecode(ViewData.Model.Bio);
</code></pre>
<p>Trying to do this in the .aspx file in the FCKeditorV2 tag doesn't work. (Or maybe I'm missing something there too)</p>
<p>Ok, so the key is to use the JavaScript version of the editor rather than the wrapped control. There was also a handy comment that I'm going to include here to accompany the accepted answer:</p>
<blockquote>
<p>you should use the javascript version
of the FCKEditor control not the .NET
custom control as the .NET custom
control was built on the WebForms
paradigm. The JS version should have a
hidden field for the value of the Html
which you can access in your
controller using Request["FieldName"]</p>
</blockquote>
http://stackoverflow.com/questions/284921/is-dependency-injection-possible-with-a-wpf-appliction/284926#2849265Answer by Jedidja for Is Dependency Injection possible with a WPF appliction?Jedidja2008-11-12T18:46:25Z2008-11-12T18:46:25Z<p>You should take a look at Prism from the p&p team. Here is the site on <a href="http://www.codeplex.com/CompositeWPF" rel="nofollow" title="Codeplex">Codeplex</a></p>
http://stackoverflow.com/questions/47711/how-do-you-determine-how-far-to-normalize-a-database/280323#2803230Answer by Jedidja for How do you determine how far to normalize a database?Jedidja2008-11-11T08:23:01Z2008-11-11T08:23:01Z<p>The original poster never described in what situation the database will be used. If it's going to be any type of data warehousing project where at some point you will need cubes (OLAP) processing data for some front-end, it would be wiser to start off with star schema (fact tables + dimension) rather than looking into normalization. The Kimball books will be of great help in this case.</p>
http://stackoverflow.com/questions/255448/what-is-the-best-way-to-store-and-display-markdown-entered-text3What is the best way to store and display markdown-entered text?Jedidja2008-11-01T03:00:01Z2008-11-05T10:46:35Z
<p>I've noticed that the wmd editor can either output HTML or markdown. Does it make more sense to store the user input (in a database) as markdown or HTML? If as markdown, what is the best way to display it on a webpage later on (any examples would be greatly appreciated).</p>
<p>Given that the recommendation is store it as markdown, are there any standard converters / stylesheets / anything else to actually display it afterwards?</p>
http://stackoverflow.com/questions/1625671/what-is-the-problem-with-a-get-json-requestComment by Jedidja on What is the "problem" with a GET JSON request?Jedidja2009-12-17T12:34:01Z2009-12-17T12:34:01ZYes, it was added in v2. At least, the 1.0 docs here (<a href="http://msdn.microsoft.com/en-us/library/system.web.mvc.jsonresult_members.aspx" rel="nofollow">msdn.microsoft.com/en-us/library/…</a>) do not list it.http://stackoverflow.com/questions/921670/browser-dependent-problem-rendering-wmd-with-showdown-js/922886#922886Comment by Jedidja on Browser dependent problem rendering WMD with Showdown.js?Jedidja2009-12-16T18:09:22Z2009-12-16T18:09:22ZWow that was annoying until I found this answer. Erik is correct, and if you just want to change a single element, something like this will work:
$("#adminContent").html(sd.makeHtml($("pre", $("#adminContent")).text()));http://stackoverflow.com/questions/1897555/what-is-the-equivalent-of-memset-in-c/1897564#1897564Comment by Jedidja on What is the equivalent of memset in C#?Jedidja2009-12-15T12:56:26Z2009-12-15T12:56:26ZTotally agree Mark and thanks for the comments. I should have been clearer from the start for my reasons behind the question.http://stackoverflow.com/questions/1867329/does-t4mvc-work-with-visual-studio-2010-beta-2-and-net-4/1867360#1867360Comment by Jedidja on Does T4MVC work with Visual Studio 2010 Beta 2 and .Net 4?Jedidja2009-12-15T12:55:20Z2009-12-15T12:55:20ZDelete all the .generated.cs files, do a build, and then open up the .tt file and hit save (which should regenerate everything then). Also it looks like the author himself (David Ebbo) is here on SO so perhaps if you post some more info he can help out.http://stackoverflow.com/questions/1897555/what-is-the-equivalent-of-memset-in-c/1901911#1901911Comment by Jedidja on What is the equivalent of memset in C#?Jedidja2009-12-14T16:42:58Z2009-12-14T16:42:58ZYes - great observation and actually we are using Parallel.For elsewhere for image processing code.http://stackoverflow.com/questions/1897555/what-is-the-equivalent-of-memset-in-cComment by Jedidja on What is the equivalent of memset in C#?Jedidja2009-12-14T16:39:15Z2009-12-14T16:39:15ZEric - it was just a curiosity if there was a framework method similar to memset I didn't know about. A loop does work just fine, although I might try to benchmark Juliet's parallel option.http://stackoverflow.com/questions/1897555/what-is-the-equivalent-of-memset-in-c/1897578#1897578Comment by Jedidja on What is the equivalent of memset in C#?Jedidja2009-12-13T21:13:52Z2009-12-13T21:13:52ZImporting memset? Interesting..will have to give that a shot.http://stackoverflow.com/questions/1897555/what-is-the-equivalent-of-memset-in-cComment by Jedidja on What is the equivalent of memset in C#?Jedidja2009-12-13T21:13:07Z2009-12-13T21:13:07ZGood points about testing the performance. Will definitely do that :)http://stackoverflow.com/questions/1897555/what-is-the-equivalent-of-memset-in-cComment by Jedidja on What is the equivalent of memset in C#?Jedidja2009-12-13T20:12:56Z2009-12-13T20:12:56ZNote that for bytes, Mark's answer needs a slight modification.
byte[] image = Enumerable.Repeat((byte)255, [....]).ToArray();
Otherwise it will assume you want int[] returned.http://stackoverflow.com/questions/1897555/what-is-the-equivalent-of-memset-in-c/1897564#1897564Comment by Jedidja on What is the equivalent of memset in C#?Jedidja2009-12-13T20:10:59Z2009-12-13T20:10:59ZThanks :) So not what I would have crossed my mind for this task..http://stackoverflow.com/questions/1897555/what-is-the-equivalent-of-memset-in-c/1897565#1897565Comment by Jedidja on What is the equivalent of memset in C#?Jedidja2009-12-13T20:06:39Z2009-12-13T20:06:39ZThat would be correct :) I'm working with images so the byte[] is several hundred thousand/million items large.http://stackoverflow.com/questions/293281/why-wont-visual-studio-2008-create-mdf-files-with-sql-server-2008-developer-insComment by Jedidja on Why won't Visual Studio 2008 create .mdf files with SQL Server 2008 Developer installed?Jedidja2009-12-13T14:46:43Z2009-12-13T14:46:43ZI don't believe so; he is still talking about using SQL Server Express where I was describing a situation with SQL Server Developer edition. GalacticCowboy's explanation is still valid, as far as I know.http://stackoverflow.com/questions/1883647/why-has-ctrlf-find-in-vs2010-stopped-automatically-searching-for-the-currently/1886488#1886488Comment by Jedidja on Why has Ctrl+F (Find) in VS2010 stopped automatically searching for the currently selected text?Jedidja2009-12-11T14:48:38Z2009-12-11T14:48:38ZI don't understand how it got disabled...and now it is magically re-enabled :)http://stackoverflow.com/questions/1883647/why-has-ctrlf-find-in-vs2010-stopped-automatically-searching-for-the-currentlyComment by Jedidja on Why has Ctrl+F (Find) in VS2010 stopped automatically searching for the currently selected text?Jedidja2009-12-11T14:47:41Z2009-12-11T14:47:41ZYes, very handy too :)http://stackoverflow.com/questions/1884522/stylecop-vs-fxcop/1884561#1884561Comment by Jedidja on Stylecop vs FXcopJedidja2009-12-10T22:36:47Z2009-12-10T22:36:47ZYes, the previous answers comparing the two are wrong on all counts. StyleCop and FxCop perform two very different tasks, and it is worth investigating the value each provides on your codebase and why you should run them.