User BenAlabaster - Stack Overflowmost recent 30 from stackoverflow.com2009-11-30T20:23:43Zhttp://stackoverflow.com/feeds/user/40650http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1821327/get-the-slope-from-one-point-and-an-angle-in-degrees/1821603#18216030Answer by BenAlabaster for Get the slope from one point and an angle in degrees.BenAlabaster2009-11-30T18:41:38Z2009-11-30T18:41:38Z<p>Assuming H = Hypotenuse (10 in your example), this is the formula for your slope:</p>
<pre><code>Y2 = 10(Sin(A)) + Y1
X2 = Sqrt((H^2)-(Y2^2)) + X1
</code></pre>
<p>So now you've got</p>
<pre><code>(180, 200) -> (X2, Y2)
</code></pre>
<p>Where X2, Y2 will vary depending on the values of A and H</p>
<p>To check our calculation - A (as entered by the user) can be calculated using the slope equation replacing the X1, X2, Y1 and Y2 values with the original input and resulting output.</p>
<pre><code>A = InvTan((Y2 - Y1) / (X2 - X1))
= InvTan((Y2 - 200) / (X2 - 180))
</code></pre>
http://stackoverflow.com/questions/822145/follow-the-code-to-india-has-anyone-done-it/822183#82218315Answer by BenAlabaster for Follow the code - to India ? Has anyone done itBenAlabaster2009-05-04T21:37:21Z2009-11-30T15:52:57Z<p>I did a job in Denmark a while back now, it was a little odd at first, but I grew to actually kind of like it. It's clean, the people are friendly, in some cases disconcertingly open. They are also rapidly becoming one of the leading forces in environmental concerns and engineering and they have amazing social programmes. It could actually be a very exciting time to pursue a position there. You're still close enough to home to hop on a plane for the weekend to go and see family and friends; and Europe is <em>still</em> [and will be for the foreseeable future] the Mecca of cheap international travel. If you decide after work on a Friday to take off, you can still be home in Ireland quick enough to go out with the lads for a pint before last call - and still have change from your last hour's pay.</p>
<p>Also, the code may seem to be coming out of India, but I've worked on some projects where I've inherited code from India [no offence to the <em>good</em> programmers out there], but the large majority of it is complete garbage.</p>
<p>I don't think this is at all the fault of the quality of programmers out there, but I do think it has a lot to do with cultural and language barriers between project architects being from one country/continent/hemisphere and the coders being from another. I think this would be reflected equally if coding was being outsourced from India to the U.S. When you separate the coders from architects you will always have these problems, I can't see a way they can be avoided.</p>
<p>It could be very eye opening, culturally satisfying and a great way to see that part of the world, but I would definitely recommend doing a <em>LOT</em> of research before you jump into something like that or you could find yourself thousands of miles from home segregated from friends and family and not in the position you'd hoped for.</p>
<p>I moved from the UK to Canada ten years ago where they speak English [allegedly] and thought it would be a breeze. Everyone laughs when I tell of the huge problems I found with the language/cultural barrier here - it's easier now after this long, but even now I sometimes get stuck. How do you explain ideas/concepts/things where you can only explain using other ideas/concepts/things they've <em>also</em> never heard of? Simple [if a little silly] example to illustrate the point: How do you explain Marmite to someone whose never heard of either that or Vegemite or pickle - the Branston variety? The food ones are the most obvious. </p>
<p>Technology here is different too, half of my DVD collection didn't work, and try explaining to the 16 year old in the electronic store what region encoding is, trying to figure out how to make your DVD player region free, or using your old English one and running it through a PAL/NTSC converter. If your eyes just glazed over, don't worry - the kid in the electronic store's did too. If you can't explain technology to a guy that's supposed to understand technology, you know it's a lost cause.</p>
<p>People who grow up in major cultural centres - Europe, the UK, Hong Kong, Kuala Lumpur, Singapore etc who are used to being able to place their hands on whatever they want at short notice will likely find it [as I did] extremely frustrating trying to get things done with any sense of urgency. A week next Tuesday is <em>not</em> an acceptable answer to "When can I get my toilet unblocked?"! They also have different expectations on standards of living and what constitutes acceptable standards, this stems from personal comfortabilities, values and priorities. When you're ripped out of your comfort zone, those things that you once never gave a second thought or took for granted can come crashing down around you in a completely unexpected fashion.</p>
<p>Living in a country is hugely different than visiting there. When you're visiting, you're not really exposed to anything that affects those that live there on a day to day basis. Government, local news, garbage pickup etc. How many countries have you visited and gone away knowing who's running for local office, rental laws, how many people got held hostage in the local school today, why didn't they take your garbage but they took everyone else's on the street? What do you mean there's no garbage tickets? What the hell are <em>they</em> and where do I get them? I have to <em>pay</em> for those?! Why haven't I received any mail since I arrived? What the heck is a communal mailbox? What does that diamond on the road mean and why are you giving me a ticket for driving in that lane?! Why does everyone drive so slow in the fast lane? Why doesn't anyone use their indicators? Why can't I get my car in manual? What do you mean what is "manual"? The one where <em>I</em> change the gears, the opposite of automatic! That's standard? Unless I missed the definition of the word "standard", doesn't that mean: all cars should have that with that unless I specify otherwise? Shouldn't "standard" mean automatic then?</p>
<p>I appear to be going on a rant, so I'll stop there. Needless to say, things <em>will</em> come up that you would never even have thought to question before you arrive to live in another country. It <em>is</em> part of the fun of moving there, but be prepared for endless frustration and being the butt of everyone's jokes while you find your feet. The problem can only be ten-fold in a country where you don't share first languages and whose culture is so <em>vastly</em> different than your own.</p>
<p>Not warning you off by any stretch, I'm sure it would be fantastically exciting. I'm just giving you a heads up, it's not as simple as just moving - even if you already have the job lined up.</p>
<p>Another word of warning: Due to the vast difference in pay you can expect if you were to go to India - I would think it would be wise to make sure you have a ticket out of there before you leave because trying to afford the intercontinental flight back to the UK on the wage you'd receive in India would be extremely difficult. Always think about an exit strategy in situations like this before you jump in.</p>
http://stackoverflow.com/questions/1810785/why-cant-i-pass-a-property-or-indexer-as-a-ref-parameter-when-net-reflector-sho5Why can't I pass a property or indexer as a ref parameter when .NET reflector shows that it's done in the .NET Framework?BenAlabaster2009-11-27T22:08:58Z2009-11-27T22:43:08Z
<p>Okay, I will cut and paste from .NET reflector to demonstrate what I'm trying to do:</p>
<pre><code>public override void UpdateUser(MembershipUser user)
{
//A bunch of irrelevant code...
SecUtility.CheckParameter(ref user.UserName, true, true, true, 0x100, "UserName");
//More irrelevant code...
}
</code></pre>
<p>This line of code comes right out of System.Web.Security.SqlMembershipProvider.UpdateUser (System.Web.dll v2.0.50727) in the .NET Framework.</p>
<p>The SecUtility.CheckParameter requires a reference value as the first parameter, to which they're passing a property of the user passed in as the argument.</p>
<p>The definition of the CheckParameter code is:</p>
<pre><code>internal static void CheckParameter(ref string param, bool checkForNull, bool checkIfEmpty, bool checkForCommas, int maxSize, string paramName)
{
//Code omitted for brevity
}
</code></pre>
<p>Everything it's doing makes sense - on paper... so I knock up a quick little prototype for somewhere I'd like to use something similar:</p>
<pre><code>public class DummyClass
{
public string ClassName{ get; set; }
}
public class Program
{
private static DoSomething(ref string value)
{
//Do something with the value passed in
}
public static Main(string[] args)
{
DummyClass x = new DummyClass() { ClassName = "Hello World" };
DoSomething(ref x.ClassName); //This line has a red squiggly underline
//under x.ClassName indicating the
//error provided below.
}
}
</code></pre>
<p>This code won't compile - the error shows as:</p>
<pre><code>"A property or indexer may not be passed as an out or ref parameter"
</code></pre>
<p>Fair enough... but why won't my code allow me to do something that appears to be in the .NET Framework code base? Is this an error with the way .NET Reflector is interpreting the DLL or is this an error with the way I'm interpreting their code?</p>
http://stackoverflow.com/questions/1718463/what-are-the-real-world-pros-and-cons-of-each-of-the-major-mocking-frameworks7What are the real-world pros and cons of each of the major mocking frameworks?BenAlabaster2009-11-11T22:18:55Z2009-11-26T09:55:05Z
<blockquote>
<p>see also "<a href="http://stackoverflow.com/questions/642620/what-should-i-consider-when-choosing-a-mocking-framework-for-net">What should I consider when
choosing a mocking framework for
.Net</a>"</p>
</blockquote>
<p>I'm trying to decide on a mocking framework to use on a .NET project I've recently embarked on. I'd like to speed my research on the different frameworks. I've recently read this blog post <a href="http://codevanced.net/post/Mocking-frameworks-comparison.aspx" rel="nofollow">http://codevanced.net/post/Mocking-frameworks-comparison.aspx</a> and wondered if any of the StackOverflow audience has anything to add in the way of real-world advantages and caveats to the frameworks.</p>
<p>Could people could list the pros/cons of the mocking frameworks they either currently use or have investigated for their own use on .NET projects. I think this would be not only a help to me to decide for my current project, but it will help others make more informed decisions when picking the correct framework for their situation. I'm not an expert on any of the frameworks but I would like to get arguments for and against the major frameworks I've come across:</p>
<ul>
<li>RhinoMocks</li>
<li>Moq</li>
<li>TypeMock Isolator</li>
<li>NMock</li>
<li>Moles</li>
</ul>
<p>And other usable alternatives that I've missed. I'd also like insights from users that have switched or stopped using products because of issues.</p>
http://stackoverflow.com/questions/1800013/does-this-code-prevent-sql-injection/1800447#18004479Answer by BenAlabaster for Does this code prevent SQL injection?BenAlabaster2009-11-25T22:44:29Z2009-11-26T00:33:47Z<p>In answer to your direct question: Does this code prevent SQL injection: No</p>
<p>Here's the proof - push this string through the PrepareString method:</p>
<pre><code>Dim input = "'" & Chr(8) & "; Drop Table TableName; - " & Chr(8) & "-"
Dim output = PrepareString(input)
Console.WriteLine(input)
Console.WriteLine(output)
</code></pre>
<p>I modified the GetRecord method you posted to return the fully prepared SQL string rather than get the record from the database:</p>
<pre><code>Console.WriteLine(GetRecord(output))
</code></pre>
<p>And this is the output</p>
<pre><code>Input = ; Drop Table TableName; --
Output = '; Drop Table TableName; --
Query = SELECT * FROM TableName WHERE Key = ''; Drop Table TableName; --'
</code></pre>
<p>Add 1 extra line of code:</p>
<pre><code>My.Computer.Clipboard.SetText(input)
</code></pre>
<p>And you've got the string you need copied right to your clipboard to paste into your input field on the website to complete your SQL injection:</p>
<pre><code>'; Drop Table TableName; - -
</code></pre>
<p>[Noting that the control characters have been omitted from the post output by StackOverflow, so you'll have to follow the code example to create your output]</p>
<p>After the PrepareString method is run, it will have the exact same output - the Chr(8) ASCII code is the backspace which will remove the extra "'" that you're appending to mine which will close your string and then I'm free to add whatever I want on the end. Your PrepareString doesn't see my -- because I'm actually using - - with a backspace character to remove the space.</p>
<p>The resulting SQL code that you're building will then execute my Drop Table statement unhindered and promptly ignore the rest of your query.</p>
<p>The fun thing about this is that you can use non-printable characters to basically bypass any character check you can invent. So it's safest to use parameterized queries (which isn't what you asked, but is the best path to avoid this).</p>
http://stackoverflow.com/questions/1793357/do-value-types-integer-decimal-boolean-etc-inherit-from-object/1793370#17933704Answer by BenAlabaster for Do value types (Integer, Decimal, Boolean, etc...) inherit from Object?BenAlabaster2009-11-24T22:29:06Z2009-11-24T22:45:35Z<p>According to <a href="http://www.red-gate.com/products/reflector/" rel="nofollow">Red Gate's .NET Reflector</a> they inherit (indirectly) from object.</p>
<ul>
<li>Object -> ValueType -> int32</li>
<li>Object -> ValueType -> boolean</li>
<li>Object -> ValueType -> decimal</li>
<li>Object -> ValueType -> byte</li>
<li>Object -> ValueType -> char</li>
<li>Object -> ValueType -> uint32</li>
</ul>
<p>I haven't checked other types, but it would seem they do. I would highly recommend getting Reflector - it's a free download and it will help you answer countless other questions about how various parts of the .NET framework are coded. Some days I wonder how I'd live without it. </p>
<p>The greatest thing about Reflector is that you don't need to rely on someone's potentially outdated (or incorrect or badly interpreted) writing to discover what is <em>really</em> going on inside the .NET Framework - including that on MSDN - not even the almighty Microsoft is infallible. The documentation is only as current as its last modification. Getting your answers directly from the code is the least likely to be incorrect - assuming of course that you're able to correctly interpet said code ;)</p>
http://stackoverflow.com/questions/1792970/fogbugz-on-demand-online-source-control-at-low-no-cost/1793058#17930582Answer by BenAlabaster for FogBugz On Demand + online source control at low/no cost?BenAlabaster2009-11-24T21:32:52Z2009-11-24T21:32:52Z<p>I'm currently working with another developer and I have an SVN server set up at home. I've got it hooked up to WebSVN so that we can access it through port 80 and all works like a charm. We've got it hooked into FogBugz on Demand.</p>
<p>You should be able to use a service like DynDNS (or similar) to keep them linked if you don't have a static IP address. I've got a static IP which alleviates this need, but it's free and allows access to my SVN repo from the office or to the other developer I'm working with.</p>
<p>I can't speak for online services though... I haven't used any of them. I know this isn't strictly the answer you're looking for, but thought I'd throw it out there because of the fact that it would be free.</p>
http://stackoverflow.com/questions/1787498/are-there-any-good-resources-on-real-world-practical-uses-of-programming-theory5Are there any good resources on real world practical uses of programming theory?BenAlabaster2009-11-24T02:57:51Z2009-11-24T03:28:41Z
<p>Can anyone recommend any good material that seeks to provide a <em>real world perspective</em> on programming theories? I'm speaking from my perspective as a long time professional software engineer slash ex-cs student. When I say real world, I mean stuff like "Why should I use interfaces? Doesn't that go against DRY principles? It just seems like extra needless meta code." (which was the implication of another question that came up today.) It seems that the professor of this student's class hadn't given the obvious business reason for using them as "You use this so the main part of your application isn't dependent upon a specific implementation one or more of your components - for instance, a data store which may be replaced or upgraded without affecting the rest of your application or a plugin to an external device which may be replaced when a better one comes along."</p>
<p>I've noticed a tendency for students to reach key points of their CS courses and start asking questions on various Q&A sites about why they should use a certain paradigm, they understand the what and the how, but they're clueless as to why it's actually useful and go through the rest of their course thinking "okay, so what?" All too often classes are very academic and don't have any real world context. Having been there myself, I wish I'd had a resource like StackOverflow when I was at school.</p>
<p>I'm hoping that this question will provide students with a list of useful reading material that will help provide real world context to various programming paradigms and patterns they're learning in class [or otherwise] and helps them to grasp when and why certain patterns should be looked to in real world situations.</p>
http://stackoverflow.com/questions/1785862/what-is-the-value-of-interfaces/1786816#17868163Answer by BenAlabaster for What is the value of Interfaces?BenAlabaster2009-11-23T23:34:24Z2009-11-23T23:53:25Z<p>I was going to leave George to point out that you can now consume the interface rather than the concrete class. It seems like everyone here understands what interfaces are and how to define them, but most have failed to explain the key point of them in a way a student will easily grasp - and something that most courses fail to point out instead leaving you to either grasp at straws or figure it out for yourself so I'll attempt to spell it out in a way that doesn't require either. So hopefully you won't be left thinking "so what, it still seems like a waste of time/effort/code."</p>
<pre><code>public interface ICar
{
public bool EngineIsRunning{ get; }
public void StartEngine();
public void StopEngine();
public int NumberOfWheels{ get; }
public void Drive(string direction);
}
public class SportsCar : ICar
{
public SportsCar
{
Console.WriteLine("New sports car ready for action!");
}
public bool EngineIsRunning{ get; protected set; }
public void StartEngine()
{
if(!EngineIsRunning)
{
EngineIsRunning = true;
Console.WriteLine("Engine is started.");
}
else
Console.WriteLine("Engine is already running.");
}
public void StopEngine()
{
if(EngineIsRunning)
{
EngineIsRunning = false;
Console.WriteLine("Engine is stopped.");
}
else
Console.WriteLine("Engine is already stopped.");
}
public int NumberOfWheels
{
get
{
return 4;
}
}
public void Drive(string direction)
{
if (EngineIsRunning)
Console.WriteLine("Driving {0}", direction);
else
Console.WriteLine("You can only drive when the engine is running.");
}
}
public class CarFactory
{
public ICar BuildCar(string car)
{
switch case(car)
case "SportsCar" :
return Activator.CreateInstance("SportsCar");
default :
/* Return some other concrete class that implements ICar */
}
}
public class Program
{
/* Your car type would be defined in your app.config or some other
* mechanism that is application agnostic - perhaps by implicit
* reference of an existing DLL or something else. My point is that
* while I've hard coded the CarType as "SportsCar" in this example,
* in a real world application, the CarType would not be known at
* design time - only at runtime. */
string CarType = "SportsCar";
/* Now we tell the CarFactory to build us a car of whatever type we
* found from our outside configuration */
ICar car = CarFactory.BuildCar(CarType);
/* And without knowing what type of car it was, we work to the
* interface. The CarFactory could have returned any type of car,
* our application doesn't care. We know that any class returned
* from the CarFactory has the StartEngine(), StopEngine() and Drive()
* methods as well as the NumberOfWheels and EngineIsRunning
* properties. */
if (car != null)
{
car.StartEngine();
Console.WriteLine("Engine is running: {0}", car.EngineIsRunning);
if (car.EngineIsRunning)
{
car.Drive("Forward");
car.StopEngine();
}
}
}
</code></pre>
<p>As you can see, we could define any type of car, and as long as that car implements the interface ICar, it will have the predefined properties and methods that we can call from our main application. We don't need to know what type of car is - or even the type of class that was returned from the CarFactory.BuildCar() method. It could return an instance of type "DragRacer" for all we care, all we need to know is that DragRacer implements ICar and we can carry on life as normal.</p>
<p>In a real world application, imagine instead IDataStore where our concrete data store classes provide access to a data store on disk, or on the network, some database, thumb drive, we don't care what - all we would care is that the concrete class that is returned from our class factory implements the interface IDataStore and we can call the methods and properties without needing to know about the underlying architecture of the class.</p>
<p>Another real world implication (for .NET at least) is that if the person who coded the sports car class makes changes to the library that contains the sports car implementation and recompiles, and you've made a hard reference to their library you will need to recompile - whereas if you've coded your application against ICar, you can just replace the DLL with their new version and you can carry on as normal.</p>
http://stackoverflow.com/questions/1783310/adding-line-break-in-c-code-behind-page/1783330#17833301Answer by BenAlabaster for Adding line break in C# Code behind pageBenAlabaster2009-11-23T14:10:00Z2009-11-23T14:18:24Z<p>In C# there's no 'new line' character like there is in VB.NET. The end of a logical 'line' of code is denoted by a ';'. If you wish to break the line of code over multiple lines, just hit the carriage return (or if you want to programmatically add it (for programmatically generated code) insert 'Environment.NewLine' or '\r\n'.</p>
<p><strong>Edit:</strong> In response to your comment: If you wish to break a string over multiple lines (i.e. programmatically), you should insert the Environment.NewLine character. This will take the environment into account in order to create the line ending. For instance, many environments, including Unix/Linux only use a NewLine character (\n), but Windows uses both carriage return and line feed (\r\n). So to break a string you would use:</p>
<pre><code>string output = "Hello this is my string\r\nthat I want broken over multiple lines."
</code></pre>
<p>Of course, this would only be good for Windows, so before I get flamed for incorrect practice you should actually do this:</p>
<pre><code>string output = string.Format("Hello this is my string{0}that I want broken over multiple lines.", Environment.NewLine);
</code></pre>
<p>Or if you want to break over multiple lines in your IDE, you would do:</p>
<pre><code>string output = "My string"
+ "is split over"
+ "multiple lines";
</code></pre>
http://stackoverflow.com/questions/1783286/with-asp-net-webform-how-to-have-many-login-url/1783313#17833130Answer by BenAlabaster for with asp.net webform, how to have many login url?BenAlabaster2009-11-23T14:07:52Z2009-11-23T14:07:52Z<p>Can you define your concept for wanting this? This defines the page you wish your visitor to be taken to if they are not yet logged in. If they are logged in, they would not be taken to this page. Given that your visitor can only be on one page at a time, having multiple pages seems like in impossibility... unless you're looking for some kind of hierarchy such that if they're not logged in with a specific role they get transported to a different page instead of the standard login.</p>
<p>Either I'm misunderstanding your intention for wishing to do this or you are misunderstanding how this mechanism works and what it is used for.</p>
http://stackoverflow.com/questions/1771510/why-does-this-if-statement-return-false/1771573#17715732Answer by BenAlabaster for Why does this IF statement return false?BenAlabaster2009-11-20T16:17:27Z2009-11-20T16:17:27Z<p>I've split the BothBoxesEmpty out to a separate variable to make it more readable... all the brackets become an unreadable mess otherwise. You can merge the two statements if you choose:</p>
<pre><code>bool BothBoxesEmpty = string.IsNullOrEmpty(TextBox1.Text.Trim()) &&
string.IsNullOrEmpty(TextBox2.Text.Trim());
if (!BothBoxesEmpty)
{
/* Do your stuff */
}
</code></pre>
<p>You could equally easily replace the string.IsNullOrEmpty with <code>TextBox1.Text.Trim() == string.Empty</code> as <code>TextBox1.Text</code> will always return a string (empty or not) and will never return <code>null</code>.</p>
http://stackoverflow.com/questions/1771293/can-a-func-call-itself-recursively3Can a Func<> call itself recursively?BenAlabaster2009-11-20T15:36:48Z2009-11-20T16:06:16Z
<p>I was playing around with a <a href="http://stackoverflow.com/questions/392788/code-golf-christmas-edition-how-to-print-out-a-christmas-tree-of-height-n">code golf question yesterday for building a christmas tree</a> which came around last year and I threw together a quick recursive algorithm to do the job:</p>
<pre><code>static string f(int n, int r)
{
return "\n".PadLeft(2 * r, '*').PadLeft(n + r)
+ (r < n ? f(n, ++r) : "*".PadLeft(n));
}
</code></pre>
<p>I got to wondering if I could do the same thing with a Func:</p>
<pre><code>Func<int,int,string> f = (n, r) => {
return "\n".PadLeft(2 * r, '*').PadLeft(n + r)
+ (r < n ? f(n, ++r) : "*".PadLeft(n));
};
</code></pre>
<p>This <em>would</em> do the job except that the recursive part doesn't recognize that the call to f is actually a call to itself. This would lead me to conclude that a Func <em>can't</em> call itself recursively - but I wonder if I'm drawing false conclusions or if it can be done but requires a different approach.</p>
<p>Any ideas?</p>
http://stackoverflow.com/questions/392788/code-golf-christmas-edition-how-to-print-out-a-christmas-tree-of-height-n/1767711#17677111Answer by BenAlabaster for Code Golf Christmas Edition: How to print out a Christmas tree of height NBenAlabaster2009-11-20T01:07:53Z2009-11-20T01:36:24Z<p><strong>C# - Recursion</strong></p>
<pre><code>using System;
class A
{
static string f(int n, int r)
{
return "\n".PadLeft(2 * r, '*').PadLeft(n + r)
+ (r < n ? f(n, ++r) : "*".PadLeft(n));
}
static void Main(string[] a)
{
Console.WriteLine(f(int.Parse(a[0]), 1));
}
}
</code></pre>
<p><strong>177 chars</strong> (not as short the other C# method posted, but a different way of doing it).</p>
http://stackoverflow.com/questions/1758205/can-i-access-my-controller-action-verb-from-my-derived-authorizeattribute0Can I access my controller/action/verb from my derived AuthorizeAttribute?BenAlabaster2009-11-18T18:49:47Z2009-11-18T18:59:01Z
<p>As a theoretical exercise to help me learn the ins and outs of the membership model with relation to MVC I want to figure out if I can load permissions from an external resource, for the purpose of my prototype I've got a flat file that has a list like so:</p>
<pre><code>Controller1,Method1,Get,Anonymous
Controller1,Method1,Post,User,Administrator
Controller2,Method1,Get,Administrator
Controller2,Method1,Post,Administrator
Controller2,Method2,Get,User,Editor,Administrator
Controller2,Method2,Post,Editor,Administrator
</code></pre>
<p>Which I can parse using regular expressions to give me a list of roles that have permissions for each controller/action/verb combination.</p>
<p>I have my controller action:</p>
<pre><code>[CustomAuthorize]
public ActionResult Index()
{
/* Do stuff */
}
</code></pre>
<p>I also have my custom authorization component:</p>
<pre><code>public class CustomAuthorize : AuthorizeAttribute
{
protected override bool AuthorizeCore(HttpContextBase httpContext)
{
/* How do I access which Controller/Action/Verb fired this? */
}
}
</code></pre>
<p>In order to be able to determine on the fly which roles have access to this controller/action/verb, I need to be able to determine which controller/action/verb called the CustomAuthorize attribute.</p>
<p>I know that I can add properties to my class like so:</p>
<pre><code>public class CustomAuthorize : AuthorizeAttribute
{
public string Controller { get; set; }
public string Action { get; set; }
public string Verb { get; set; }
}
</code></pre>
<p>And then call my attribute using:</p>
<pre><code>[CustomAuthorize(Controller="Home",Action="Index",Verb="Get")]
public ActionResult Index()
{
}
</code></pre>
<p>But this seems like a maintenance headache. It would be nice if I could just use <code>[Authorize]</code> and have my CustomAuthorize.AuthorizeCore method determine which controller/action/verb referenced it from within the AuthorizeCore method.</p>
<p>Is this possible? If so can someone point me in the right direction of information about how I would achieve this?</p>
http://stackoverflow.com/questions/1745017/excel-2007-need-help-creating-a-button-which-takes-the-contents-of-active-works/1745423#17454230Answer by BenAlabaster for EXCEL 2007 - Need Help creating a button which takes the contents of active worksheet and pastes it in a new worksheetBenAlabaster2009-11-16T23:01:00Z2009-11-16T23:01:00Z<p>You should find this method will work in both Excel 2003 and Excel 2007. In your form, add the following method:</p>
<pre><code>Sub CopySheet(WorkSheetName as String)
Dim WrkSht As Worksheet
Set WrkSht = Sheets(WorkSheetName)
WrkSht.Copy After:=Sheets(WorkSheetName)
Set WrkSht = Nothing
End Sub
</code></pre>
<p>From the button click event, call it using:</p>
<pre><code>Sub Button1_Click()
Call CopySheet("WorkSheetToCopyName")
'You could also replace the string name with ActiveSheet if you so wish
End Sub
</code></pre>
<p>This will dump a copy of the worksheet in between the current sheet and the next one. I've tested it in Excel 2003 and Excel 2007 and it works in both. It doesn't give the second one a pretty name sadly - it just gets the same name as the source worksheet with (2) put after it.</p>
<p>All the formatting, protection and formulas are copied across too - it's a carbon copy of the first.</p>
http://stackoverflow.com/questions/1734374/how-do-i-redirect-to-a-not-authorized-page-instead-of-the-login-page-when-the-use/1734735#17347351Answer by BenAlabaster for How do I redirect to a not-authorized page instead of the login page when the user is already logged in?BenAlabaster2009-11-14T16:30:51Z2009-11-14T16:30:51Z<p>You should check out Kazi Manzur Rashid's blog post on custom authorization providers: <a href="http://weblogs.asp.net/rashid/archive/2009/09/06/asp-net-mvc-and-authorization-and-monkey-patching.aspx" rel="nofollow">http://weblogs.asp.net/rashid/archive/2009/09/06/asp-net-mvc-and-authorization-and-monkey-patching.aspx</a>. It can be a pretty complex beast to do it properly. So it comes down to a few options, 2 rather simple ways of doing it "wrong" and one rather complex way of doing it "right". Your call. Either way - it's worth reading the blog post.</p>
http://stackoverflow.com/questions/1655383/how-can-i-attach-a-custom-membership-provider-in-my-asp-net-mvc-application/1665056#16650563Answer by BenAlabaster for How can I attach a custom membership provider in my ASP.NET MVC application?BenAlabaster2009-11-03T03:22:45Z2009-11-12T18:46:51Z<p>Hopefully I can add some additional clarity over the other answers as they really don't explain what's going on which isn't going to help your confusion.</p>
<p>First up, implement your custom provider which from the sound of things you've done already, so I'll just throw up a little code snippet and won't go into any further detail here:</p>
<pre><code>using System.Web.Security;
public class MyCustomMembershipProvider : MembershipProvider
{
public override bool ValidateUser(string username, string password)
{
if (username.Equals("BenAlabaster") && password.Equals("Elephant"))
return true;
return false;
}
/* Override all the other methods required to extend MembershipProvider */
}
</code></pre>
<p>Then you configure your provider in your web.config making sure to populate the attributes that configure the base MembershipProvider:</p>
<pre><code><membership defaultProvider="MyCustomMembershipProvider">
<providers>
<clear />
<add name="MyCustomMembershipProvider"
type="MyNamespace.MyCustomMembershipProvider"
enablePasswordRetrieval="false"
enablePasswordReset="true"
requiresQuestionAndAnswer="false"
requiresUniqueEmail="true"
passwordFormat="Hashed"
maxInvalidPasswordAttempts="10"
minRequiredPasswordLength="6"
minRequiredNonalphanumericCharacters="0"
passwordAttemptWindow="10"
passwordStrengthRegularExpression=""
applicationName="/" />
</providers>
</membership>
</code></pre>
<p>The next bit I think you're overthinking, the actual tie-in to your web application. Whereas in a WebForms app you kind of have to code the rest for yourself - the MVC framework does the rest for you - all you need to do is add the [Authorize] attribute to your action method and the framework will check to see if you're logged in, and if not redirect you to the login page. The login page will find your custom provider because that's what's configured in the web.config and will log your user in. You can access information about the logged in user from your controllers by referencing the <em>User</em> object:</p>
<pre><code>public class WhateverController : Controller
{
[Authorize]
public ActionResult WhateverAction()
{
ViewData["LoggedInAs"] = string.Format("You are logged in as {0}.", User.Identity.Name);
Return View();
}
}
</code></pre>
<p>So this action requires that the user is logged in and presents the user information to the Whatever/WhateverAction.aspx view to be displayed on the page.</p>
http://stackoverflow.com/questions/1706963/access-vba-how-to-execute-many-buttons-using-a-single-button/1711206#17112065Answer by BenAlabaster for Access VBA. How to execute many buttons using a single button?BenAlabaster2009-11-10T21:09:33Z2009-11-10T21:15:01Z<p>It's good programming practice to not put code inside the event of an object - such as the click event. Instead the code should be put into their own methods which are called by the click event. Then when you need to run a whole bunch of them, you don't need to call the click event of each button, but instead run each of the methods that the click events call directly. </p>
<pre><code>Private Sub DoSomething()
'Code to do something
End Sub
Private Sub DoSomethingElse()
'Code to do something else
End Sub
Private Sub Button1_Click(sender As Object, e As EventArgs)
DoSomething
End Sub
Private Sub Button2_Click(sender As Object, e As EventArgs)
DoSomethingElse
End Sub
Private Sub Button3_Click(sender As Object, e As EventArgs)
DoSomething
DoSomethingElse
End Sub
</code></pre>
<p>This also makes for much more testable code... not that code is particularly testable inside of a Microsoft Office application. But that's a commonly used industry best practice.</p>
http://stackoverflow.com/questions/1710262/how-can-i-debug-objects-loaded-from-the-app-config-using-reflection1How can I debug objects loaded from the app.config using reflection?BenAlabaster2009-11-10T18:46:24Z2009-11-10T18:50:52Z
<p>I have some code that references an outside DLL which in production will be loaded by a factory. The DLL shouldn't be referenced directly by my assembly, it will be loaded at runtime using Assembly.Load().</p>
<p>This all works just fine, but when it comes to debugging, I want to be able to step through the library as if I'd referenced it using something like <code>new MyConcreteObject()</code>.</p>
<p>I know that I can use #if #endif to compile code differently in debug/release - but can I also have a reference that is only attached in debug/release?</p>
<p>If I can, and that is how I should do this, how do I go about it? If not, how <em>should</em> I be going about this?</p>
<p>Currently I have:</p>
<pre><code>public class ObjectFactory
{
public IObject CreateObject(string objectType)
{
/* Code to load and return the concrete object specified in the app.config */
}
}
public class Program
{
public void Main(string[] args)
{
IObject obj = ObjectFactory.CreateObject("MyObject, MyObjectLibrary");
obj.DoYourStuff();
}
}
</code></pre>
<p>So now I want to step through the code for the "DoYourStuff()" method and I don't want to have to comment out the line that loads my object and replace it with:</p>
<pre><code>IObject obj = new MyObject();
</code></pre>
<p>Which then requires a project reference pointing to the MyObjectLibrary DLL that will require I remove the reference and uncomment out the CreateObject() call and instead comment out the line that new's up the concrete object.</p>
<p>Make sense?</p>
http://stackoverflow.com/questions/1693310/how-can-i-unit-test-views-and-authorization-attributes-of-my-asp-net-mvc-applicat/1695237#16952371Answer by BenAlabaster for How can I unit test views and authorization attributes of my asp.net mvc application in nUnit?BenAlabaster2009-11-08T03:09:03Z2009-11-08T03:09:03Z<p>Here's a blog post on unit testing custom authorization components. It doesn't address RoleProviders and MembershipProviders, but you should be able to effectively use the same method for testing any number of filters.</p>
<p><a href="http://darioquintana.com.ar/blogging/2009/05/23/aspnet-mvc-testing-a-custom-authorize-filters/" rel="nofollow">http://darioquintana.com.ar/blogging/2009/05/23/aspnet-mvc-testing-a-custom-authorize-filters/</a></p>
<p>Disclaimer: It might take a couple of parses to understand it - it's not very clearly written and the example code provided doesn't exactly cut to the chase either, but you should be able to glean what you need from it.</p>
http://stackoverflow.com/questions/1688603/how-can-i-create-an-instance-of-an-object-defined-in-my-app-config-without-having1How can I create an instance of an object defined in my App.Config without having a reference to the assembly in my project?BenAlabaster2009-11-06T16:15:15Z2009-11-06T16:26:22Z
<p>I am continuing on from a <a href="http://stackoverflow.com/questions/1688420/why-cant-i-get-type-gettype-work-on-an-object-i-want-to-plugin-from-the-app-co">previous question</a> relating to loading instances of plugins specified in the app.config.</p>
<p>I'm curious if it's possible to add a plugin without requiring a reference added to my project and if so, how do I go about that?</p>
<pre><code><configuration>
<appSettings>
<add key="Plugin" value="Prototypes.BensPlugin, PrototypePlugins" />
</appSettings>
</configuration>
</code></pre>
<p>So now I want to load my plugin using:</p>
<pre><code>string tn = /* Retrieve from config */
Type t = Type.GetType(tn);
IPlugin plugin = (IPlugin)Activator.CreateInstance(t);
</code></pre>
<p>Given the nature of a plugin, I'm thinking that my assembly shouldn't require a reference to it. It seems like Type.GetType() requires that the plugin assembly is in the reference list (or the GAC?) which leads me to believe that this is not the right approach to plugging in features.</p>
<p>Is this possible or am I looking in the wrong direction?</p>
http://stackoverflow.com/questions/1688420/why-cant-i-get-type-gettype-to-find-the-type-of-my-plugin-instance-referenced3Why can't I get Type.GetType() to find the type of my plugin instance referenced in app.config?BenAlabaster2009-11-06T15:46:20Z2009-11-06T16:04:23Z
<p>So here's the deal. I've got my solution which has a few projects in it:</p>
<ul>
<li>A wrapper project - this is just a console app that's currently standing in for a windows service during debugging.</li>
<li>A worker project - this contains the guts of the code. This way I can easily debug the code for the windows service without the headache. </li>
<li>A plugin library project - This contains a plugin factory to new up a concrete instance of a plugin.</li>
<li>A plugin project - This contains a concrete implementation of my plugin.</li>
</ul>
<p>My wrapper application contains my app.config which my plugin should reference directly for self configuration. This way my wrapper application doesn't need to know anything other than it needs to call the adapter factory to new up the instance of the plugin.</p>
<pre><code><configuration>
<appSettings>
<add key="Plugin" value="Prototypes.BensPlugin" />
<add key="Prototypes.BensPlugin.ServiceAddress" value="http://localhost/WebServices/Plugin.asmx" />
<add key="Prototypes.BensPlugin.Username" value="TestUserName" />
<add key="Prototypes.BensPlugin.Password" value="TestPassword" />
</appSettings>
</configuration>
</code></pre>
<p>Wrapper project:</p>
<pre><code>using Worker;
public class Program
{
public static void Main()
{
var serviceProc = new ServiceProcess();
serviceProc.DoYourStuff();
}
}
</code></pre>
<p>Worker project:</p>
<pre><code>using PluginLibrary;
namespace Worker
{
public class ServiceProcess
{
public string GetRequiredAppSetting(string settingName)
{
/* Code to get a required configuration setting */
}
public void DoYourStuff()
{
string pluginTypeName = GetRequiredAppSetting("Plugin");
//At this point, pluginTypeName = "Prototypes.BensPlugin"
Type type = Type.GetType(pluginTypeName); //type == null, wth!?
//string testTypeName = new BensPlugin().GetType().ToString();
///At this point, testTypeName = "Prototypes.BensPlugin"
//Type testType = Type.GetType(testTypeName)
///And testType still equals null!
if (type != null)
{
IPlugin plugin = PluginFactory.CreatePlugin(type);
if (plugin != null)
plugin.DoWork();
}
}
}
}
</code></pre>
<p>Plugin library:</p>
<pre><code>namespace PluginLibrary
{
public interface IPlugin
{
void DoWork();
}
public class PluginFactory
{
public IPlugin CreatePlugin(Type pluginType)
{
return (IPlugin)Activator.CreateInstance(pluginType);
}
}
}
</code></pre>
<p>Plugin:</p>
<pre><code>using PluginLibrary;
namespace Prototypes
{
public class BensPlugin : IPlugin
{
public string ServiceAddress { get; protected set; }
public string username { get; protected set; }
public string password { get; protected set; }
public void DoWork()
{
Trace.WriteLine("Ben's plugin is working.");
}
public BensPlugin()
{
/* Code to self configure from app.config */
}
}
}
</code></pre>
<p>Okay, so that sets the stage. Where I'm coming unstuck is in my worker project when I reference <code>Type.GetType(pluginTypeName)</code>. My <code>pluginTypeName</code> is being pulled from the configuration correctly, but <code>Type.GetType(pluginTypeName)</code> returns <code>null</code>. I've tried newing up an instance of my plugin directly at that same place in the code:</p>
<pre><code>var obj = new BensPlugin();
</code></pre>
<p>This works just fine, and <code>obj.GetType().ToString()</code> returns the exact same string as I have configured in the <code>app.config</code>.</p>
<p>Can anyone tell me why I can new up a concrete object at that point in the code, but <code>Type.GetType(pluginTypeName)</code> would fail?</p>
http://stackoverflow.com/questions/1652800/does-codegolf-make-a-better-programmer-or-is-it-even-useful/1652992#16529922Answer by BenAlabaster for Does codegolf make a better programmer - or is it even useful?BenAlabaster2009-10-31T00:45:15Z2009-10-31T00:45:15Z<p>I would disagree with a lot of other answers here. I contend that code golf does make you a better programmer. Primarily because it's fun. Think of it from this angle - coding in a normal commercial environment let's face it can be boring as all hell.</p>
<p>If you're inspired by challenge just for challenge's sake, more power to you. I for one gain inspiration from fun challenges far more than business challenges that have me scratching my head for hours before I solve them. That said, I do get a lot of satisfaction from commercial programming though.</p>
<p>If you get inspiration from code golf, then that will make you a better programmer because you will be inspired to learn new techniques that will ultimately make you a better programmer - not because code golf in itself makes you a better programmer.</p>
<p>So I contend that yes - code golf will make you a better programmer - albeit indirectly, but only if it helps enhance your enjoyment of programming.</p>
http://stackoverflow.com/questions/1637464/what-are-best-practices-for-event-id-management/1639279#16392792Answer by BenAlabaster for What are best practices for event id management?BenAlabaster2009-10-28T18:42:14Z2009-10-28T21:36:34Z<p>First thought - and I haven't entirely thought this through yet, but it seems like a reasonable possibility:</p>
<pre><code>public class LogEvent
{
/* This is the event code you reference from your code
* so you're not working with magic numbers. It will work
* much like an enum */
public string Code;
/* This is the event id that's published to the event log
* to allow simple filtering for specific events */
public int Id;
/* This is a predefined string format that allows insertion
* of variables so you can have a descriptive text template. */
public string DisplayFormat;
/* A constructor to allow you to add items to a collection in
* a single line of code */
public LogEvent(int id, string code, string displayFormat)
{
Code = code;
Id = id;
DisplayFormat = displayFormat;
}
public LogEvent(int id, string code)
: this(id, code, null)
{
}
public LogEvent()
{
}
}
</code></pre>
<p>You can then have an event manager class that wraps your list of events providing a method that queries the list according to the parameter you pass - for instance:</p>
<pre><code>public class EventManager
{
private List<LogEvent> _eventList;
public LogEvent this[string eventCode]
{
get
{
return _eventList.Where(i => i.Code.Equals(eventCode)).SingleOrDefault();
}
}
public LogEvent this[int id]
{
get
{
return _eventList.Where(i => i.Id.Equals(id)).SingleOrDefault();
}
}
public void AddRange(params LogEvent[] logEvents)
{
Array.ForEach(logEvents, AddEvent);
}
public void Add(int id, string code)
{
AddEvent(new LogEvent(id, code));
}
public void Add(int id, string code, string displayFormat)
{
AddEvent(new LogEvent(id, code, displayFormat));
}
public void Add(LogEvent logEvent)
{
_events.Add(logEvent);
}
public void Remove(int id)
{
_eventList.Remove(_eventList.Where(i => i.id.Equals(id)).SingleOrDefault());
}
public void Remove(string code)
{
_eventList.Remove(_eventList.Where(i => i.Code.Equals(code)).SingleOrDefault());
}
public void Remove(LogEvent logEvent)
{
_eventList.Remove(logEvent);
}
}
</code></pre>
<p>This allows simplified management of event definitions which can be managed independently for each TraceSource.</p>
<pre><code>var Events = new EventManager();
Events.AddRange(
new LogEvent(1, "BuildingCommandObject", "Building command object from {0}."),
new LogEvent(2, "CommandObjectBuilt", "Command object built successfully."),
new LogEvent(3, "ConnectingToDatabase", "Connecting to {0}."),
new LogEvent(4, "ExecutingCommand", "Executing command against database {0}".),
new LogEvent(5, "CommandExecuted", "Command executed succesfully."),
new LogEvent(6, "DisconnectingFromDatabase", "Disconnecting from {0}."),
new LogEvent(7, "Disconnected", "Connection terminated.")
)
</code></pre>
<p>And you can access the events using a meaningful identifier while still passing the </p>
<pre><code>var evt = Events["ConnectingToDatabase"];
TraceSource.TraceEvent(TraceEventType.Information, evt.Id, evt.DisplayFormat, otherParams);
</code></pre>
<p>or</p>
<pre><code>var evt = Events[1024];
Console.WriteLine("Id: {1}{0}Code: {2}{0}DisplayFormat{3}",
Environment.NewLine, evt.Id, evt.Code, evt.DisplayFormat);
</code></pre>
<p>This would probably simplify your event management, you're no longer calling your events by magic numbers, it's simple to manage all your events in one place - your EventManager class and you can still filter your event log by the magic numbers it requires you to filter by.</p>
http://stackoverflow.com/questions/1630660/can-i-implement-a-generic-type-and-pass-it-a-type-that-is-known-only-at-runtime1Can I implement a generic type and pass it a type that is known only at runtime?BenAlabaster2009-10-27T13:04:07Z2009-10-27T18:03:08Z
<p>I'm pulling serialized data from a database along with an object type (where one field contains the object type and one contains an XML string of serialized data).</p>
<p>I've got a generic serializer that has a serialize and deserialize method:</p>
<pre><code>public static class Serializer<T>
{
public static string Serialize(T objectData) { }
public static T Deserialize(string xmlData) { }
}
</code></pre>
<p>Given that the object type is specified in the database field, is there any way for me to dynamically set what T is? - This is my line of thought (although this doesn't work):</p>
<pre><code>Type t = Type.GetType(objectTypeName);
t objData = Serializer<t>.Deserialize(objectXmlString);
</code></pre>
<p>I was hoping to refactor some code out of a switch statement where T is a set value, but I can't figure out if it can be done, or if so, how I would go about that.</p>
<p>Thanks in advance.</p>
http://stackoverflow.com/questions/1626432/is-there-a-benefit-to-storing-street-address-data-distinctly-instead-of-just-as-a/1626452#16264524Answer by BenAlabaster for Is there a benefit to storing street address data distinctly instead of just as a string?BenAlabaster2009-10-26T18:21:35Z2009-10-26T20:17:35Z<p>I wrote a whole blog post about this a while back. There are very good reasons to store each piece of data in a separate field. Not least for validation of address data.</p>
<p>Of course, it depends what industry you're in and what the information is being used for. If invalid address data isn't costing your company anything, then by all means store invalid data. Be aware though that down the road you may wish to use this data for mailings, demographic reports etc. If the data is invalid, it's not trivial to fix it after the fact.</p>
<p>Here's my blog post:</p>
<p><a href="http://www.endswithsaurus.com/2009/07/lesson-in-address-storage.html" rel="nofollow">http://www.endswithsaurus.com/2009/07/lesson-in-address-storage.html</a></p>
<p>Also, in reference to searching "Where StreetAddress Like '%whatever%'". This is all well and good if you're doing a quick search for your own benefit, but when you come to attempt to automate parts of your system that rely on address data or even attempt to drop duplicates, provide users with auto-suggest etc etc, performance is degraded to a point that it will become unusable the larger the address table.</p>
<p>If invalid addresses aren't a worry that is going to cost the company real cash, then it's not an issue - but then, if you're not using the addresses for anything that is beneficial financially (or likely to be in the future), then why are you storing that information in the first place?</p>
<p><strong>@Snorfus</strong> Ah, you must be in the Prairies. I had overlooked including posting about land descriptions in my blog post but it's something I'm considering for a later post. </p>
<p>Legal subdivisions (LSDs) are used primarly in Oil & Gas and other primary resource industries in Alberta, Saskatchewan and Manitoba (although they are found in parts of B.C. too, they're not in such prevalent use). They all take the same format: Section, Township, Range, Meridian. For example:</p>
<blockquote>
<p>SE 28-12-17-W5</p>
</blockquote>
<p>This is the South Eastern corner of Section 28, Township 12, Range 17, West of the 5th Meridian.</p>
<p>You could simply use a single field and parse it with regular expressions or break it out into separate fields containing the breakdown of the LSD. Running regexes in SQL Server can be a pain when it comes to performance. My take on it is the same as that of address data in general, that because each piece of data is a separate unique piece of data that they should be stored in separate fields. However, given that the large majority of this type of address data is <em>not</em> used by the general public in lieu of a street address, I might recommend designing something that would allow this information to be separated from (but linked to) your main address data. Given however that the land description/LSD is also part of every Canadian address, I might be tempted to store it in my main address table depending on the target audience of the database.</p>
<p>Here's a post about the breakdown of the Alberta Land Resource System:</p>
<p><a href="http://www1.agric.gov.ab.ca/%24department/deptdocs.nsf/all/agdex10302" rel="nofollow">http://www1.agric.gov.ab.ca/%24department/deptdocs.nsf/all/agdex10302</a></p>
<p>One thing you will often find in Oil & Gas at least (which is where the bulk of my experience comes from) is that workers will often refer to only the first two parts of the LSD - i.e. 28 of 12, or 43 of 16. The remainder of the LSD is implied by the locality of the address - i.e. Grand Prairie, Fox Creek, Wolf Lake etc.</p>
http://stackoverflow.com/questions/1621167/how-do-i-know-if-a-branch-has-already-been-merged-in-svn-mercurial-git/1621238#16212381Answer by BenAlabaster for How do I know if a branch has already been merged in SVN/Mercurial/Git?BenAlabaster2009-10-25T15:54:15Z2009-10-25T15:54:15Z<p>This isn't entirely relevant to the question, but I thought it might be useful in your ongiong quest for version control systems: <a href="http://versioncontrolblog.com/comparison/Git/Mercurial/Subversion/Visual%20SourceSafe/index.html" rel="nofollow">http://versioncontrolblog.com/comparison/Git/Mercurial/Subversion/Visual%20SourceSafe/index.html</a></p>
http://stackoverflow.com/questions/1548583/how-do-i-create-a-view-from-a-generic-list3How do I create a view from a generic list?BenAlabaster2009-10-10T17:43:38Z2009-10-22T04:49:14Z
<p>I have a generic list List<T> and I want to create a view that iterates the list and spits out the output.</p>
<p>I'm coming up against a couple of issues:</p>
<ul>
<li>I don't know how to get my view.aspx to understand T</li>
<li>I don't know how to get it to render the correct partial for T</li>
</ul>
<p>For instance, if I pass in a list of CustomObject1 then I want to render the partial CustomObject1.ascx and if I pass in a list of CustomObject2 the I want to render the partial CustomObject2.ascx.</p>
<p>Is there a simple way to do this that I've overlooked? I don't want to have a different aspx for every type of list I want to use, I'm just generating a of items after all. So it's a waste to have 15 different views to cover each type of list I'm going to need to use.</p>
<p>Any ideas or solutions would be gratefully received.</p>
http://stackoverflow.com/questions/1591979/how-should-i-design-my-object-model-so-that-my-dal-can-populate-read-only-fields/1595248#15952481Answer by BenAlabaster for How should I design my object model so that my DAL can populate read-only fields?BenAlabaster2009-10-20T14:57:25Z2009-10-20T15:35:50Z<p>This keeps your SoC model nicely, it doesn't add in too much complexity, it prevents writing to read-only fields and you could use a very similar model for serialization concerns. Your read-only fields can still be written to by your DAL, as could your serializer if used in a similar fashion - it means that conscious effort must be taken by a developer to write to a read-only field which prevents unintentional misuse.</p>
<p><strong><em>Model Project</em></strong></p>
<pre><code>namespace Model
{
public class DataObject
{
public int id { get; protected set; }
public string name { get; set; }
}
}
</code></pre>
<p><strong><em>Data Project</em></strong></p>
<pre><code>namespace Data
{
class DALDataObject : DataObject
{
public DALDataObject(int id, string name)
{
this.id = id;
this.name = name;
}
}
public class Connector
{
public static DataObject LoadDataObject(int objectId)
{
return new DALDataObject(objectId, string.Format("Dummy object {0}", objectId));
}
public static IEnumerable<DataObject> LoadDataObjects(int startRange, int endRange)
{
var list = new List<DataObject>();
for (var i = startRange; i < endRange; i++)
list.Add(new DALDataObject(i, string.Format("Dummy object {0}", i)));
return list;
}
}
}
</code></pre>
http://stackoverflow.com/questions/1821513/a-good-broadcast-mechanism-for-inhouse-net-applications-to-announce-their-locati/1821769#1821769Comment by BenAlabaster on A good broadcast mechanism for inhouse .net applications to announce their location and version?BenAlabaster2009-11-30T19:20:01Z2009-11-30T19:20:01ZFrom a usability standpoint, doesn't this get frustrating for the user when they want to run their application <i>now</i> but instead they have to wait for the latest release to copy down? Do you provide an option which lets them postpone the update until later?http://stackoverflow.com/questions/1810785/why-cant-i-pass-a-property-or-indexer-as-a-ref-parameter-when-net-reflector-sho/1810843#1810843Comment by BenAlabaster on Why can't I pass a property or indexer as a ref parameter when .NET reflector shows that it's done in the .NET Framework?BenAlabaster2009-11-27T22:44:52Z2009-11-27T22:44:52Zwhen I say "from reflector" I mean of course ".NET Reflector's interpretation of System.Web.dll (v2.0.50727)" - I know you're a stickler for accurate terminology :Phttp://stackoverflow.com/questions/1810785/why-cant-i-pass-a-property-or-indexer-as-a-ref-parameter-when-net-reflector-sho/1810843#1810843Comment by BenAlabaster on Why can't I pass a property or indexer as a ref parameter when .NET reflector shows that it's done in the .NET Framework?BenAlabaster2009-11-27T22:38:52Z2009-11-27T22:38:52ZMy original sample is cut and pasted right from reflector, which is what got me scratching my headhttp://stackoverflow.com/questions/1810785/why-cant-i-pass-a-property-or-indexer-as-a-ref-parameter-when-net-reflector-sho/1810843#1810843Comment by BenAlabaster on Why can't I pass a property or indexer as a ref parameter when .NET reflector shows that it's done in the .NET Framework?BenAlabaster2009-11-27T22:35:52Z2009-11-27T22:35:52ZThanks for your input :)http://stackoverflow.com/questions/1810785/why-cant-i-pass-a-property-or-indexer-as-a-ref-parameter-when-net-reflector-sho/1810823#1810823Comment by BenAlabaster on Why can't I pass a property or indexer as a ref parameter when .NET reflector shows that it's done in the .NET Framework?BenAlabaster2009-11-27T22:27:55Z2009-11-27T22:27:55Z@Kyle - I'd already written this off as being semantically different. Because I was after a reference to x.ClassName. myClassName would now be a copy of the string and I'd be passing a reference to the copy. But now @Darin Dimitrov has me wondering about release mode compilation...http://stackoverflow.com/questions/1810785/why-cant-i-pass-a-property-or-indexer-as-a-ref-parameter-when-net-reflector-sho/1810818#1810818Comment by BenAlabaster on Why can't I pass a property or indexer as a ref parameter when .NET reflector shows that it's done in the .NET Framework?BenAlabaster2009-11-27T22:26:18Z2009-11-27T22:26:18Z@Darin - that release mode code extract now has me scratching my head... how does it change the code to something I can't code myself because the compiler doesn't allow it?http://stackoverflow.com/questions/1810785/why-cant-i-pass-a-property-or-indexer-as-a-ref-parameter-when-net-reflector-sho/1810818#1810818Comment by BenAlabaster on Why can't I pass a property or indexer as a ref parameter when .NET reflector shows that it's done in the .NET Framework?BenAlabaster2009-11-27T22:23:56Z2009-11-27T22:23:56Z@Darin - but isn't that semantically different? Isn't username now a copy of x.ClassName and we're passing a reference to the string "username" not a reference to the string "x.ClassName"...http://stackoverflow.com/questions/1810785/why-cant-i-pass-a-property-or-indexer-as-a-ref-parameter-when-net-reflector-shoComment by BenAlabaster on Why can't I pass a property or indexer as a ref parameter when .NET reflector shows that it's done in the .NET Framework?BenAlabaster2009-11-27T22:22:44Z2009-11-27T22:22:44ZWhere's @JonSkeet when you need him...http://stackoverflow.com/questions/1810785/why-cant-i-pass-a-property-or-indexer-as-a-ref-parameter-when-net-reflector-shoComment by BenAlabaster on Why can't I pass a property or indexer as a ref parameter when .NET reflector shows that it's done in the .NET Framework?BenAlabaster2009-11-27T22:22:10Z2009-11-27T22:22:10Z@Yuriy - that would be understandable. However, in the code that caused me to notice this issue, I'm using the <i>same</i> MembershipUser class referenced in the Framework <i>in exactly the same way</i> - how come therefore it can be done inside the framework but not outside?http://stackoverflow.com/questions/1800013/does-this-code-prevent-sql-injection/1800125#1800125Comment by BenAlabaster on Does this code prevent SQL injection?BenAlabaster2009-11-26T04:18:37Z2009-11-26T04:18:37Z@Josh I already provided one and you decided that wasn't good enough...http://stackoverflow.com/questions/1800013/does-this-code-prevent-sql-injection/1800447#1800447Comment by BenAlabaster on Does this code prevent SQL injection?BenAlabaster2009-11-26T00:38:16Z2009-11-26T00:38:16Z@Josh: I updated my code snippet to take care of your concern that the output couldn't be put into a textbox on your webpage - with one line of code the string is written to the clipboard ready to be pasted directly into the form. Now it's just a case of coming up with other string exploits to get through your PrepareString method... anyway, I think I've proven my point.http://stackoverflow.com/questions/1800013/does-this-code-prevent-sql-injection/1800447#1800447Comment by BenAlabaster on Does this code prevent SQL injection?BenAlabaster2009-11-26T00:35:48Z2009-11-26T00:35:48ZOr just add a single extra line of code to your generator which copies it to the clipboard... it would almost be amusing to create a WinForms application to allow you to insert the control characters on the fly.http://stackoverflow.com/questions/1800013/does-this-code-prevent-sql-injection/1800447#1800447Comment by BenAlabaster on Does this code prevent SQL injection?BenAlabaster2009-11-26T00:14:39Z2009-11-26T00:14:39ZAnd to be honest - all you asked for was some code that proved that the method was flawed and I've produced that... and hence answered your question.http://stackoverflow.com/questions/1800013/does-this-code-prevent-sql-injection/1800447#1800447Comment by BenAlabaster on Does this code prevent SQL injection?BenAlabaster2009-11-25T23:26:55Z2009-11-25T23:26:55ZHow many exploits will convince him? I could do this all night - I could generate a POST from the original page data that you send out and doctor the correct form value to get past the event validation. I can then use a plugin in my web browser so that your server sees it as the same session. Sure replacing Chr(8) would fix <i>this</i> exploit, but what about the next one?http://stackoverflow.com/questions/1800013/does-this-code-prevent-sql-injectionComment by BenAlabaster on Does this code prevent SQL injection?BenAlabaster2009-11-25T22:50:19Z2009-11-25T22:50:19ZPlease see below for my proof that actually creates an injectable string to break your PrepareString method.