User roosteronacid - Stack Overflow most recent 30 from stackoverflow.com 2009-12-06T07:31:32Z http://stackoverflow.com/feeds/user/20946 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1832682/read-contents-of-a-file-using-a-relative-path-in-a-web-application 0 Read contents of a file using a relative path in a Web Application roosteronacid 2009-12-02T12:44:01Z 2009-12-02T12:59:32Z <p>How can I read the contents of a text file in my Web Application, using a relative path/URL?</p> <p>The files are located in a directory at the root of my application.</p> <p>I don't want to specify the full path to the file I want to access, since my test environment is not an exact mirror of my production environment.</p> http://stackoverflow.com/questions/1812628/is-there-any-site-i-can-type-in-a-html-color-and-see-the-actual-color/1812674#1812674 2 Answer by roosteronacid for is there any site i can type in a HTML color and see the actual color roosteronacid 2009-11-28T14:47:35Z 2009-11-28T14:47:35Z <p>Check out <a href="http://kuler.adobe.com/" rel="nofollow">Kuler</a>. In my opinion; the coolest coler-app out there.</p> http://stackoverflow.com/questions/1795959/define-an-anonymous-structure-as-a-parameter-in-a-method 0 Define an anonymous structure as a parameter in a method roosteronacid 2009-11-25T10:17:50Z 2009-11-26T13:46:47Z <p>Can I define an object-structure as a parameter to a method in the parameter declaration without having to create a type?</p> <p>I am inspired by LINQ to SQL queries, where you are able to return a subset of your query-results in the form of a new object:</p> <pre><code>var query = from t in dc.Table select new { Foo = t.column }; </code></pre> http://stackoverflow.com/questions/1803483/deploying-a-form-less-windows-forms-application-as-an-exe-file 0 Deploying a form-less Windows Forms application as an exe-file roosteronacid 2009-11-26T12:46:12Z 2009-11-26T13:38:40Z <p>How can you deploy a Windows Forms application to a single <strong>.exe file</strong> so that your users won't have to install your application, but just run it?</p> http://stackoverflow.com/questions/1803483/deploying-a-form-less-windows-forms-application-as-an-exe-file/1803714#1803714 1 Answer by roosteronacid for Deploying a form-less Windows Forms application as an exe-file roosteronacid 2009-11-26T13:38:40Z 2009-11-26T13:38:40Z <p>Go to the bin directory of your solution. The raw <strong>.exe-file</strong> is located in the Release directory:</p> <blockquote> <p><strong>[Your solution directory] \ bin \ Release</strong></p> </blockquote> http://stackoverflow.com/questions/1796851/unable-to-access-configurationmanager-appsettings-in-a-windows-forms-application 1 Unable to access ConfigurationManager.AppSettings in a Windows Forms Application roosteronacid 2009-11-25T13:17:25Z 2009-11-25T13:24:58Z <p>How can I access <code>ConfigurationManager.AppSettings</code> in my Windows Forms Application?</p> <p>The error message reads: The name 'ConfigurationManager' does not exist in the current context.</p> http://stackoverflow.com/questions/1791221/cgi-language-choice/1791920#1791920 2 Answer by roosteronacid for CGI language choice roosteronacid 2009-11-24T18:15:32Z 2009-11-24T18:24:13Z <p>Use jQuery and PHP.</p> <p>Both technologies are well documented, and you should be able to get an application up and running in a matter of hours. You sound like you know a thing or two - talking about CRUD operations and so on - so I won't bore you with examples. And as far as JSON goes, there are probably a million PHP libraries out there, for outputting JSON objects.</p> http://stackoverflow.com/questions/182630/jquery-tips-and-tricks 89 jQuery Tips and Tricks roosteronacid 2008-10-08T13:06:00Z 2009-11-22T18:23:02Z <p>In the spirit of all the meta-questions of tips and tricks for various languages:</p> <p><strong>No conflict-mode</strong></p> <pre><code>jQuery.noConflict(); </code></pre> <blockquote> <p>"Run this function to give control of the <code>$</code> variable back to whichever library first implemented it. This helps to make sure that jQuery doesn't conflict with the <code>$</code> object of other libraries.</p> <p>By using this function, you will only be able to access jQuery using the <code>jQuery</code> variable. For example, where you used to do <code>$("div p")</code>, you now must do <code>jQuery("div p")</code>".</p> </blockquote> <p><strong>Shorthand for the ready event</strong></p> <p>Instead of writing:</p> <pre><code>$(document).ready(function (){ }); </code></pre> <p>You can do:</p> <pre><code>$(function (){ }); </code></pre> <p><strong>Line breaks and chainability</strong></p> <p>Instead of doing:</p> <pre><code>$("a").hide().addClass().fadeIn().hide(); </code></pre> <p>You can increase readability like so:</p> <pre><code>$("a") .hide() .addClass() .fadeIn() .hide(); </code></pre> http://stackoverflow.com/questions/1778418/storing-one-column-of-data-in-a-combobox/1778435#1778435 0 Answer by roosteronacid for Storing one column of data in a combobox roosteronacid 2009-11-22T11:05:50Z 2009-11-22T11:05:50Z <p>Call <code>DataBind()</code> on your comboBox1 control:</p> <pre><code>this.comboBox1.DataSource = da; this.comboBox1.DataBind(); </code></pre> http://stackoverflow.com/questions/1778307/two-forms-with-same-input-id-in-asp-net-mvc/1778413#1778413 0 Answer by roosteronacid for two forms with same input id in asp.net mvc roosteronacid 2009-11-22T10:53:31Z 2009-11-22T10:53:31Z <p>I always prefix my column-names with the table name. Here's the database-layout of my latest MVC-project (using strongly typed views and LINQ to SQL):</p> <pre><code>WeblogEntries: - WeblogEntryId - WeblogEntryHeaderText - WeblogEntryBodyText - WeblogEntryDate WeblogComments: - WeblogCommentId - WeblogCommentBodyText - WeblogCommentDate WeblogErrors - WeblogErrorId - WeblogErrorExceptionMessage - WeblogErrorExceptionStackTrace - WeblogErrorDate </code></pre> <p>These naming conventions work great with the entity classes that gets generated using dbml-files.</p> http://stackoverflow.com/questions/1778334/how-can-aptana-show-jquery-code-assist-for-when-jquery-is-in-no-conflict-mode/1778392#1778392 0 Answer by roosteronacid for How can Aptana show jQuery code assist for $ when jQuery is in no conflict mode? roosteronacid 2009-11-22T10:45:16Z 2009-11-22T10:45:16Z <p>One way to go about this would be to leave out the closure call during development. And implement it at release.</p> http://stackoverflow.com/questions/182630/jquery-tips-and-tricks/552831#552831 3 Answer by roosteronacid for jQuery Tips and Tricks roosteronacid 2009-02-16T10:08:42Z 2009-11-20T17:00:46Z <p>Syntactic shorthand-sugar-thing--Cache an object collection and execute commands on one line:</p> <p><strong>Instead of:</strong></p> <pre><code>var jQueryCollection = $(""); jQueryCollection.command().command(); </code></pre> <p><strong>I do:</strong></p> <pre><code>var jQueryCollection = $("").command().command(); </code></pre> <p>A somewhat "real" use case could be something along these lines:</p> <pre><code>var cache = $("#container div.usehovereffect").mouseover(function () { cache.removeClass("hover"); $(this).addClass("hover"); }); </code></pre> http://stackoverflow.com/questions/1764278/build-a-google-suggest-box-and-respond-to-keyboard-events-without-jquery/1766530#1766530 0 Answer by roosteronacid for Build a Google Suggest box and respond to keyboard events without jQuery roosteronacid 2009-11-19T21:04:43Z 2009-11-19T21:04:43Z <p>Take a look at <a href="http://code.google.com/p/js-hotkeys/" rel="nofollow">js-hotkeys</a>. I've used this library in many projects. It works in all A-grade browsers which allows you to catch key-events, and the license is pretty liberal.</p> http://stackoverflow.com/questions/1764644/target-schema-for-validation-to-ie7-in-asp-net-2-0/1766486#1766486 0 Answer by roosteronacid for target schema for validation to ie7 in asp.net 2.0 roosteronacid 2009-11-19T20:58:49Z 2009-11-19T20:58:49Z <p>Might help you to read <a href="http://www.quirksmode.org/js/placejs.html" rel="nofollow">this article</a> on Quirksmode.</p> http://stackoverflow.com/questions/1763050/accessing-controls-added-programmatically-on-postback 0 Accessing controls added programmatically on postback roosteronacid 2009-11-19T12:45:13Z 2009-11-19T14:06:49Z <p><strong>On postback</strong>: How can I access ASP.NET controls in my code-behind file, which are added programmatically?</p> <p>I am adding a CheckBox control to a Placeholder control:</p> <pre><code>PlaceHolder.Controls.Add(new CheckBox { ID = "findme" }); </code></pre> <p>Controls added in the ASPX file are showing up fine in <code>Request.Form.AllKeys</code> except the ones I add programatically. What am I doing wrong?</p> <p>Enabling the use of the ViewState on the controls does not help. If only it was that simple :)</p> http://stackoverflow.com/questions/1669553/returning-a-view-with-its-model-from-an-actionfilterattribute 0 Returning a view with it's model from an ActionFilterAttribute roosteronacid 2009-11-03T19:18:37Z 2009-11-18T17:21:20Z <p>When implementing error-handling using the built-in validation-helpers on a strongly-typed view, you usually create a try/catch block within the controller and return a view with it's corresponding model as a parameter to the <code>View()</code> method: <br /><br /><br /> <strong>The controller</strong></p> <pre><code>public class MessageController : Controller { [AcceptVerbs(HttpVerbs.Post)] public ActionResult Create(Models.Entities.Message message) { try { // Insert model into database var dc = new DataContext(); dc.Messages.InsertOnSubmit(message); dc.SubmitChanges(); return RedirectToAction("List"); } catch { /* If insert fails, return a view with it's corresponding model to enable validation helpers */ return View(message); } } } </code></pre> <p><br /><br /> <strong>The view</strong></p> <pre><code>&lt;%@ Page Language="C#" Inherits="System.Web.Mvc.ViewPage&lt;Models.Entities.Message&gt;" %&gt; &lt;%= Html.ValidationSummary("Fill out fields marked with *") %&gt; &lt;% using (Html.BeginForm()) { %&gt; &lt;div&gt;&lt;%= Html.TextBox("MessageText") %&gt;&lt;/div&gt; &lt;div&gt;&lt;%= Html.ValidationMessage("MessageText", "*") %&gt;&lt;/div&gt; &lt;% } %&gt; </code></pre> <p><br /><br /> I've implemented a simple error-handler in the form of an ActionFilterAttribute, which will be able to either redirect to a generic error view, or redirect to the view which threw an exception, and let the validation-helpers spring to life.</p> <p>Here's how my ActionFilterAttribute looks:</p> <pre><code>public class ErrorLoggingAttribute : ActionFilterAttribute, IExceptionFilter { private Boolean _onErrorRedirectToGenericErrorView; /// &lt;param name="onErrorRedirectToGenericErrorView"&gt; /// True: redirect to a generic error view. /// False: redirect back the view which threw an exception /// &lt;/param&gt; public ErrorLoggingAttribute(Boolean onErrorRedirectToGenericErrorView) { _onErrorRedirectToGenericErrorView = onErrorRedirectToGenericErrorView; } public void OnException(ExceptionContext ec) { if (_onErrorRedirectToGenericErrorView) { /* Redirect back to the view where the exception was thrown and include it's model so the validation helpers will work */ } else { // Redirect to a generic error view ec.Result = new RedirectToRouteResult(new RouteValueDictionary { {"controller", "Error"}, {"action", "Index"} }); ec.ExceptionHandled = true; } } } </code></pre> <p>Redirecting to the view which threw the exception is fairly simple. But here's the kicker: In order for the validation helpers to work, you need to provide the view with it's model.</p> <p>How would you return the view which threw an exception and provide the view with it's corresponding model? (In this case <code>Models.Entities.Message</code>).</p> http://stackoverflow.com/questions/1497586/how-can-i-calculate-find-the-week-number-of-a-given-date 3 How can I calculate/find the week-number of a given date? roosteronacid 2009-09-30T11:34:25Z 2009-11-18T10:25:45Z <p>How can I calculate/find the week-number of a given date?</p> http://stackoverflow.com/questions/1669553/returning-a-view-with-its-model-from-an-actionfilterattribute/1752552#1752552 0 Answer by roosteronacid for Returning a view with it's model from an ActionFilterAttribute roosteronacid 2009-11-17T23:14:18Z 2009-11-18T00:10:43Z <p>I got it to work!</p> <p>For some odd reason, all I needed to do was to pass on the <code>ViewData</code> to a new <code>ResultView</code>. </p> <p>Here's the complete code:</p> <pre><code>public class ErrorLoggingAttribute : ActionFilterAttribute, IExceptionFilter { private String _controllerName, _actionName; private Boolean _redirectToGenericView = false; public ErrorLoggingAttribute() { } public ErrorLoggingAttribute(String actionName, String controllerName) { _controllerName = controllerName; _actionName = actionName; _redirectToGenericView = true; } void IExceptionFilter.OnException(ExceptionContext ec) { // log error if (_redirectToGenericView) { ec.Result = new RedirectToRouteResult(new RouteValueDictionary { {"controller", _controllerName}, {"action", _actionName} }); } else { ec.Result = new ViewResult { ViewName = ((RouteData) ec.RouteData).Values["action"].ToString(), TempData = ec.Controller.TempData, ViewData = ec.Controller.ViewData }; } ec.ExceptionHandled = true; } } </code></pre> <p><br /></p> <h2>Usage</h2> <p><br /> Here's how you would use the attribute on a controller-action, to redirect to the same view (<em>with</em> it's associated model) to enable standard validation-helpers to kick in, when an exception occurs:</p> <pre><code>[ErrorLogging] [AcceptVerbs(HttpVerbs.Post)] public ActionResult Create(Models.Entities.Message message) { var dc = new Models.DataContext(); dc.Messages.InsertOnSubmit(message); dc.SubmitChanges(); return RedirectToAction("List", new { id = message.MessageId }); } </code></pre> <p>And here's how you would use the attribute, to redirect to a generic view, when an exception occurs:</p> <pre><code>[ErrorLogging("ControllerName", "ViewName")] [AcceptVerbs(HttpVerbs.Post)] public ActionResult Create(Models.Entities.Message message) </code></pre> <p><br /> This is a <em>complete</em> separation of logic. Nothing in the controller but the very basics.</p> http://stackoverflow.com/questions/1751123/create-an-instance-of-a-type-provided-as-a-parameter-to-a-method 1 Create an instance of a Type, provided as a parameter to a method roosteronacid 2009-11-17T19:19:01Z 2009-11-17T22:45:19Z <p>The class to instantiate:</p> <pre><code>public class InstantiateMe { public String foo { get; set; } } </code></pre> <p>Some pseudo-code:</p> <pre><code>public void CreateInstanceOf(Type t) { var instance = new t(); instance.foo = "bar"; } </code></pre> <p>So far I'm figuring that I need to use reflection to get this done, given the dynamic nature of what I want to achieve.</p> <p>Here's my success criteria's:</p> <ul> <li>Create an instance of any type</li> <li>Create instances of types without having to invoke their constructor</li> <li>Access all public properties</li> </ul> <p>I would greatly appreciate some working example-code. I'm not new to C#, but I've never worked with reflection before.</p> http://stackoverflow.com/questions/1729501/javascript-overriding-alert 12 JavaScript: Overriding alert() roosteronacid 2009-11-13T14:22:30Z 2009-11-13T16:53:41Z <p>Has anyone got any experience with overriding the <code>alert()</code> function in JavaScript?</p> <ul> <li>Which browsers support this?</li> <li>Which browser-versions support this?</li> <li>What are the dangers in overriding the function?</li> </ul> http://stackoverflow.com/questions/1707166/installing-vs-2010-b2-net-4-b2-what-are-the-consequences-to-my-system-and-pre 0 Installing VS 2010 B2 & .NET 4 B2: What are the consequences to my system and previous installations of VS & .NET 3.5 SP1? roosteronacid 2009-11-10T11:05:08Z 2009-11-12T08:56:52Z <p>I want to try out the new Beta 2 of Visual Studio 2010, but I'm not sure if the installation <em>(or the included .NET Framework 4 Beta 2)</em> is self-contained, or if it will somehow impact my system beyond adding an entry for Visual Studio 2010 to my start menu.</p> <p>The machine I want to install Visual Studio 2010 is my main development machine, so it is critical that no changes are made to Visual Studio Team System 2008 &amp; .NET 3.5 SP1, already on the system.</p> <p>Can I install Visual Studio 2010 Beta 2 without breaking my development environment?</p> http://stackoverflow.com/questions/1666839/handing-forms-in-viewusercontrols 0 Handing forms in ViewUserControls roosteronacid 2009-11-03T11:50:11Z 2009-11-03T22:50:19Z <p>I am rendering out a ViewUserControl (.ascx file) in a view:</p> <pre><code>&lt;% Html.RenderPartial("Comments", Model.Comments); %&gt; </code></pre> <p>This ViewUserControl shows associated comments on an entry. I would like this control to render out a form as well, so users of my application can contribute.</p> <p>How would you add a form to a ViewUserControl and handle it's postback?</p> http://stackoverflow.com/questions/1656767/custom-objects-as-arguments-in-controller-methods-defined-by-maproutes 0 Custom objects as arguments in controller methods defined by MapRoutes roosteronacid 2009-11-01T09:52:42Z 2009-11-03T12:57:11Z <p>Consider this MapRoute:</p> <pre><code>MapRoute( "ResultFormat", "{controller}/{action}/{id}.{resultFormat}", new { controller = "Home", action = "Index", id = 0, resultFormat = "json" } ); </code></pre> <p>And it's controller method:</p> <pre><code>public ActionResult Index(Int32 id, String resultFormat) { var dc = new Models.DataContext(); var messages = from m in dc.Messages where m.MessageId == id select m; if (resultFormat == "json") { return Json(messages, JsonRequestBehavior.AllowGet); // case 2 } else { return View(messages); // case 1 } } </code></pre> <p>Here's the URL scenarios</p> <ul> <li><code>Home/Index/1</code> will go to case 1</li> <li><code>Home/Index/1.html</code> will go to case 1</li> <li><code>Home/Index/1.json</code> will go to case 2</li> </ul> <p>This works well. But I hate checking for strings. How would implement an <em>enum</em> to be used as the <code>resultFormat</code> parameter in the controller method? <br /><br /><br /> Some pseudo-code to explain the basic idea:</p> <pre><code>namespace Models { public enum ResponseType { HTML = 0, JSON = 1, Text = 2 } } </code></pre> <p>The MapRoute:</p> <pre><code>MapRoute( "ResultFormat", "{controller}/{action}/{id}.{resultFormat}", new { controller = "Home", action = "Index", id = 0, resultFormat = Models.ResultFormat.HTML } ); </code></pre> <p>The controller method signature:</p> <pre><code>public ActionResult Index(Int32 id, Models.ResultFormat resultFormat) </code></pre> http://stackoverflow.com/questions/1656767/custom-objects-as-arguments-in-controller-methods-defined-by-maproutes/1662549#1662549 0 Answer by roosteronacid for Custom objects as arguments in controller methods defined by MapRoutes roosteronacid 2009-11-02T17:18:06Z 2009-11-03T12:57:11Z <p>This is the ActionFilter I came up with:</p> <pre><code>public sealed class AlternateOutputAttribute : ActionFilterAttribute, IActionFilter { void IActionFilter.OnActionExecuted(ActionExecutedContext aec) { ViewResult vr = aec.Result as ViewResult; if (vr == null) return; var aof = aec.RouteData.Values["alternateOutputFormat"] as String; if (aof == "json") aec.Result = new JsonResult { JsonRequestBehavior = JsonRequestBehavior.AllowGet, Data = vr.ViewData.Model, ContentType = "application/json", ContentEncoding = Encoding.UTF8 }; } } </code></pre> http://stackoverflow.com/questions/1664226/force-a-complete-match-on-all-tokens-of-a-maproute-against-url-string 1 Force a complete match on all tokens of a MapRoute against URL string roosteronacid 2009-11-02T22:47:54Z 2009-11-02T22:58:34Z <p>Is there any way to force a Route to be executed, only if <em>all</em> tokens are present in the URL string?</p> <p>Consider this Route:</p> <pre><code>RouteTable.Routes.MapRoute( "Default", "{controller}/{action}/{id}", new { controller = "Test", action = "Index", id = 0 } ); </code></pre> <p>This Route execute on <code>/Home/Index/1</code> and <code>/Home/Index</code>. But I only want it to get executed if all tokens are present in the URL string: controller, action and id.</p> http://stackoverflow.com/questions/1662216/return-jsonresult-using-an-actionfilter-on-an-actionresult-in-a-controller 0 Return JsonResult using an ActionFilter on an ActionResult in a controller roosteronacid 2009-11-02T16:16:51Z 2009-11-02T17:00:39Z <p>I want to return the Model (data) of a controller in different formats (JavaScript/XML/JSON/HTML) using ActionFilter's. Here's where I'm at so far:</p> <p>The ActionFilter:</p> <pre><code>public class ResultFormatAttribute : ActionFilterAttribute, IResultFilter { void IResultFilter.OnResultExecuting(ResultExecutingContext context) { var viewResult = context.Result as ViewResult; if (viewResult == null) return; context.Result = new JsonResult { Data = viewResult.ViewData.Model }; } } </code></pre> <p>And the it's implementation:</p> <pre><code>[ResultFormat] public ActionResult Entries(String format) { var dc = new Models.WeblogDataContext(); var entries = dc.WeblogEntries.Select(e =&gt; e); return View(entries); } </code></pre> <p>The <code>OnResultExecuting</code> method gets called, but I am not getting the Model (data) returned and formatted as a JSON object. My controller just renders the View. <br /><br /><br /> <strong>Update:</strong> I am following the suggestion of Darin Dimitrov's answer to <a href="http://stackoverflow.com/questions/1656767/custom-objects-as-arguments-in-controller-methods-defined-by-maproutes/1657634#1657634">this question</a>.</p> http://stackoverflow.com/questions/1662216/return-jsonresult-using-an-actionfilter-on-an-actionresult-in-a-controller/1662456#1662456 0 Answer by roosteronacid for Return JsonResult using an ActionFilter on an ActionResult in a controller roosteronacid 2009-11-02T17:00:39Z 2009-11-02T17:00:39Z <p>This was what I was looking for:</p> <pre><code>public class ResultFormatAttribute : ActionFilterAttribute, IActionFilter { void IActionFilter.OnActionExecuted(ActionExecutedContext context) { context.Result = new JsonResult { Data = ((ViewResult)context.Result).ViewData.Model }; } } </code></pre> http://stackoverflow.com/questions/1649564/html-submitbutton-not-available-am-i-using-the-latest-version-og-asp-mvc 0 Html.SubmitButton not available. Am I using the latest version og ASP.MVC? roosteronacid 2009-10-30T12:34:44Z 2009-10-30T12:36:57Z <p>I installed what I assumed would be the latest version (<a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=53289097-73ce-43bf-b6a6-35e00103cb4b&amp;displaylang=en" rel="nofollow">link</a>) of ASP.NET MVC last night, but I don't have the <code>Html.SubmitButton</code> helper available to me.</p> <p>I've seen it used in some of the video tutorials on the ASP.NET website.</p> http://stackoverflow.com/questions/1637652/find-the-week-number-of-a-given-date 0 Find the week-number of a given date [closed] roosteronacid 2009-10-28T14:33:54Z 2009-10-28T16:03:26Z <blockquote> <p><strong>Possible Duplicate:</strong><br /> <a href="http://stackoverflow.com/questions/1497586/how-can-i-calculate-find-the-week-number-of-a-given-date">How can I calculate/find the week-number of a given date?</a> </p> </blockquote> <p>How can I find the week-number of a given <code>DateTime</code> instance?</p> http://stackoverflow.com/questions/1631808/jquery-how-to-check-for-available-javascript-on-a-page/1635144#1635144 0 Answer by roosteronacid for jQuery - How to check for available javascript on a page? roosteronacid 2009-10-28T04:08:20Z 2009-10-28T04:08:20Z <p>Take a look at <a href="http://stackoverflow.com/questions/1406537/handling-errors-in-jquery-getscript/1406728#1406728">my answer</a> to a similar question.</p> http://stackoverflow.com/questions/1832682/read-contents-of-a-file-using-a-relative-path-in-a-web-application/1832687#1832687 Comment by roosteronacid on Read contents of a file using a relative path in a Web Application roosteronacid 2009-12-02T12:53:25Z 2009-12-02T12:53:25Z Aye. <code>Server.MapPath()</code> did the trick. Thanks Klaus :) http://stackoverflow.com/questions/1808804/style-visibility-not-working-in-firefox Comment by roosteronacid on style.visibility not working in FireFox roosteronacid 2009-11-27T13:34:13Z 2009-11-27T13:34:13Z Show us the rendered HTML --&gt; run your page, view source, copy/paste relevant HTML. http://stackoverflow.com/questions/1808744/execute-client-javascript-after-radajax-callback Comment by roosteronacid on Execute client Javascript after RadAjax callback. roosteronacid 2009-11-27T13:33:08Z 2009-11-27T13:33:08Z Show us some code. http://stackoverflow.com/questions/1778334/how-can-aptana-show-jquery-code-assist-for-when-jquery-is-in-no-conflict-mode/1778392#1778392 Comment by roosteronacid on How can Aptana show jQuery code assist for $ when jQuery is in no conflict mode? roosteronacid 2009-11-26T12:40:43Z 2009-11-26T12:40:43Z Aye. But if you structure your code neatly, it shouldn't be <i>that</i> big of a problem. http://stackoverflow.com/questions/1796851/unable-to-access-configurationmanager-appsettings-in-a-windows-forms-application/1796870#1796870 Comment by roosteronacid on Unable to access ConfigurationManager.AppSettings in a Windows Forms Application roosteronacid 2009-11-25T13:24:15Z 2009-11-25T13:24:15Z Duh!.. Not used to winforms development--when doing web applications, everything is included by default.. Or so it seams. Thanks mate :) http://stackoverflow.com/questions/1778307/two-forms-with-same-input-id-in-asp-net-mvc/1778413#1778413 Comment by roosteronacid on two forms with same input id in asp.net mvc roosteronacid 2009-11-22T18:00:29Z 2009-11-22T18:00:29Z I do this to avoid encountering the problem you are describing in your question :) But perhaps I'm misunderstanding your question? http://stackoverflow.com/questions/1778367/javascript-how-should-i-calculate-the-result-use-for-loop Comment by roosteronacid on Javascript - How should I calculate the result use for loop? roosteronacid 2009-11-22T10:34:14Z 2009-11-22T10:34:14Z Not really sure what your question is about. Could you elaborate a bit? http://stackoverflow.com/questions/1764278/build-a-google-suggest-box-and-respond-to-keyboard-events-without-jquery Comment by roosteronacid on Build a Google Suggest box and respond to keyboard events without jQuery roosteronacid 2009-11-19T21:06:10Z 2009-11-19T21:06:10Z Why is it you can't use jQuery? http://stackoverflow.com/questions/1763050/accessing-controls-added-programmatically-on-postback/1763336#1763336 Comment by roosteronacid on Accessing controls added programmatically on postback roosteronacid 2009-11-19T14:08:50Z 2009-11-19T14:08:50Z Wouldn't this reset the state of the control? http://stackoverflow.com/questions/1763050/accessing-controls-added-programmatically-on-postback/1763339#1763339 Comment by roosteronacid on Accessing controls added programmatically on postback roosteronacid 2009-11-19T14:08:17Z 2009-11-19T14:08:17Z Wouldn't this reset the state of the control? http://stackoverflow.com/questions/1763050/accessing-controls-added-programmatically-on-postback Comment by roosteronacid on Accessing controls added programmatically on postback roosteronacid 2009-11-19T14:06:34Z 2009-11-19T14:06:34Z No. On Page_Load http://stackoverflow.com/questions/1763050/accessing-controls-added-programmatically-on-postback/1763141#1763141 Comment by roosteronacid on Accessing controls added programmatically on postback roosteronacid 2009-11-19T13:10:20Z 2009-11-19T13:10:20Z Not exactly. I want to access the control on postback. http://stackoverflow.com/questions/1756761/preventing-duplicate-strings-in-c Comment by roosteronacid on Preventing duplicate strings in C# roosteronacid 2009-11-18T15:28:40Z 2009-11-18T15:28:40Z Give us some example-code to work with. Give us some examples of the string as it is now, and how you want it to look. Basically: put a bit more effort in your question.. That is; if you want your problem solved :) http://stackoverflow.com/questions/1669553/returning-a-view-with-its-model-from-an-actionfilterattribute/1745631#1745631 Comment by roosteronacid on Returning a view with it's model from an ActionFilterAttribute roosteronacid 2009-11-17T23:35:27Z 2009-11-17T23:35:27Z I found out how to make it work. Please excuse my temporary down-vote. I always vote up people who take the time to help me out. I will up-vote your answer as soon as the timer on the bounty expires. (I am not able to accept my own answer on a question that has a bounty attached). http://stackoverflow.com/questions/1669553/returning-a-view-with-its-model-from-an-actionfilterattribute/1744627#1744627 Comment by roosteronacid on Returning a view with it's model from an ActionFilterAttribute roosteronacid 2009-11-17T23:34:47Z 2009-11-17T23:34:47Z I found out how to make it work. Please excuse my temporary down-vote. I always vote up people who take the time to help me out. I will up-vote your answer as soon as the timer on the bounty expires. (I am not able to accept my own answer on a question that has a bounty attached).