User AaronSieb - Stack Overflowmost recent 30 from stackoverflow.com2009-12-10T12:49:36Zhttp://stackoverflow.com/feeds/user/16911http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1247532/what-is-the-most-elegant-way-to-implement-a-business-rule-relating-to-a-child-col0What is the most elegant way to implement a business rule relating to a child collection in LINQ?AaronSieb2009-08-08T00:00:35Z2009-11-24T22:00:03Z
<p>I have two tables in my database:</p>
<pre><code>Wiki
WikiId
...
WikiUser
WikiUserId (PK)
WikiId
UserId
IsOwner
...
</code></pre>
<p>These tables have a one (Wiki) to Many (WikiUser) relationship.</p>
<p>How would I implement the following business rule in my LINQ entity classes:</p>
<blockquote>
<p>"A Wiki must have exactly one owner?"</p>
</blockquote>
<p>I've tried updating the tables as follows:</p>
<pre><code>Wiki
WikiId (PK)
OwnerId (FK to WikiUser)
...
WikiUser
WikiUserId (PK)
WikiId
UserId
...
</code></pre>
<p>This enforces the constraint, but if I remove the owner's WikiUser record from the Wiki's WikiUser collection, I recieve an ugly SqlException. This seems like it would be difficult to catch and handle in the UI.</p>
<p>Is there a way to perform this check before the SqlException is generated? A better way to structure my database? A way to catch and translate the SqlException to something more useful?</p>
<p>Edit: I would prefer to keep the validation rules within the LINQ entity classes if possible.</p>
<p>Edit 2: Some more details about my specific situation.</p>
<p>In my application, the user should be able to remove users from the Wiki. They should be able to remove any user, except the user who is currently flagged as the "owner" of the Wiki (a Wiki must have exactly one owner at all times).</p>
<p>In my control logic, I'd like to use something like this:</p>
<pre><code>wiki.WikiUsers.Remove(wikiUser);
mRepository.Save();
</code></pre>
<p>And have any broken rules transferred to the UI layer.</p>
<p>What I DON'T want to have to do is this:</p>
<pre><code>if(wikiUser.WikiUserId != wiki.OwnerId) {
wiki.WikiUsers.Remove(wikiUser);
mRepository.Save();
}
else {
//Handle errors.
}
</code></pre>
<p>I also don't particularly want to move the code to my repository (because there is nothing to indicate not to use the native Remove functions), so I also DON'T want code like this:</p>
<pre><code>mRepository.RemoveWikiUser(wiki, wikiUser)
mRepository.Save();
</code></pre>
<p>This WOULD be acceptable:</p>
<pre><code>try {
wiki.WikiUsers.Remove(wikiUser);
mRepository.Save();
}
catch(ValidationException ve) {
//Display ve.Message
}
</code></pre>
<p>But this catches too many errors:</p>
<pre><code>try {
wiki.WikiUsers.Remove(wikiUser);
mRepository.Save();
}
catch(SqlException se) {
//Display se.Message
}
</code></pre>
<p>I would also PREFER NOT to explicitly call a business rule check (although it may become necessary):</p>
<pre><code>wiki.WIkiUsers.Remove(wikiUser);
if(wiki.CheckRules()) {
mRepository.Save();
}
else {
//Display broken rules
}
</code></pre>
http://stackoverflow.com/questions/1743459/css-styles-on-label-in-firefox/1744594#17445941Answer by AaronSieb for CSS styles on <label> in FirefoxAaronSieb2009-11-16T20:18:25Z2009-11-16T20:18:25Z<p>Renders fine in FireFox 3.5.5, both with an XHTML transitional DOCTYPE and no DOCTYPE.</p>
<p>What environment are you testing this in... Is it local or a remote server? If you go to the View menu and view the source for the page via FireFox, do the inline styles appear correctly? Could you be looking at a cached copy of the page?</p>
<p>Another worthwhile alternative is to start from scratch. Create a minimal page with just a label and the CSS to color it. Add features of the broken page until you reach the point where the problem occurs.</p>
http://stackoverflow.com/questions/1702667/why-is-viewstate-lost-when-a-controls-property-is-modified-during-its-parents-c0Why is ViewState lost when a control's property is modified during its parent's Control.Render method?AaronSieb2009-11-09T17:56:17Z2009-11-09T21:23:21Z
<p>I have code like the following in a UserControl:</p>
<pre><code>Protected Overrides Sub Render(ByVal writer As System.Web.UI.HtmlTextWriter)
If someCondition Then
childControl.Enabled = false
End If
MyBase.Render(writer)
End Sub
</code></pre>
<p>Whenever someCondition is true and childControl.Enabled is set to false during the Render event, the ViewState for childControl is destroyed (i.e. if it is a TextBox, the text that the user has entered is lost).</p>
<p>Note that only the ViewState is lost... The control still renders with the correct property values the first time around. Only on PostBack, when properties are restored from ViewState are the values actually lost.</p>
<p>The timeline is as follows:</p>
<ul>
<li>Page_Load (initial)<br>
Properties are set via code.</li>
<li>SaveViewState</li>
<li>Render<br>
Properties are modified.</li>
<li>Postback occurs.</li>
<li>LoadViewState</li>
<li>Page_Load<br>
Values of unaltered controls are still available, but controls which have had properties set during the Render method are blank.</li>
<li>SaveViewState</li>
</ul>
<p>My understanding was that the ViewState became fixed during the call to Control.SaveViewState, which occurs prior to the call to Control.Render... But is there some nuance that I'm missing?</p>
http://stackoverflow.com/questions/1614422/asp-net-mvc-where-to-keep-entity-being-edited-by-user/1614485#16144850Answer by AaronSieb for ASP.NET MVC: where to keep entity being edited by userAaronSieb2009-10-23T16:15:21Z2009-10-23T16:34:17Z<p>It depends a lot on how you implement your objects/validation, but your option number 5 is probably the best idea. If AJAX isn't your thing, you can accomplish the same thing by writing the relevant data of already-added-but-not-saved entries to hidden fields.</p>
<p>In other words, the flow ends up something like this: </p>
<ol>
<li><p>User enters an item. </p></li>
<li><p>Item is sent to the server and validated. The view is returned with the data entered by the user in hidden fields. </p></li>
<li><p>User enters a second item. </p></li>
<li><p>Item is sent to the server, and both items are validated. The view is returned with the data for both items in hidden fields. </p></li>
<li><p>etc. </p></li>
</ol>
<p>So far as F5/Refresh killing entered data... In my experience this isn't too much of a problem. A more pressing concern is the back/forward buttons, which need to be managed with something like Really Simple History.</p>
<p>If you DO want to make the page continue to work after a refresh, you need to do one of the following:</p>
<ol>
<li>Persist the records to the database, associated with the current user in some way.</li>
<li>Persist the records to session.</li>
<li>Persist the records to the query string.</li>
</ol>
<p>These are the only storage locations available that persist through both redirection and refreshes.</p>
http://stackoverflow.com/questions/1607839/what-are-the-reasons-to-use-the-id-attribute-for-css-purposes/1607969#16079694Answer by AaronSieb for What are the reasons to use the id attribute for CSS purposes?AaronSieb2009-10-22T15:19:10Z2009-10-22T15:19:10Z<p>You don't HAVE to use IDs. There is no design that you can create using IDs that you can't create using classes.</p>
<p>With that said, using an ID has the advantage of clearly labeling a selector as applying to exactly one element in a page. I typically use them for styling elements in my page templates (#Content, #Navigation, etc.).</p>
<p>In general, I would try to use it in areas that allow me to make the markup more concise. When a selector can be targeted at a tag, you should use the tag. When it can be targeted at an ID, use the ID. Otherwise, use a class.</p>
<p>But, again, whether or not you use IDs isn't terribly important.</p>
http://stackoverflow.com/questions/1603222/columns-with-css-without-using-multiple-divs/1603762#16037622Answer by AaronSieb for Columns with CSS without using multiple divs?AaronSieb2009-10-21T21:24:11Z2009-10-21T21:24:11Z<p>This article <a href="http://net.tutsplus.com/tutorials/html-css-techniques/11-classic-css-techniques-made-simple-with-css3/" rel="nofollow">(11 Classic CSS Techniques Mad Simple With CSS3)</a> shows how to do this using Mozilla- and WebKit-specific properties. Columns like these are item number 9 on the list.</p>
<p>For IE you'll need to wait for CSS3 support or use a script, such as the <a href="http://welcome.totheinter.net/columnizer-jquery-plugin/" rel="nofollow">Columnize jQuery plugin</a> mentioned in the article.</p>
http://stackoverflow.com/questions/1602059/object-not-set-to-instance-blah/1602108#16021083Answer by AaronSieb for Object not set to instance....blahAaronSieb2009-10-21T16:49:28Z2009-10-21T16:49:28Z<p>Without seeing the JavaScript, or knowing what part of this code is related to the error, I'd guess that this line is part of your problem:</p>
<pre><code>PnlPersonInjury.Visible = false;
</code></pre>
<p>If a server-side control is hidden, it doesn't render anything to the client-side markup.</p>
http://stackoverflow.com/questions/1573663/how-to-specify-a-generic-type-as-a-restriction-in-a-generic-method/1573691#15736914Answer by AaronSieb for How to specify a generic type as a restriction in a generic methodAaronSieb2009-10-15T16:56:35Z2009-10-15T17:01:45Z<p>You probably want to create an interface, and have your generic class implement that. MyGenericClass<int> and MyGenericClass<string> are considered to be completely different classes by the .NET compiler.</p>
<p>This would allow you to do something like this:</p>
<pre><code>void GetInstanceOf<T>() where T : IMyGenericClass
</code></pre>
<p>You could also use a shared base class:</p>
<pre><code>void GetInstanceOf<T>() where T : MyGenericClassBase
</code></pre>
<p>Finally, you might try to add a second type parameter to your method:</p>
<pre><code>void GetInstanceOf<T, U>() where T: MyGenericClassBase<U>
</code></pre>
<p>(I'm not sure about that last one... I don't have a compiler handy to check it)</p>
<p>See: <a href="http://msdn.microsoft.com/en-us/library/aa479859.aspx#fundamentals%5Ftopic12" rel="nofollow">http://msdn.microsoft.com/en-us/library/aa479859.aspx#fundamentals%5Ftopic12</a></p>
http://stackoverflow.com/questions/1380967/css-roll-over-with-sprites-sliding-door/1381108#13811082Answer by AaronSieb for CSS Roll Over with Sprites & Sliding DoorAaronSieb2009-09-04T19:27:18Z2009-09-04T20:28:45Z<p>The following is based on this article (<a href="http://www.filamentgroup.com/lab/update%5Fstyling%5Fthe%5Fbutton%5Felement%5Fwith%5Fcss%5Fsliding%5Fdoors%5Fnow%5Fwith%5Fimage%5Fspr/" rel="nofollow">http://www.filamentgroup.com/lab/update_styling_the_button_element_with_css_sliding_doors_now_with_image_spr/</a>), but adapted for use with the a tag.</p>
<p>It is similar to @xijo 's answer, with a couple of minor tweaks.</p>
<pre><code><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd" >
<html>
<head>
<title>Test</title>
<style type="text/css">
/* REQUIRED BUTTON STYLES: */
a {
border: 0;
padding: 0;
display:inline-block;
}
a span {
display: block;
white-space: nowrap;
cursor: hand;
}
/* OPTIONAL BUTTON STYLES for applying custom look and feel: */
a.submitBtn {
padding: 0 15px 0 0;
margin-right:5px;
font-size:2em;
text-align: center;
background: transparent url(btn_blue_sprite.gif) no-repeat right -140px;
}
a.submitBtn span {
padding: 13px 0 0 15px;
height:37px;
background: transparent url(btn_blue_sprite.gif) no-repeat left top;
color:#fff;
}
a.submitBtn:hover, button.submitBtnHover { /* the redundant class is used to apply the hover state with a script */
background-position: right -210px;
}
a.submitBtn:hover span, button.submitBtnHover span {
background-position: 0 -70px;
}
</style>
</head>
<body>
This is a bunch <a href="#" class="submitBtn"><span>Submit</span></a> of text.
</body>
</html>
</code></pre>
http://stackoverflow.com/questions/1367580/steps-to-publish-software-to-be-purchased-via-registration/1367885#13678850Answer by AaronSieb for Steps to publish Software to be purchased via RegistrationAaronSieb2009-09-02T14:00:48Z2009-09-02T14:00:48Z<p>I don't have a useful answer for you, but I did have a couple observations I wanted to share that were too large to fit in a comment. Hopefully someone else with more technical expertise can fill in the details.</p>
<blockquote>
<p>One of my main concerns is to prevent the reuse if a given serial, e.g. if two users run the program with the same serial at the same time, this serial should disabled or some other measure be taken.</p>
</blockquote>
<p>To ensure that two people aren't using the same serial number, your program will have to "phone home." A lot of software does this at installation time, by transmitting the serial number back to you during the installation process. If you want to do it in real time, your application will have to periodically connect to your server and say "this serial number is in use."</p>
<p>This is not terribly user friendly. Any time that the serial number check is performed, the user must be connected to the Internet, and must have their firewall configured to allow it. It also means that you must commit to maintaining the server side of things (domain name, server architecture) unchanged <em>forever</em>. If your server goes down, or you lose the domain, your software will become inoperative.</p>
<p>Of course, if a connection to your service specifically (rather than the Internet in general) is essential to the product's operation, then it becomes a lot easier and more user friendly.</p>
<blockquote>
<p>Another point is, that my software could potentially be just copied from one computer to the other without using an installer, so to just protect the installer itself will not be sufficient.</p>
</blockquote>
<p>There are two vectors of attack here. One is hiding a piece of information somewhere on the user's system. This is not terribly robust. The other is to check and encode the user's hardware configuration and encode that data somewhere. If the user changes their hardware, force the product to reactivate itself (this is what Windows and SecuROM do).</p>
<p>As you implement this, please remember that it is literally impossible to prevent illegal copying of software. As a (presumably) small software developer, you need to balance the difficulty to crack your software against the negative effects your DRM imposes on your users. I personally would be extremely hesitant to use software with the checks that you've described in place. Some people are more forgiving than I am. Some people are less so.</p>
http://stackoverflow.com/questions/1363668/any-way-to-detect-browser-running-through-terminal-services/1363704#13637041Answer by AaronSieb for Any way to detect browser running through Terminal Services?AaronSieb2009-09-01T17:40:33Z2009-09-01T17:45:47Z<p>This is almost certainly impossible with JavaScript (way, way above the level JavaScript operates at). It may be possible via something like Flash or ActiveX.</p>
<p>Edit: You will likely need something along the lines of what nVidia is using here: <a href="http://www.nvidia.com/Download/Scan.aspx?lang=en-us" rel="nofollow">http://www.nvidia.com/Download/Scan.aspx?lang=en-us</a></p>
<p>Looks like a Java applet.</p>
http://stackoverflow.com/questions/1359025/css-layout-dynamic-width-div/1359086#13590860Answer by AaronSieb for CSS Layout - Dynamic width DIVAaronSieb2009-08-31T19:45:35Z2009-08-31T19:45:35Z<p>Or, if you know the width of the two "side" images and don't want to deal with floats:</p>
<pre><code><div class="container">
<div class="left-panel"><img src="myleftimage" /></div>
<div class="center-panel">Content goes here...</div>
<div class="right-panel"><img src="myrightimage" /></div>
</div>
</code></pre>
<p>CSS:</p>
<pre><code>.container {
position:relative;
padding-left:50px;
padding-right:50px;
}
.container .left-panel {
width: 50px;
position:absolute;
left:0px;
top:0px;
}
.container .right-panel {
width: 50px;
position:absolute;
right:0px;
top:0px;
}
.container .center-panel {
background: url('mymiddleimage');
}
</code></pre>
<p>Notes:</p>
<p>Position:relative on the parent div is used to make absolutely positioned children position themselves relative to that node.</p>
http://stackoverflow.com/questions/1324825/simple-css-masterpage-layout/1325023#13250230Answer by AaronSieb for Simple CSS MasterPage layout.AaronSieb2009-08-24T22:03:06Z2009-08-24T22:20:59Z<p>Here's a quick stab at specific CSS/Markup for this problem.</p>
<p>Markup:</p>
<pre><code><!-- Header, etc. -->
<div class="contentView">
<div class="links">
</div>
<div class="content">
</div>
</div>
<!-- Footer, etc. -->
</code></pre>
<p>CSS:</p>
<pre><code>.contentView {
/* Causes absolutely positioned children to be positioned relative to this object */
position: relative;
}
.links {
position: absolute;
top: 0;
left: 0;
width: 200px;
}
.content {
padding-left: 200px;
}
</code></pre>
<p>You might want your footer to be "sticky." Check here for information on that: <a href="http://ryanfait.com/resources/footer-stick-to-bottom-of-page/" rel="nofollow">http://ryanfait.com/resources/footer-stick-to-bottom-of-page/</a></p>
<p>How appropriate this is depends on precisely what the design calls for. This makes the links section more of a floating box on the left than a column for example.</p>
<p>This ends up looking like this (.content is green, .links is red):</p>
<p><img src="http://i105.photobucket.com/albums/m227/AceCalhoon/MarkupExample.png" alt="An example of this markup."></p>
http://stackoverflow.com/questions/1324825/simple-css-masterpage-layout/1324879#13248791Answer by AaronSieb for Simple CSS MasterPage layout.AaronSieb2009-08-24T21:30:32Z2009-08-24T21:30:32Z<p>To prevent floated divs from being "squeezed" out of the alignment you want, you usually use either width or min-width.</p>
<p>For example, in this code the div containing the links and content will never be smaller than 1000 pixels. If the screen is smaller than 1000 pixels, a scrollbar is displayed.</p>
<pre><code><div style="min-width: 1000px">
<div class="links"></div>
<div class="content"></div>
</div>
</code></pre>
<p>You could also use width instead of min-width:</p>
<pre><code><div style="width: 1000px">
<div class="links"></div>
<div class="content"></div>
</div>
</code></pre>
<p>The difference between the two is simple: if you specify min-width, the div CAN grow to be larger if it needs to. If you specify width, the div will be exactly the size you specified.</p>
<p>Be aware that min-width is not supported by IE6.</p>
http://stackoverflow.com/questions/1271940/using-session-like-viewstate/1272383#12723831Answer by AaronSieb for Using session like ViewStateAaronSieb2009-08-13T14:40:30Z2009-08-13T16:34:19Z<p>I would probably do it this way:</p>
<ol>
<li>Create an object to store the state information you want to be page specific. If different pages need different information, create multiple classes.</li>
<li>Store this object in a single session key: Session["PageSpecific"]; for example.</li>
<li>Create a class which inherits from System.Web.UI.Page.</li>
<li>In the OnLoad event of the base class, clear the session key if the the page is not performing a postback.</li>
<li>Create and call an overloadable method to populate the session object.</li>
<li>Instead of inheriting from System.Web.UI.Page in each of your pages, inherit from your new base class.</li>
</ol>
<p>Something like this (warning: air code. May contain syntax errors):</p>
<pre><code>public class PageBase
: System.Web.UI.Page
{
protected overrides OnInit(System.EventArgs e) {
base.OnInit(e);
if(!this.IsPostBack) {
Guid requestToken = System.Guid.NewGuid();
ViewState["RequestToken"] = requestToken;
Session["PageSpecific" & requestToken.ToString()] = InitializePageSpecificState();
}
}
protected virtual object InitializePageSpecificState() {
return new GenericPageState();
}
//You can use generics to strongly type this, if you want to.
protected object PageSpecificState {
get {
return Session["PageSpecific" & ViewState["RequestToken"].ToString()];
}
}
}
</code></pre>
http://stackoverflow.com/questions/1235236/executing-ajax-code-after-a-few-seconds-of-inactivity-from-the-user/1235303#12353032Answer by AaronSieb for Executing ajax code after a few seconds of inactivity from the userAaronSieb2009-08-05T19:39:06Z2009-08-05T19:44:25Z<p>Try the following steps:</p>
<ol>
<li>Every few milliseconds, check to see if the textbox has new data in it.</li>
<li>If the textbox has new text, execute your Ajax, and copy the text to a variable (for comparison in step 1).</li>
</ol>
<p>If you want to improve performance from there, activate the timer whenever the user types something, and deactivate it when the Ajax call is made.</p>
http://stackoverflow.com/questions/1228123/dynamic-table-checkboxes-not-having-a-checked-true-value/1228163#12281630Answer by AaronSieb for Dynamic Table CheckBoxes not having a "Checked" true valueAaronSieb2009-08-04T15:26:23Z2009-08-04T15:26:23Z<p>The most likely cause for dynamic controls not having a value is that they were either created after ViewState has been loaded, or read before.</p>
<p>Generally speaking, dynamic controls should be created during the PageInit event, and read during or after the PageLoad event.</p>
http://stackoverflow.com/questions/1219086/why-is-fxcop-raising-the-error-types-that-own-disposable-fields-should-be-dispos1Why is FxCop raising the error "Types that own disposable fields should be disposable" on a class with no disposable fields?AaronSieb2009-08-02T15:08:34Z2009-08-03T19:31:51Z
<p>I have a LINQ object with an additional method added to it. The class has no disposable properties or methods, but FxCop is raising the error "Types that own disposable fields should be disposable" and referencing that class.</p>
<p>I've reduced the code this far and still receive the error:</p>
<pre><code>partial class WikiPage
{
public PagePermissionSet GetUserPermissions(Guid? userId) {
using (WikiTomeDataContext context = new WikiTomeDataContext()) {
var permissions =
from wiki in context.Wikis
from pageTag in context.VirtualWikiPageTags
select new {};
return null;
}
}
}
</code></pre>
<p>However, if I remove EITHER of the from clauses, FxCop stops giving the error:</p>
<pre><code>partial class WikiPage
{
public PagePermissionSet GetUserPermissions(Guid? userId) {
using (WikiTomeDataContext context = new WikiTomeDataContext()) {
var permissions =
from pageTag in context.VirtualWikiPageTags
select new {};
return null;
}
}
}
</code></pre>
<p>Or</p>
<pre><code>partial class WikiPage
{
public PagePermissionSet GetUserPermissions(Guid? userId) {
using (WikiTomeDataContext context = new WikiTomeDataContext()) {
var permissions =
from wiki in context.Wikis
select new {};
return null;
}
}
}
</code></pre>
<p>PagePermissionSet is not disposable.</p>
<p>Is this a false positive? Or is the LINQ code somehow generating a disposable field on the class? If it isn't a false positive, FxCop is recommending that I implement the IDisposable interface, but what would I do in the Dispose method?</p>
<p>EDIT:
The full FxCop error is:</p>
<blockquote>
<p>"Implement IDisposable on 'WikiPage' because it
creates members of the following IDisposable types:
'WikiTomeDataContext'. If 'WikiPage' has previously
shipped, adding new members that implement IDisposable
to this type is considered a breaking change to existing
consumers."</p>
</blockquote>
<p>Edit 2:
This is the disassembled code that raises the error:</p>
<pre><code>public PagePermissionSet GetUserPermissions(Guid? userId)
{
using (WikiTomeDataContext context = new WikiTomeDataContext())
{
ParameterExpression CS$0$0001;
ParameterExpression CS$0$0003;
var permissions = context.Wikis.SelectMany(Expression.Lambda<Func<Wiki, IEnumerable<VirtualWikiPageTag>>>(Expression.Property(Expression.Constant(context), (MethodInfo) methodof(WikiTomeDataContext.get_VirtualWikiPageTags)), new ParameterExpression[] { CS$0$0001 = Expression.Parameter(typeof(Wiki), "wiki") }), Expression.Lambda(Expression.New((ConstructorInfo) methodof(<>f__AnonymousType8..ctor), new Expression[0], new MethodInfo[0]), new ParameterExpression[] { CS$0$0001 = Expression.Parameter(typeof(Wiki), "wiki"), CS$0$0003 = Expression.Parameter(typeof(VirtualWikiPageTag), "pageTag") }));
return null;
}
}
</code></pre>
<p>Edit 3:
There does appear to be a closure class containing a reference to the DataContext. Here is its disassembled code:</p>
<pre><code>[CompilerGenerated]
private sealed class <>c__DisplayClass1
{
// Fields
public WikiTomeDataContext context;
// Methods
public <>c__DisplayClass1();
}
</code></pre>
http://stackoverflow.com/questions/1203576/can-i-execute-a-linq-to-sql-query-from-within-a-linq-object0Can I execute a LINQ to SQL query from within a LINQ object?AaronSieb2009-07-29T23:02:47Z2009-07-30T01:18:00Z
<p>I currently have a LINQ query implemented as a method of my DataContext class. This method calculates the permissions a user has for a page within a Wiki/CMS. What I'd like to do is relocate this method to the Page and User LINQ data objects.</p>
<p>However, when I move this query to the individual data objects it executes using LINQ to Objects instead of LINQ to SQL. This means that it pulls several full collections from the database server every time it executes.</p>
<p>Here is a fragment of the code that uses LINQ to Objects. I'd like this to use LINQ to SQL:</p>
<pre><code>partial class WikiPage
{
public void GetUserPermissions(Guid? userId) {
var usersPlusAnon =
(
from user in this.Wiki.WikiWikiUsers
select new { user.WikiId, WikiUserId = (Guid?)user.WikiUserId }
).Union(
from wiki in new Wiki[]{this.Wiki}
select new { wiki.WikiId, WikiUserId = (Guid?)null }
);
}
}
</code></pre>
<p>Here is a fragment of the code that works, using LINQ to SQL. I'd rather have this method on the WikiPage class than the DataContext:</p>
<pre><code>partial class WikiDataContext
{
public void GetUserPermissions(Guid? userId) {
var usersPlusAnon =
(
from user in this.WikiTomeUsers
join wikiUser in this.WikiWikiTomeUsers on user.WikiTomeUserId equals wikiUser.WikiTomeUserId into tmp_wikiUser
from wikiUser in tmp_wikiUser.DefaultIfEmpty()
select new { WikiId = wikiUser.WikiId, WikiTomeUserId = (Guid?)wikiUser.WikiTomeUserId }
)
.Union(
from wiki in this.Wikis
select new { WikiId = wiki.WikiId, WikiTomeUserId = (Guid?)null }
);
}
}
</code></pre>
<p>When the LINQ query is run from the DataContext, it executes as LINQ to SQL, but when run from the WikiPage LINQ object it runs as LINQ to Objects. Is something off with my syntax here, or is this simply not possible with LINQ?</p>
http://stackoverflow.com/questions/1195754/how-can-one-unstyle-a-div-html-element/1196123#11961231Answer by AaronSieb for how can one "unstyle" a div html element?AaronSieb2009-07-28T19:05:28Z2009-07-28T19:52:16Z<p>Let me preface this by saying that all of the following is pure air-code :)</p>
<p>What if you attacked it from the other direction? Instead of resetting all of the styles in your div, modify the existing stylesheet so that all of the selectors target children of #newdiv-bodycontainer.</p>
<p>This site talks about the relevant API:
<a href="http://www.javascriptkit.com/domref/stylesheet.shtml" rel="nofollow">http://www.javascriptkit.com/domref/stylesheet.shtml</a></p>
<p>Edit:
Iterating on this idea, I put together some test code to make sure it works. I've included it below.</p>
<p>I also found the following site useful: <a href="http://www.javascriptkit.com/dhtmltutors/externalcss2.shtml" rel="nofollow">http://www.javascriptkit.com/dhtmltutors/externalcss2.shtml</a></p>
<p><strong>WARNING: This is not production code. It does not handle cross-browser incompatibilities (of which there are many), nor does it deal with compound selectors, nor does it deal with multiple stylesheets.</strong></p>
<pre><code>for (var i = 0; i < document.styleSheets[0].cssRules.length; ++i) {
var selector = document.styleSheets[0].cssRules[i].selectorText;
var declaration = document.styleSheets[0].cssRules[i].style.cssText;
document.styleSheets[0].deleteRule(i);
document.styleSheets[0].insertRule('.test ' + selector + '{' + declaration + '}', i);
alert(document.styleSheets[0].cssRules[i].selectorText);
}
</code></pre>
<p>This is the HTML used to test it. It runs in Firefox and Chrome, but will require modifications to run in IE:</p>
<pre><code><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd" >
<html>
<head>
<title>Test</title>
<style type="text/css">
.test {
background-color:red;
border: black solid 1px;
}
</style>
</head>
<body>
<div class="test" style="width: 10em;">
This is some text that is probably long enough to wrap.
<div class="test test2">Test2</div>
</div>
<script language="javascript">
for (var i = 0; i < document.styleSheets[0].cssRules.length; ++i) {
var selector = document.styleSheets[0].cssRules[i].selectorText;
var declaration = document.styleSheets[0].cssRules[i].style.cssText;
document.styleSheets[0].deleteRule(i);
document.styleSheets[0].insertRule('.test ' + selector + '{' + declaration + '}', i);
alert(document.styleSheets[0].cssRules[i].selectorText);
}
</script>
</body>
</html>
</code></pre>
http://stackoverflow.com/questions/1194120/how-can-i-access-dynamically-added-html-tags/1194175#11941752Answer by AaronSieb for how can i access dynamically added html tags? AaronSieb2009-07-28T13:42:55Z2009-07-28T14:14:36Z<blockquote>
<p>The question: i've been told i can access the html tags using request.form["Q#"] ? can some1 please explain to me..how it can be done ?</p>
</blockquote>
<p>It's pretty much exactly what you've written. Request.Form is an associative array with one record for each form field on your page. The array is keyed by the name attribute of the input field. For server side controls this usually defaults to the control's ClientId... But if you're generating the HTML yourself, anything goes.</p>
<pre><code>if(Request.Form["Q0"] == answers[0]) {
//Answer is correct
}
</code></pre>
<p>However, from the sound of things there are better ways to accomplish what you're after.</p>
<p>One option would be to use a Repeater control, and to set its datasource to an array containing the information about the questions. You can then do something like this:</p>
<pre><code>foreach(item as RepeaterItem in repeater) {
if(item.FindControl("radioButtonListId").SelectedValue == answer) {
//Answer correct
}
}
</code></pre>
<p>Edit:</p>
<p>Here's a quick explanation of how the Request.Form collection is populated.</p>
<p>A typical request for a page works like this:<br />
The client sends a request to the page to the server.<br />
The server executes the Asp.Net page life cycle (init, load, control events, render).<br />
The server takes the HTML generated by Asp.Net and sends it to the client. </p>
<p>When the client want's to send more information back to the server, it does so by submitting a special form generated by Asp.Net. This results in the value of each input control being attached to the request sent to Asp.Net:</p>
<p>The client sends a POST request to the server (with form values attached).<br />
The server executes the Asp.Net page life cycle (init, load, control events, render).<br />
The server takes the HTML generated by Asp.Net and sends it to the client. </p>
<p>As you can see, if Request.Form is going to have a value, it is set before PageInit begins (much less PageLoad).</p>
http://stackoverflow.com/questions/1159909/prevent-wrapping-in-nested-floated-items-in-css/1159930#11599301Answer by AaronSieb for Prevent wrapping in nested floated items in CSSAaronSieb2009-07-21T15:24:44Z2009-07-21T15:24:44Z<p>Have you tried applying the white-space: nowrap; property to the labels?</p>
<p><a href="http://www.w3schools.com/CSS/pr%5Ftext%5Fwhite-space.asp" rel="nofollow">http://www.w3schools.com/CSS/pr_text_white-space.asp</a></p>
http://stackoverflow.com/questions/1159485/programmatically-set-print-page-orientation-to-landscape/1159557#11595575Answer by AaronSieb for Programmatically set print page orientation to landscapeAaronSieb2009-07-21T14:29:02Z2009-07-21T14:29:02Z<p>This is something that would have to be done on the client side (using JavaScript/CSS).</p>
<p>Unfortunately, JavaScript does not have the ability to make this change.</p>
<p>CSS does have a means of specifying landscape printing via the @page directive:</p>
<pre><code>@page {
size: landscape;
}
</code></pre>
<p>However, very few browsers support it.</p>
<p>In other words... You can't.</p>
http://stackoverflow.com/questions/1139464/as-part-of-which-layer-should-permissions-be-applied-in-mvc0As part of which layer should permissions be applied in MVC?AaronSieb2009-07-16T18:36:20Z2009-07-16T23:38:47Z
<p>At which layer (Model, View, Controller) of MVC should permission logic be handled?</p>
<p>Let me clarify that a bit.
Obviously the UI (View and Controller) need to be able to access permissions to show/hide components and to handle the permission denied scenario. It also seems obvious that the permissions should be persisted to the database by the Model layer.</p>
<p>But what about "complex" permission rules like this?<br />
In a wiki/CMS system I'm developing, each user has a set of per-page permissions (view, edit, rename, etc.). For existing pages, these permissions are retrieved from the database. For a new page, the user is assumed to have all possible permissions (as they create/edit it).</p>
<p>Another example would be the list of pages:<br />
The current user should only be able to see pages which they have view permission on in the list of pages.</p>
<p>Should the Controller handle this logic? Or should the Controller only be responsible for calling a GetPermissions() method (or GetPageList), and all the logic for populating it be handled in the Model?</p>
http://stackoverflow.com/questions/1077147/css-cannot-change-size-of-li/1077405#10774051Answer by AaronSieb for Css: cannot change size of <li>AaronSieb2009-07-03T01:01:49Z2009-07-03T01:01:49Z<p>Building on @ONi 's answer:</p>
<p>If the width and height are set using inline styles (including those created by JavaScript), you can override them by using the !important directive, like this:</p>
<pre><code>ul.imgzchoose li img{
cursor:pointer;
margin-left: 9px;
margin-top: 1px;
width:16px !important;
height:24px !important;
position:relative;
display:none;
}
</code></pre>
http://stackoverflow.com/questions/999388/asp-net-mvc-forms-being-block-elements/1001586#10015861Answer by AaronSieb for Asp.Net MVC: Forms being block elementsAaronSieb2009-06-16T13:44:28Z2009-06-16T14:01:10Z<p>When you post a form, the name attribute of the button used to post it is sent as a form value. Give each button a name, and then check the Form collection (or an Asp.Net MVC intermediary) for the button's name.</p>
<pre><code>if(!String.IsNullOrEmpty(Request.Form["myButtonName"])) {
//myButtonName has been pressed.
}
</code></pre>
<p>EDIT:</p>
<blockquote>
<p>Problem is that turns out a form is a block element so that it's not possible to get to button next to each other. (Why they are block elements I'd like to know.)</p>
</blockquote>
<p>Forms are block elements because if they were inline elements it would be invalid to nest tags like p and div inside of them (both of which are handy in constructing forms).</p>
http://stackoverflow.com/questions/927604/any-way-to-display-some-heavily-styled-html-in-isolation-from-the-rest-of-sites/928048#9280483Answer by AaronSieb for Any way to display some heavily-styled HTML in isolation from the rest of site's styles?AaronSieb2009-05-29T20:45:10Z2009-05-29T20:45:10Z<p>IFrames are the only way to go that I've ever been able to find. The only alternative to this would be to override every style in the parent page's CSS for the newsletter display area.</p>
<p>As you noted, using an iframe will probably require you to host the newsletters in an independent file. The only alternative to this that I'm aware of is that you can use JavaScript to dynamically create and/or populate the iframe.</p>
<p>If you go with this method, you could have the newsletter present in a div with a specific class, and then use JavaScript to move the div into an iframe. The big downside being that this wouldn't happen for users without JavaScript enabled.</p>
http://stackoverflow.com/questions/918624/how-do-i-run-a-stored-procedure-once-per-class-hierarchy-update-in-linq0How do I run a stored procedure once per class hierarchy update in LINQ?AaronSieb2009-05-28T00:26:53Z2009-05-28T18:34:02Z
<p>I have two related tables in my database: Page and Tag. One Page can be related to many Tags.</p>
<p>Whenever either of these two tables is modified, a stored procedure called BeforePageHierarchyUpdate needs to be executed (in my case this stored procedure performs some logging and versioning on the Page hierarchy).</p>
<p>What's giving me problems are these two requirements:</p>
<ol>
<li><p>The SP must be run if either a Page instance or a Tag instance are updated. But if BOTH a Page AND one of its related Tags are updated, the SP should only be called once.</p></li>
<li><p>The stored procedure must be contained within the same transaction as the other LINQ statements. If the LINQ statements fail, the stored procedure needs to be rolled back. If the stored procedure fails, the LINQ statements must not be executed.</p></li>
</ol>
<p>Does anyone have any ideas as to how to implement something like this?</p>
http://stackoverflow.com/questions/918624/how-do-i-run-a-stored-procedure-once-per-class-hierarchy-update-in-linq/922485#9224850Answer by AaronSieb for How do I run a stored procedure once per class hierarchy update in LINQ?AaronSieb2009-05-28T18:33:39Z2009-05-28T18:33:39Z<p>A third potential solution is to put it in the repository class (or other wrapping implementation). This simplifies the transaction code quite a bit, but the functionality feels more appropriate int the DataContext layer.</p>
<pre><code>public class PageRepository : IPageRepository {
public void Save() {
using(TransactionScope trans = new TransactionScope()) {
BeforeSubmitChanges();
mDataContext.SubmitChanges();
trans.Complete();
}
}
private void BeforeSubmitChanges() {
ChangeSet changes = this.GetChangeSet();
HashSet<int> modifiedPages = new HashSet<int>();
foreach (Page page in changes.Updates.OfType<Page>()) {
modifiedPages.Add(page.PageId);
}
foreach(PageTag tag in changes.Updates.OfType<PageTag>()) {
modifiedPages.Add(tag.PageId);
}
foreach (PageTag tag in changes.Inserts.OfType<PageTag>()) {
//If the parent is being inserted, don't run the Update SP.
if (!changes.Inserts.Contains(tag.Page)) {
modifiedPages.Add(tag.PageId);
}
}
foreach (PageTag tag in changes.Deletes.OfType<PageTag>()) {
//If the parent is being deleted, don't run the Update SP.
if (!changes.Deletes.Contains(tag.Page)) {
modifiedPages.Add(tag.PageId);
}
}
foreach (int pageId in modifiedPages) {
this.BeforePageHierarchyUpdate(pageId);
}
}
}
</code></pre>
http://stackoverflow.com/questions/918624/how-do-i-run-a-stored-procedure-once-per-class-hierarchy-update-in-linq/922463#9224630Answer by AaronSieb for How do I run a stored procedure once per class hierarchy update in LINQ?AaronSieb2009-05-28T18:29:04Z2009-05-28T18:29:04Z<p>After digging through some code, here is another alternative. I'm not completely comfortable that the connection/transaction code is correct (it was mostly reverse engineered from the base SubmitChanges implementation).</p>
<pre><code>public override void SubmitChanges(System.Data.Linq.ConflictMode failureMode) {
if (System.Transactions.Transaction.Current == null && this.Transaction == null) {
bool connectionOpened = false;
DbTransaction transaction = null;
try {
if (this.Connection.State == ConnectionState.Closed) {
this.Connection.Open();
connectionOpened = true;
}
transaction = this.Connection.BeginTransaction(IsolationLevel.ReadCommitted);
this.Transaction = transaction;
BeforeSubmitChanges();
base.SubmitChanges(failureMode);
transaction.Commit();
}
catch {
if (transaction != null) {
try {
transaction.Rollback();
}
catch {
}
throw;
}
}
finally {
this.Transaction = null;
if (connectionOpened) {
this.Connection.Close();
}
}
}
else {
BeforeSubmitChanges();
base.SubmitChanges(failureMode);
}
}
private void BeforeSubmitChanges() {
ChangeSet changes = this.GetChangeSet();
HashSet<int> modifiedPages = new HashSet<int>();
foreach (Page page in changes.Updates.OfType<Page>()) {
modifiedPages.Add(page.PageId);
}
foreach(PageTag tag in changes.Updates.OfType<PageTag>()) {
modifiedPages.Add(tag.PageId);
}
foreach (PageTag tag in changes.Inserts.OfType<PageTag>()) {
//If the parent is being inserted, don't run the Update SP.
if (!changes.Inserts.Contains(tag.Page)) {
modifiedPages.Add(tag.PageId);
}
}
foreach (PageTag tag in changes.Deletes.OfType<PageTag>()) {
//If the parent is being deleted, don't run the Update SP.
if (!changes.Deletes.Contains(tag.Page)) {
modifiedPages.Add(tag.PageId);
}
}
foreach (int pageId in modifiedPages) {
this.BeforePageHierarchyUpdate(pageId);
}
}
</code></pre>
http://stackoverflow.com/questions/1709443/c-riddle-implement-interfaceComment by AaronSieb on C# riddle : implement interfaceAaronSieb2009-11-10T17:21:00Z2009-11-10T17:21:00ZCould you define fastest? Are we talking runtime, memory usage, readability, lines of code...?http://stackoverflow.com/questions/1702667/why-is-viewstate-lost-when-a-controls-property-is-modified-during-its-parents-c/1703531#1703531Comment by AaronSieb on Why is ViewState lost when a control's property is modified during its parent's Control.Render method?AaronSieb2009-11-10T14:05:06Z2009-11-10T14:05:06ZOkay, I get it now. When the enabled value is set in Render, ViewState loads with the old value (enabled). Because the control is now enabled, it attempts to read its value during LoadPostData but gets an empty string because disabled controls don't contribute to POSTs. If the enabled property is set prior to render, the control reads that it is disabled from ViewState and knows to skip the LoadPostData step.http://stackoverflow.com/questions/1702667/why-is-viewstate-lost-when-a-controls-property-is-modified-during-its-parents-c/1703531#1703531Comment by AaronSieb on Why is ViewState lost when a control's property is modified during its parent's Control.Render method?AaronSieb2009-11-09T23:43:02Z2009-11-09T23:43:02ZWill look into what extensibility hooks exist for LoadPostData. But I can't override it for the child control, and I'm reluctant to duplicate the entire implementation of UserControl.LoadPostData... Hopefully there are some child methods that I can override.http://stackoverflow.com/questions/1702667/why-is-viewstate-lost-when-a-controls-property-is-modified-during-its-parents-c/1703531#1703531Comment by AaronSieb on Why is ViewState lost when a control's property is modified during its parent's Control.Render method?AaronSieb2009-11-09T23:41:11Z2009-11-09T23:41:11ZHm... Rendered output is the same except for the ViewState block regardless of whether I set Enabled during the Render method (which doesn't work) or before (which does). Looking into a ViewState decoder to get better analysis of the difference between the two. In either case the result looks like this: <input name="_ctl0:cpBodyContent:tbTest" type="text" value="This is a test" id="_ctl0_cpBodyContent_tbTest" disabled="disabled" />http://stackoverflow.com/questions/1702667/why-is-viewstate-lost-when-a-controls-property-is-modified-during-its-parents-c/1703531#1703531Comment by AaronSieb on Why is ViewState lost when a control's property is modified during its parent's Control.Render method?AaronSieb2009-11-09T22:08:56Z2009-11-09T22:08:56ZYou know, I think you may be right. In order for this to be the case, a control would have to make the decision about whether it was going to read from ViewState or form submission prior to the Render method being called. I'll double-check the output and see what happens.http://stackoverflow.com/questions/1702667/why-is-viewstate-lost-when-a-controls-property-is-modified-during-its-parents-c/1703531#1703531Comment by AaronSieb on Why is ViewState lost when a control's property is modified during its parent's Control.Render method?AaronSieb2009-11-09T21:12:20Z2009-11-09T21:12:20ZExcept that the value displays correctly when the page is rendered. It is only after a postback that the missing ViewState is apparent. In other words, if childControl http://stackoverflow.com/questions/1680751/concat-multiple-rows-into-a-comma-delimited-value-during-updateComment by AaronSieb on Concat multiple rows into a comma-delimited value during UpdateAaronSieb2009-11-05T15:32:12Z2009-11-05T15:32:12ZCould you give an example of what the data looks like, and what you want your output to look like? I'm assuming that the RefID/TypeID table is the incoming data, but I'm not quite sure how you want your output to look.http://stackoverflow.com/questions/1638248/how-to-prevent-js-hijacking-in-public-computersComment by AaronSieb on how to prevent JS hijacking in public computersAaronSieb2009-10-28T16:33:46Z2009-10-28T16:33:46Z@DA Because this strategy allows the cyber cafe owner to perform actions using your account/credentials, which redirecting to a new page does not.http://stackoverflow.com/questions/1614422/asp-net-mvc-where-to-keep-entity-being-edited-by-user/1614485#1614485Comment by AaronSieb on ASP.NET MVC: where to keep entity being edited by userAaronSieb2009-10-23T21:32:21Z2009-10-23T21:32:21ZThis page deals with creating a confirmation prior to allowing a page to unload: <a href="http://www.openjs.com/scripts/events/exit_confirmation.php" rel="nofollow">openjs.com/scripts/events/…</a>http://stackoverflow.com/questions/1614422/asp-net-mvc-where-to-keep-entity-being-edited-by-userComment by AaronSieb on ASP.NET MVC: where to keep entity being edited by userAaronSieb2009-10-23T21:29:02Z2009-10-23T21:29:02ZI have left an additional comment in response to your recent comments.http://stackoverflow.com/questions/1614422/asp-net-mvc-where-to-keep-entity-being-edited-by-user/1614485#1614485Comment by AaronSieb on ASP.NET MVC: where to keep entity being edited by userAaronSieb2009-10-23T21:28:20Z2009-10-23T21:28:20ZAfter all, if you use session, database, viewstate, tempdata, etc. you can't use F5 to "reset" the form anymore :)http://stackoverflow.com/questions/1614422/asp-net-mvc-where-to-keep-entity-being-edited-by-user/1614485#1614485Comment by AaronSieb on ASP.NET MVC: where to keep entity being edited by userAaronSieb2009-10-23T21:27:24Z2009-10-23T21:27:24ZRegarding F5 -- Hitting it accidentally is annoying, but there are a lot of buttons in the browser (like home, go, back, forward, favorites, etc.) that can have destructive properties. I think you would be better off implementing a warning message like this site does (by handling the OnUnload event) than trying to circumvent the default behavior of the buttons.http://stackoverflow.com/questions/1614422/asp-net-mvc-where-to-keep-entity-being-edited-by-user/1614485#1614485Comment by AaronSieb on ASP.NET MVC: where to keep entity being edited by userAaronSieb2009-10-23T21:25:34Z2009-10-23T21:25:34ZFor the hidden fields, I've expunged my comment. Sounds like you knew what I was talking about, but I misinterpreted your comment.http://stackoverflow.com/questions/1614422/asp-net-mvc-where-to-keep-entity-being-edited-by-user/1614485#1614485Comment by AaronSieb on ASP.NET MVC: where to keep entity being edited by userAaronSieb2009-10-23T18:02:04Z2009-10-23T18:02:04ZAlso, I'm a little confused by your references to not being able to click the refresh button being annoying. Do you regularly refresh pages when you are half-way through filling out a form?http://stackoverflow.com/questions/1607839/what-are-the-reasons-to-use-the-id-attribute-for-css-purposes/1607853#1607853Comment by AaronSieb on What are the reasons to use the id attribute for CSS purposes?AaronSieb2009-10-22T15:23:43Z2009-10-22T15:23:43Z@Rew You could say the same thing about classes. There's lots of JavaScript out there that does (and must) target elements of a specific class. Changing the class in those instances is just as problematic from a behavior standpoint.