AaronSieb
|
Registered User
|
:)
|
|
Nov 16 |
answered | CSS styles on <label> in Firefox |
|
Nov 10 |
comment |
C# riddle : implement interface Could you define fastest? Are we talking runtime, memory usage, readability, lines of code...? |
|
Nov 10 |
comment |
Why is ViewState lost when a control’s property is modified during its parent’s Control.Render method? Okay, 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. |
|
Nov 9 |
comment |
Why is ViewState lost when a control’s property is modified during its parent’s Control.Render method? Will 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. |
|
Nov 9 |
comment |
Why is ViewState lost when a control’s property is modified during its parent’s Control.Render method? Hm... 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" /> |
|
Nov 9 |
comment |
Why is ViewState lost when a control’s property is modified during its parent’s Control.Render method? You 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. |
|
Nov 9 |
revised |
Why is ViewState lost when a control’s property is modified during its parent’s Control.Render method? added 39 characters in body |
|
Nov 9 |
revised |
Why is ViewState lost when a control’s property is modified during its parent’s Control.Render method? added 522 characters in body |
|
Nov 9 |
comment |
Why is ViewState lost when a control’s property is modified during its parent’s Control.Render method? Except 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 |
|
Nov 9 |
revised |
Why is ViewState lost when a control’s property is modified during its parent’s Control.Render method? edited title |
|
Nov 9 |
asked | Why is ViewState lost when a control’s property is modified during its parent’s Control.Render method? |
|
Nov 5 |
comment |
Concat multiple rows into a comma-delimited value during Update Could 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. |
|
Nov 3 |
revised |
Un-grant access to webcam edited tags |
|
Oct 28 |
comment |
how to prevent JS hijacking in public computers @DA Because this strategy allows the cyber cafe owner to perform actions using your account/credentials, which redirecting to a new page does not. |
|
Oct 23 |
comment |
ASP.NET MVC: where to keep entity being edited by user This page deals with creating a confirmation prior to allowing a page to unload: openjs.com/scripts/events/… |
|
Oct 23 |
comment |
ASP.NET MVC: where to keep entity being edited by user I have left an additional comment in response to your recent comments. |
|
Oct 23 |
comment |
ASP.NET MVC: where to keep entity being edited by user After all, if you use session, database, viewstate, tempdata, etc. you can't use F5 to "reset" the form anymore :) |
|
Oct 23 |
comment |
ASP.NET MVC: where to keep entity being edited by user Regarding 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. |
|
Oct 23 |
comment |
ASP.NET MVC: where to keep entity being edited by user For the hidden fields, I've expunged my comment. Sounds like you knew what I was talking about, but I misinterpreted your comment. |
|
Oct 23 |
comment |
ASP.NET MVC: where to keep entity being edited by user Also, 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? |
|
Oct 23 |
revised |
ASP.NET MVC: where to keep entity being edited by user edited body; deleted 12 characters in body |
|
Oct 23 |
answered | ASP.NET MVC: where to keep entity being edited by user |
|
Oct 22 |
comment |
What are the reasons to use the id attribute for CSS purposes? @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. |
|
Oct 22 |
answered | What are the reasons to use the id attribute for CSS purposes? |
|
Oct 22 |
accepted | Columns with CSS without using multiple divs? |
|
Oct 21 |
answered | Columns with CSS without using multiple divs? |
|
Oct 21 |
comment |
Columns with CSS without using multiple divs? This article (net.tutsplus.com/tutorials/html-css-techniques/…) shows how to do this using Mozilla- and WebKit-specific properties. For IE you'll need to wait for CSS3 support or use a script. |
|
Oct 21 |
answered | Object not set to instance…blah |
|
Oct 16 |
accepted | How to specify a generic type as a restriction in a generic method |
|
Oct 15 |
revised |
How to specify a generic type as a restriction in a generic method deleted 1 characters in body |
|
Oct 15 |
answered | How to specify a generic type as a restriction in a generic method |
|
Oct 15 |
comment |
Is it possible to get an IEnumerator<T> from a T[]? Fair enough. :) |
|
Oct 15 |
comment |
Is it possible to get an IEnumerator<T> from a T[]? This is apparently problematic, in that the lock can stick around if the enumerator isn't taken to its conclusion immediately. See Jon Skeet's last reply here: eggheadcafe.com/software/aspnet/… |
|
Sep 18 |
awarded | ● Yearling |
|
Sep 17 |
comment |
Why is it called ‘business logic’? Where did this term come from? Sure, the nomenclature was probably coined by people discussing commercial applications. But the phrase itself isn't limited in any way to commercial applications. A physics application, for example, would probably include most of the formulas and constraints (like terminal velocity) as "business logic." The term is in no way limited to actual business applications, any more than a guinea pig is a pig, or a peanut a pea. |
|
Sep 17 |
comment |
Why is it called ‘business logic’? Where did this term come from? Why do they call it a guinea pig when it isn't a pig, and isn't from Guinea? You seem to understand the basic concept, why does the etymology bother you? |
|
Sep 4 |
accepted | CSS Roll Over with Sprites & Sliding Door |
|
Sep 4 |
revised |
CSS Roll Over with Sprites & Sliding Door deleted 52 characters in body |
|
Sep 4 |
answered | CSS Roll Over with Sprites & Sliding Door |
|
Sep 2 |
answered | Steps to publish Software to be purchased via Registration |
|
Sep 1 |
accepted | Any way to detect browser running through Terminal Services? |
|
Sep 1 |
revised |
Any way to detect browser running through Terminal Services? added 167 characters in body |
|
Sep 1 |
comment |
Any way to detect browser running through Terminal Services? I believe he is saying that the site animation is annoying when viewed (by anyone) through Remote Desktop (because the animation isn't smooth), but that in the majority of cases it's fine. |
|
Sep 1 |
answered | Any way to detect browser running through Terminal Services? |
|
Aug 31 |
comment |
CSS Layout - Dynamic width DIV When using float-based layouts, you may also need to clear the floats (dave-woods.co.uk/index.php/…), and/or set a min-width on the parent div to prevent the floats from wrapping. |
|
Aug 31 |
answered | CSS Layout - Dynamic width DIV |
|
Aug 24 |
comment |
Simple CSS MasterPage layout. I have responded to the comment you've left on one of my answers. |
|
Aug 24 |
comment |
Simple CSS MasterPage layout. The header should just be a matter of dropping the HTML in where I have the "Header, etc." comment. For a simple footer (bottom of the content) you can just do the same where I have the "Footer, etc." comment. If you want the footer to be stuck to the bottom of the document, see the link in my answer directly beneath the CSS code. Leave another comment if you have a specific question about implementing those. |
|
Aug 24 |
revised |
Simple CSS MasterPage layout. added 187 characters in body |
|
Aug 24 |
answered | Simple CSS MasterPage layout. |
