User Crossbrowser - Stack Overflowmost recent 30 from stackoverflow.com2009-12-08T15:14:26Zhttp://stackoverflow.com/feeds/user/810http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1859557/affecting-single-element-with-jquery/1859636#18596361Answer by Crossbrowser for Affecting Single Element with jQueryCrossbrowser2009-12-07T12:12:56Z2009-12-07T12:12:56Z<p>As others said, without an idea of your markup it's difficult to help you, however here are some ways to do it, depending on your markup:</p>
<p><strong>Ideally</strong>, you would be able to assign each button and associated text-box a unique identifier like <code>yell-button-1</code> and make it remove the associated <code>yell-box-txt-1</code> on hover.</p>
<p>However, this method might be "difficult" to implement because you need to retrieve the ID # from the button.</p>
<p>The second way to do this is to make use of jQuery traversing. Find where the text box is in relation to the button and navigate from the button to the text box using methods such as <code>parent()</code>, <code>siblings()</code>, etc. To make sure you only receive one element, append <code>:first</code> to your <code>.yell-box-txt</code> class.</p>
<p>More info about <a href="http://docs.jquery.com/Traversing" rel="nofollow">jQuery Traversing</a>.</p>
<p>Hope this helps!</p>
http://stackoverflow.com/questions/1839734/why-does-generic-class-signature-requires-specifying-new-if-type-t-needs-instan/1839962#18399621Answer by Crossbrowser for Why does Generic class signature requires specifying new() if type T needs instantiation ?Crossbrowser2009-12-03T13:49:40Z2009-12-03T21:11:52Z<p>You could probably have use the Bar constructor:</p>
<pre><code>T _t = new Bar();
</code></pre>
<p>without having the <code>new()</code> constraint. However, you used the <code>T</code> constructor and the compiler can not and does not assume that constructing the type that gets bound to T is possible until you add a new() constraint.</p>
http://stackoverflow.com/questions/926729/activator-createinstance-throws-argumentnullexception-for-parameter-type0Activator.CreateInstance throws ArgumentNullException for parameter 'Type'Crossbrowser2009-05-29T15:53:49Z2009-12-03T15:59:48Z
<p>I recently encountered a problem with my Profile provider: it wouldn't retrieve profiles correctly (see error below). It worked locally, but when I put the code compiled by a Web Deployment project on a server it would crash.</p>
<blockquote>
<p>Value cannot be null.
Parameter name: type
Description: An unhandled exception occurred during the
execution of
the current web request. Please review the stack trace for more
information about the error and where it originated in the code.</p>
<p><strong>Strack Trace:</strong><br />
[ArgumentNullException: Value cannot be null.
Parameter name: type]
System.Activator.CreateInstance(Type type, Boolean nonPublic) +2796915
System.Web.Profile.ProfileBase.CreateMyInstance(String username, Boolean isAuthenticated) +76
System.Web.Profile.ProfileBase.Create(String username, Boolean isAuthenticated) +312</p>
</blockquote>
<p><img src="http://imgur.com/WJNkO.png" alt="Hosted by imgur.com" /></p>
<p><hr /></p>
<p>I found the solution, but it's far from being obvious (see my answer below).</p>
http://stackoverflow.com/questions/1839915/asp-net-griedview-change-properties-in-button-from-itemtemplate/1839947#18399470Answer by Crossbrowser for ASP.NET GriedView,change properties in Button from ItemTEmplate Crossbrowser2009-12-03T13:46:44Z2009-12-03T13:46:44Z<p>After the event is handled, the page probably reloads and resets the original text.</p>
<p>Maybe you could use JavaScript to do what you need.</p>
http://stackoverflow.com/questions/1826200/how-do-i-get-the-mouse-position-of-a-dom-element-that-is-a-child-of-a-relative-el/1826428#18264281Answer by Crossbrowser for How do I get the mouse position of a DOM element that is a child of a relative element?Crossbrowser2009-12-01T14:12:34Z2009-12-01T14:12:34Z<p>Here's the method I use when I want to get the mouse position in an element. It returns the <strong>y</strong> value in a standard axis (bottom -> top) or in the web axis (top -> bottom).</p>
<pre><code>/*
Get the position of the mouse event in a standard axis system
in relation to the given element.
Standard axis system:
The origin (0, 0) starts at the bottom-left and increases
going up for 'y' and right for 'x'.
*/
function GetMousePositionInElement(ev, element)
{
var offset = element.offset();
var bottom = offset.top + element.height();
var x = ev.pageX - offset.left;
var y = bottom - ev.pageY;
return { x: x, y: y, y_fromTop: element.height() - y };
}
</code></pre>
<p>It requires jQuery.</p>
http://stackoverflow.com/questions/1822272/how-can-i-create-a-templated-control-with-asp-net-mvc0How can I create a templated control with Asp.Net MVC?Crossbrowser2009-11-30T20:42:17Z2009-11-30T21:30:17Z
<p>I'm trying to create a templated control with Asp.Net MVC. By templated control, I mean a control that accepts markup as input like so:</p>
<pre><code><% Html.PanelWithHeader()
.HeaderTitle("My Header")
.Content(() =>
{ %>
<!-- ul used for no particular reason -->
<ul>
<li>A sample</li>
<li>A second item</li>
</ul>
<% }).Render(); %>
</code></pre>
<p>Note: Yes, this is very similar to <a href="http://demos.telerik.com/aspnet-mvc/menu/templates" rel="nofollow">how Telerik creates its MVC controls</a>, I like the syntax.</p>
<p>Here's my PanelWithHeader code:</p>
<pre><code>// Extend the HtmlHelper
public static PanelWithHeaderControl PanelWithHeader(this HtmlHelper helper)
{
return new PanelWithHeaderControl();
}
public class PanelWithHeaderControl
{
private string headerTitle;
private Action getContentTemplateHandler;
public PanelWithHeaderControl HeaderTitle(string headerTitle)
{
this.headerTitle = headerTitle;
return this;
}
public PanelWithHeaderControl Content(Action getContentTemplateHandler)
{
this.getContentTemplateHandler = getContentTemplateHandler;
return this;
}
public void Render()
{
// display headerTitle as <div class="header">headerTitle</div>
getContentTemplateHandler();
}
}
</code></pre>
<p>This displays the <code>ul</code>, but I have no idea how to display custom code within my Render method.</p>
<p>I have tried using the HtmlHelper with no success. I have also tried overriding the ToString method to be able to use the <code><%=Html.PanelWithHeader()...</code> syntax, but I kept having syntax errors.</p>
<p>How can I do this?</p>
http://stackoverflow.com/questions/1822272/how-can-i-create-a-templated-control-with-asp-net-mvc/1822524#18225240Answer by Crossbrowser for How can I create a templated control with Asp.Net MVC?Crossbrowser2009-11-30T21:30:17Z2009-11-30T21:30:17Z<p>It turns out that the <a href="http://telerikaspnetmvc.codeplex.com/" rel="nofollow">Telerik MVC extensions are open-source and available at CodePlex</a> so I took a quick look at the source code.</p>
<p>They create an HtmlTextWriter from the ViewContext of the HtmlHelper instance. When they write to it, it writes to the page.</p>
<p>The code becomes:</p>
<pre><code>// Extend the HtmlHelper
public static PanelWithHeaderControl PanelWithHeader(this HtmlHelper helper)
{
HtmlTextWriter writer = helper.ViewContext.HttpContext.Request.Browser.CreateHtmlTextWriter(helper.ViewContext.HttpContext.Response.Output);
return new PanelWithHeaderControl(writer);
}
public class PanelWithHeaderControl
{
private HtmlTextWriter writer;
private string headerTitle;
private Action getContentTemplateHandler;
public PanelWithHeaderControl(HtmlTextWriter writer)
{
this.writer = writer;
}
public PanelWithHeaderControl HeaderTitle(string headerTitle)
{
this.headerTitle = headerTitle;
return this;
}
public PanelWithHeaderControl Content(Action getContentTemplateHandler)
{
this.getContentTemplateHandler = getContentTemplateHandler;
return this;
}
public void Render()
{
writer.Write("<div class=\"panel-with-header\"><div class=\"header\">" + headerTitle + "</div><div class=\"content-template\">");
getContentTemplateHandler();
writer.Write("</div></div>");
}
}
</code></pre>
<p>*I know, the code is a mess</p>
http://stackoverflow.com/questions/416727/url-rewriting-under-iis-at-godaddy4URL Rewriting under IIS at GoDaddyCrossbrowser2009-01-06T14:26:19Z2009-11-29T06:43:18Z
<p>I'm trying to get URL rewriting to work under IIS 7 at GoDaddy. I have wordpress installed and would like to use the "pretty" permalinks.</p>
<p>After searching I found a few articles at learn.iis.net (<a href="http://learn.iis.net/page.aspx/468/using-global-and-distributed-rewrite-rules/" rel="nofollow">general info</a> and <a href="http://learn.iis.net/page.aspx/466/enabling-pretty-permalinks-in-wordpress/" rel="nofollow">specific info for wordpress</a>) but nothing from those articles helped me.</p>
<p>I tried adding a web.config with the following configuration:</p>
<pre><code><?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<rewrite>
<rules>
<rule name="Main Rule" stopProcessing="true">
<match url=".*" />
<conditions logicalGrouping="MatchAll">
<add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
<add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" />
</conditions>
<action type="Rewrite" url="index.php" />
</rule>
</rules>
</rewrite>
</system.webServer>
</configuration>
</code></pre>
<p>An error 500 appears if I use this <em>web.config</em>, it doesn't recognize the <em>rewrite</em> tag. So I tried contacting GoDaddy support and they replied with this message:</p>
<blockquote>
<p>You would be able to perform URL rewriting however we would be unable to provide technical support on how to accomplish this. I apologize for any inconvenience. </p>
</blockquote>
<p>So they do support URL rewriting but they do not want to tell us how.</p>
<p>Anyone had this problem and managed to fix it?</p>
<p><hr /></p>
<p><strong><em>Update from GoDaddy</em></strong></p>
<blockquote>
<p>Thank you for contacting Online
Support. I apologize for the
confusion. While you are able to use
URL rewriting with any of our Windows
hosting accounts we are unable to
provide support on this. That being
said if we do not provide support on a
specific subject there are not going
to see any help articles related to
this within our help center since we
cannot support it. You will need to
use a search engine or community forum
for assistance with setting up URL
rewriting with your account. I
apologize for any inconvenience this
may cause.</p>
</blockquote>
<p>Looks like I either find the solution here or use a Linux hosting account (which I'd rather not).</p>
http://stackoverflow.com/questions/1797205/jquery-get-certain-element-from-selector/1797213#17972133Answer by Crossbrowser for jQuery: get certain element from selectorCrossbrowser2009-11-25T14:23:54Z2009-11-25T14:23:54Z<p>Try this:</p>
<pre><code>items.eq(2) // gets the third element (zero-based index)
</code></pre>
<p>Source: <a href="http://docs.jquery.com/Traversing/eq#index" rel="nofollow">http://docs.jquery.com/Traversing/eq#index</a></p>
http://stackoverflow.com/questions/1796619/how-to-access-the-content-of-an-iframe-with-jquery0How to access the content of an iframe with jQuery?Crossbrowser2009-11-25T12:31:09Z2009-11-25T12:39:30Z
<blockquote>
<p><strong>Disclaimer</strong></p>
<p>I struggled to find the answer yesterday, so I thought I'd post the answer here for everyone.</p>
</blockquote>
<p>How can I access the content of an iframe with jQuery? I tried doing this, but it wouldn't work:</p>
<p><strong>iframe content:</strong> <code><div id="myContent"></div></code></p>
<p><strong>jQuery:</strong> <code>$("#myiframe").find("#myContent")</code></p>
<p>How can access <code>myContent</code>?</p>
<p><hr></p>
<blockquote>
<p><strong>Similar to</strong> <a href="http://stackoverflow.com/questions/364952/jquery-javascript-accessing-contents-of-an-iframe">jquery/javascript: accessing contents of an iframe</a> but the accepted answer is not what I was looking for.</p>
</blockquote>
http://stackoverflow.com/questions/1796619/how-to-access-the-content-of-an-iframe-with-jquery/1796621#17966212Answer by Crossbrowser for How to access the content of an iframe with jQuery?Crossbrowser2009-11-25T12:32:04Z2009-11-25T12:32:04Z<p>You have to use the <code>contents()</code> method:</p>
<pre><code>$("#myiframe").contents().find("#myContent")
</code></pre>
<p>Source: <a href="http://simple.procoding.net/2008/03/21/how-to-access-iframe-in-jquery/" rel="nofollow">http://simple.procoding.net/2008/03/21/how-to-access-iframe-in-jquery/</a></p>
http://stackoverflow.com/questions/6611/ie6-to-support-or-not-to-support31IE6: To support or not to support.Crossbrowser2008-08-09T04:29:31Z2009-11-06T10:40:33Z
<p>As most Web developers know, IE6 is a pain to support when it comes to making a website look and feel just as in the other major browsers (Firefox and IE7). I'd like to know what are the feelings of other developers toward supporting IE6 on their websites.</p>
<p>Of course if your main user base uses IE6 or if you're working for a client that requires you to make it work in IE6, you don't even ask, but what about a web blog for example?</p>
<p><hr /></p>
<p>An interesting idea to help converting users: <a href="http://www.savethedevelopers.org/" rel="nofollow">http://www.savethedevelopers.org/</a></p>
<p>Articles about the subject:</p>
<ul>
<li><a href="http://ryanfarley.com/blog/archive/2008/08/18/why-i-am-no-longer-supporting-ie6.aspx" rel="nofollow">Why I Am No Longer Supporting
IE6</a></li>
<li><a href="http://www.sitepoint.com/blogs/2008/08/25/is-it-time-to-ditch-ie6/" rel="nofollow">Is it Time to Ditch IE6?</a></li>
</ul>
http://stackoverflow.com/questions/4689/recommended-fonts-for-programming/6618#661836Answer by Crossbrowser for Recommended Fonts for Programming?Crossbrowser2008-08-09T04:49:02Z2009-10-29T01:09:37Z<p>I really really like <a href="http://dejavu.sourceforge.net/wiki/index.php/Main%5FPage" rel="nofollow"><em>DejaVu Sans Mono</em></a>. It is very clean and easy on the eyes.</p>
http://stackoverflow.com/questions/1618955/content-specific-javascript-and-master-pages/1619008#16190080Answer by Crossbrowser for Content Specific JavaScript and Master PagesCrossbrowser2009-10-24T20:32:14Z2009-10-24T20:32:14Z<p>Have you tried including the script using the <a href="http://msdn.microsoft.com/en-us/library/system.web.ui.clientscriptmanager.registerclientscriptinclude.aspx" rel="nofollow">ClientScriptManager</a>?</p>
<p>Use the manager's RegisterClientScriptInclude method in your Page_PreRender event.</p>
http://stackoverflow.com/questions/1585211/what-else-is-there-to-do-a-programmers-guide-to-understanding-himself/1585244#15852441Answer by Crossbrowser for What else is there to do? A programmers guide to understanding himselfCrossbrowser2009-10-18T16:02:56Z2009-10-18T16:02:56Z<p>If you have free time, do projects in a language you find interesting. Ruby on Rails is definitely a good candidate, but in the end the language doesn't really matter, the project is what's important.</p>
<p>C# is actually pretty useful too for Web development along with ASP.NET.</p>
http://stackoverflow.com/questions/11046/forum-software-recommendations-net1Forum software recommendations (.net)Crossbrowser2008-08-14T13:54:56Z2009-10-17T02:56:59Z
<p>Do you use or do you know a good .net forum software?</p>
<p>It can be free or not. It should have the common features normally found in a forum software.</p>
<p>So far, the best I've come up with is: <a href="http://www.yetanotherforum.net/" rel="nofollow">YetAnotherForum</a></p>
http://stackoverflow.com/questions/1535623/is-there-anything-like-code-igniters-dbforge-for-c0Is there anything like Code Igniter's DBForge for C#?Crossbrowser2009-10-08T04:28:47Z2009-10-08T04:46:08Z
<blockquote>
<p>The <a href="http://codeigniter.com/user%5Fguide/database/forge.html" rel="nofollow">Database Forge Class</a> contains functions that help you manage your database.</p>
</blockquote>
<p>It can:</p>
<ul>
<li>Create or drop a database</li>
<li>Add fields and keys</li>
<li>Create, drop and modify a table</li>
</ul>
<p>I was wondering if anything like that existed for C# or .Net.</p>
<p>Otherwise, I think I have a little project on my hands.</p>
http://stackoverflow.com/questions/1508783/how-do-i-change-an-img-tag-so-that-i-can-choose-the-image-in-css/1508842#15088422Answer by Crossbrowser for How do I change an <img> tag so that I can choose the image in CSS?Crossbrowser2009-10-02T10:47:42Z2009-10-02T10:47:42Z<p>I don't think you can using purely CSS unless you specify the width and height. So just set the width and height in your CSS along with your image as background-image and your fine. You know which image you use in the theme so you should know its dimensions.</p>
<pre><code>/* Theme1.css */
.ThemeImage
{
background-image: url('imageTheme1.jpg');
width: 150px;
height: 100px;
}
/* Theme2.css */
.ThemeImage
{
background-image: url('imageTheme2.jpg');
width: 300px;
height: 50px;
}
</code></pre>
<p>etc.</p>
http://stackoverflow.com/questions/1504022/is-there-an-ideal-size-for-background-images2Is there an ideal size for background images?Crossbrowser2009-10-01T13:36:41Z2009-10-01T13:55:30Z
<p>For example, would a 1x1 image load faster than a 2x2? The size would be smaller, but the browser would have to work twice as much, right?</p>
<p>So, is there an ideal size and shape (square vs rectangle) for background images?</p>
<p>I know it's probably not too important, but I'm interested to know.</p>
<p>Thank you</p>
http://stackoverflow.com/questions/1392268/how-to-use-css-to-square-the-corner-on-a-submit-button/1392274#1392274-1Answer by Crossbrowser for How to use CSS to square the corner on a submit buttonCrossbrowser2009-09-08T06:17:21Z2009-09-08T06:17:21Z<p>You could use the HTML <em></em> element instead of input type. It's quite easy to style that one.</p>
http://stackoverflow.com/questions/1347800/javascript-return-false-from-function/1347819#13478192Answer by Crossbrowser for Javascript return false - from functionCrossbrowser2009-08-28T15:41:38Z2009-08-28T15:41:38Z<p>You can use it as follow:</p>
<pre><code>return validateLogin();
</code></pre>
<p>however, as mmayo pointed out, don't forget about the return value:</p>
<pre><code>event.returnValue = false;
</code></pre>
http://stackoverflow.com/questions/553767/wordpress-permalinks-only-using-the-postid-from-the-url0Wordpress permalinks: only using the post_id from the URLCrossbrowser2009-02-16T15:55:07Z2009-08-26T00:00:21Z
<p>I'm trying to have SEO friendly URLs for my wordpress blog, while still having the flexibility to change a post's title at will.</p>
<p>My permalink structure would be like this:</p>
<blockquote>
<p>%post_id%/%postname%</p>
</blockquote>
<p>However, I'd like wordpress to just consider the %post_id% from the URL when looking for the appropriate post (sort of like here on stackoverflow)</p>
<p>For example:</p>
<p><strong><a href="http://stackoverflow.com/users/810/crossbrowser">http://stackoverflow.com/users/810/crossbrowser</a></strong> is the same as <strong><a href="http://stackoverflow.com/users/810/hello-world">http://stackoverflow.com/users/810/hello-world</a></strong></p>
<p>I'd like all of these to point to the same post, the one with id 345:</p>
<pre><code>http://myblog.com/345/the-name-of-the-post
http://myblog.com/345/any-text
http://myblog.com/345
</code></pre>
<p><hr /></p>
<p>The documentation mentions something that seems like what I'm trying to do: <a href="http://codex.wordpress.org/Using%5FPermalinks#Long%5FPermalinks" rel="nofollow">Long permalinks</a>, but I couldn't get it to work.</p>
<p>Here's my .htaccess file:</p>
<pre><code>RewriteEngine on
RewriteBase /
# Let wordpress use pretty permalinks
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
# From the example in the documentation
#RewriteRule /post/([0-9]+)?/?([0-9]+)?/?$ /index.php?p=$1&page=$2 [QSA]
</code></pre>
<p><hr /></p>
<p><strong>UPDATE</strong></p>
<p>I keep trying this RewriteRule in this <a href="http://www.gskinner.com/RegExr/" rel="nofollow">online regular expression testing tool</a>, but it doesn't work when I put it in my .htaccess (just after RewriteBase):</p>
<pre><code>RewriteRule ^([0-9]+)/?([a-zA-Z0-9\-]+)/?$ index.php?p=$1 [QSA]
</code></pre>
http://stackoverflow.com/questions/1314729/is-a-domain-object-any-class-that-represents-business-rules/1314735#13147352Answer by Crossbrowser for Is a "domain object" any class that represents business rules?Crossbrowser2009-08-22T00:10:31Z2009-08-22T00:10:31Z<p>That would be a <strong>Domain Service</strong>. A <strong>Domain Object</strong> would be something like <em>Income</em> or <em>TaxPayer</em>. That object could have a <em>Taxes</em> property that calls the <strong>Domain Service</strong> to calculate the amount of taxes due according to the rules for example.</p>
http://stackoverflow.com/questions/1294219/c-date-formatting/1294262#12942620Answer by Crossbrowser for C# date formattingCrossbrowser2009-08-18T14:29:55Z2009-08-18T14:29:55Z<p>What I usually do (with any parsing) is:</p>
<ol>
<li>TryParse using the culture of the user</li>
<li>If it fails, Parse using the culture invariant flag</li>
</ol>
http://stackoverflow.com/questions/1288763/why-use-jquery/1288799#12887992Answer by Crossbrowser for Why use JQuery?Crossbrowser2009-08-17T15:58:57Z2009-08-17T15:58:57Z<ul>
<li>Faster development time</li>
<li>Less time spent on compatibility issues (cross-browser bugs are mostly taken care of by the framework)</li>
<li>Ease of use: Let's you do great things easily</li>
</ul>
http://stackoverflow.com/questions/7089/what-is-the-best-way-to-create-rounded-corners-using-css/7971#79712Answer by Crossbrowser for What is the best way to create rounded corners using CSS?Crossbrowser2008-08-11T17:23:09Z2009-08-12T15:53:40Z<p>There's always the JavaScript way (see other answers) but since it's is purely styling, I'm kind of against use client scripts to achieve this.</p>
<p>The way I prefer (though it has its limits), is to use 4 rounded corner images that you will position in the 4 corners of your box using CSS:</p>
<pre><code><div class="Rounded">
// content
<div class="RoundedCorner RoundedCorner-TopLeft"></div>
<div class="RoundedCorner RoundedCorner-TopRight"></div>
<div class="RoundedCorner RoundedCorner-BottomRight"></div>
<div class="RoundedCorner RoundedCorner-BottomLeft"></div>
</div>
</code></pre>
<p><hr /></p>
<pre><code>/********************************
* Rounded styling
********************************/
.Rounded
{
position: relative;
}
.Rounded .RoundedCorner
{
position: absolute;
background-image: url('SpriteSheet.png');
background-repeat: no-repeat;
overflow: hidden;
/* Size of the rounded corner images */
height: 5px;
width: 5px;
}
.Rounded .RoundedCorner-TopLeft
{
top: 0;
left: 0;
/* No background position change (or maybe depending on your sprite sheet) */
}
.Rounded .RoundedCorner-TopRight
{
top: 0;
right: 0;
/* Move the sprite sheet to show the appropriate image */
background-position: -5px 0;
}
/* Hack for IE6 */
* html .Rounded .RoundedCorner-TopRight
{
right: -1px;
}
.Rounded .RoundedCorner-BottomLeft
{
bottom: 0;
left: 0;
/* Move the sprite sheet to show the appropriate image */
background-position: 0 -5px;
}
/* Hack for IE6 */
* html .Rounded .RoundedCorner-BottomLeft
{
bottom: -20px;
}
.Rounded .RoundedCorner-BottomRight
{
bottom: 0;
right: 0;
/* Move the sprite sheet to show the appropriate image */
background-position: -5px -5px;
}
/* Hack for IE6 */
* html .Rounded .RoundedCorner-BottomRight
{
bottom: -20px;
right: -1px;
}
</code></pre>
<p><hr /></p>
<p>As mentioned, it has its limits (the background behind the rounded box should be plain otherwise the corners won't match the background), but it works very well for anything else.</p>
<p><hr /></p>
<p><strong>Updated:</strong> Improved the implentation by using a sprite sheet.</p>
http://stackoverflow.com/questions/701412/how-to-find-controls-in-a-repeater-header-or-footer2How to find controls in a repeater header or footerCrossbrowser2009-03-31T15:00:12Z2009-07-27T04:13:10Z
<p>I was wondering how one would find the controls in the HeaderTemplate or FooterTemplate of an Asp.Net Repeater control.</p>
<p>I can access them on the ItemDataBound event, but I was wondering how to get them after (for example to retrieve a value of an input in the header/footer).</p>
<p>Note: I posted this question here after finding the answer just so that I remember it (and maybe other people might find this useful).</p>
http://stackoverflow.com/questions/1088932/asp-net-server-control-postback/1093949#10939490Answer by Crossbrowser for Asp.NET Server Control PostbackCrossbrowser2009-07-07T18:21:32Z2009-07-07T18:21:32Z<p>Check the identifier of the button control before the postback and after the postback. If it's not the same, it won't work.</p>
<p>You can overwrite the identifier yourself if needed.</p>
http://stackoverflow.com/questions/1069722/sending-username-and-password-through-email-after-user-registration-in-web-applic/1074555#10745550Answer by Crossbrowser for sending username and password through email after user registration in web applicationCrossbrowser2009-07-02T14:04:16Z2009-07-02T14:04:16Z<p>I have three rules concerning passwords:</p>
<blockquote>
<ul>
<li>Don’t store passwords in plain text in the database
<ul>
<li>Why should people trust you with that kind of information? You may only have good intentions, but big companies have failed before, so you're at risk too.</li>
</ul></li>
<li>Don’t use password reminders
<ul>
<li><a href="http://arstechnica.com/security/news/2009/05/backup-authentication-info-easy-to-guess-hard-to-remember.ars" rel="nofollow">Password reminders are not worth it</a>. They are easy to guess from people in your entourage and you often forget them. There are better ways to reset a password.</li>
</ul></li>
<li>Always offer to send a new password by email
<ul>
<li>This is the most secure way of retrieving passwords. You should force the user to change the password once logged in with the new password.</li>
</ul></li>
</ul>
</blockquote>
http://stackoverflow.com/questions/1059142/do-i-need-to-do-streamwriter-flush/1059198#10591980Answer by Crossbrowser for Do I need to do StreamWriter.flush() ?Crossbrowser2009-06-29T16:20:23Z2009-06-29T18:40:15Z<p><strong>Update</strong></p>
<p>Nevermind this answer, I got confused with the writers...</p>
<p><hr /></p>
<ol>
<li>No, the order will be preserved (<strong>update:</strong> maybe not). Flush is useful/needed in other situations, though I can't remember when.</li>
<li>I think so, <em>using</em> makes sure everything cleans up nicely.</li>
</ol>
http://stackoverflow.com/questions/1844207/how-to-make-a-div-to-wrap-two-float-divs-inside/1844215#1844215Comment by Crossbrowser on how to make a div to wrap two float divs inside?Crossbrowser2009-12-04T01:11:16Z2009-12-04T01:11:16ZA div is already a block element so you can remove that from your style.http://stackoverflow.com/questions/1839734/why-does-generic-class-signature-requires-specifying-new-if-type-t-needs-instan/1839962#1839962Comment by Crossbrowser on Why does Generic class signature requires specifying new() if type T needs instantiation ?Crossbrowser2009-12-03T21:12:04Z2009-12-03T21:12:04ZGood suggestion, thankshttp://stackoverflow.com/questions/1822272/how-can-i-create-a-templated-control-with-asp-net-mvc/1822284#1822284Comment by Crossbrowser on How can I create a templated control with Asp.Net MVC?Crossbrowser2009-11-30T21:24:38Z2009-11-30T21:24:38ZThis would work, but its ugly and requires the user to remember to call both.http://stackoverflow.com/questions/1559983/string-replacing-c/1559997#1559997Comment by Crossbrowser on string replacing - C#Crossbrowser2009-10-13T12:48:44Z2009-10-13T12:48:44ZYou missed the letter 'd'http://stackoverflow.com/questions/1535623/is-there-anything-like-code-igniters-dbforge-for-c/1535679#1535679Comment by Crossbrowser on Is there anything like Code Igniter's DBForge for C#?Crossbrowser2009-10-08T10:00:36Z2009-10-08T10:00:36ZConsidering there hasn't been any update since January 2008, I'm gonna pass on it.http://stackoverflow.com/questions/416727/url-rewriting-under-iis-at-godaddy/1525451#1525451Comment by Crossbrowser on URL Rewriting under IIS at GoDaddyCrossbrowser2009-10-06T18:30:41Z2009-10-06T18:30:41ZAnyone can confirm this?http://stackoverflow.com/questions/1508783/how-do-i-change-an-img-tag-so-that-i-can-choose-the-image-in-css/1508842#1508842Comment by Crossbrowser on How do I change an <img> tag so that I can choose the image in CSS?Crossbrowser2009-10-02T12:36:47Z2009-10-02T12:36:47ZI'd put it in a DIV personally, though there is no "best" tag. If you use a span you need to use display: block or inline-block to be able to set the dimensions.http://stackoverflow.com/questions/1504022/is-there-an-ideal-size-for-background-images/1504053#1504053Comment by Crossbrowser on Is there an ideal size for background images?Crossbrowser2009-10-01T17:27:48Z2009-10-01T17:27:48ZI had to use a 1x1 transparent image in a project to catch clicks in a Div, otherwise the clicks wouldn't be caught on the div, but by whatever was behind it (IE only).http://stackoverflow.com/questions/1437812/how-to-pass-data-from-javascript-to-c-asp-net-mvc/1437827#1437827Comment by Crossbrowser on How to pass data from javascript to c# (asp.net mvc)Crossbrowser2009-09-17T13:13:04Z2009-09-17T13:13:04ZThat's what I use and it works pretty well.http://stackoverflow.com/questions/1401658/html-overlay-which-allows-clicks-to-fall-through-to-elements-behind-it/1401688#1401688Comment by Crossbrowser on HTML "overlay" which allows clicks to fall through to elements behind itCrossbrowser2009-09-12T10:19:10Z2009-09-12T10:19:10ZI think that if the overlay is transparent (as in no background, a transparent image as background will not work), clicks will fall through. I'm not sure if this works for all browsers though.http://stackoverflow.com/questions/1392268/how-to-use-css-to-square-the-corner-on-a-submit-button/1392274#1392274Comment by Crossbrowser on How to use CSS to square the corner on a submit buttonCrossbrowser2009-09-08T10:28:53Z2009-09-08T10:28:53ZThere's a button HTML element and it's sort of like a DIV. Take a look at this wonderful article: <a href="http://particletree.com/features/rediscovering-the-button-element/" rel="nofollow">particletree.com/features/…</a>http://stackoverflow.com/questions/1347800/javascript-return-false-from-function/1347808#1347808Comment by Crossbrowser on Javascript return false - from functionCrossbrowser2009-08-28T18:35:34Z2009-08-28T18:35:34ZEven though return false is supposed to work on every machine, my machine <i>REQUIRES</i> that event.returnValue be set to false. I think most machine don't need it, but it's important to know that a tiny fraction do.http://stackoverflow.com/questions/1314729/is-a-domain-object-any-class-that-represents-business-rules/1314735#1314735Comment by Crossbrowser on Is a "domain object" any class that represents business rules?Crossbrowser2009-08-22T01:26:07Z2009-08-22T01:26:07Z@tom w: No one would stop you, but that is not the "correct" way of doing things. As I said, my domain objects do implement a little logic.http://stackoverflow.com/questions/1314729/is-a-domain-object-any-class-that-represents-business-rules/1314735#1314735Comment by Crossbrowser on Is a "domain object" any class that represents business rules?Crossbrowser2009-08-22T00:53:25Z2009-08-22T00:53:25Z@tom w: I wouldn't know but I have over 2 years of experience in Domain-Driven Design and that's how we see things where I work.http://stackoverflow.com/questions/1314729/is-a-domain-object-any-class-that-represents-business-rules/1314735#1314735Comment by Crossbrowser on Is a "domain object" any class that represents business rules?Crossbrowser2009-08-22T00:48:14Z2009-08-22T00:48:14Z@tom w: The domain object can perform some actions, but only minor calculations. For more complex rules like calculating taxes, a domain service is usually the way to go.
@duffymo: indeed, not the only way