User jrummell - Stack Overflowmost recent 30 from stackoverflow.com2009-12-02T16:26:58Zhttp://stackoverflow.com/feeds/user/26226http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1797707/how-to-find-files-in-source-control-but-not-in-a-visual-studio-solution1How to find files in source control but not in a Visual Studio solution?jrummell2009-11-25T15:30:18Z2009-11-25T15:51:22Z
<p>I have a rather large Visual Studio 2008 solution in Subversion. It was migrated from Visual SourceSafe a few months ago. I'm starting to find that there are a number of files still in source control that were removed from the solution back when I was using VSS. They were probably renamed or deleted after they were checked out - VSS doesn't like that.</p>
<p>I'm looking for an easy way to find all of the files that are not in the solution but are in Subversion. Something like <a href="http://winmerge.org/docs/manual/Compare%5Fdirs.html#Compare%5Fdirs%5Fwindow" rel="nofollow">WinMerge</a>'s folder compare would be ideal, where one side is the Subversion working copy and the other side is the project contents.</p>
http://stackoverflow.com/questions/1793140/how-to-get-asp-net-forms-authentication-using-role-restrictions-to-not-redirect/1793221#17932210Answer by jrummell for How to get ASP.NET Forms Authentication (using role restrictions) to not redirect to login page.jrummell2009-11-24T21:58:46Z2009-11-24T21:58:46Z<p>I think you'll have to change the authorization in web.config for the given page's location so that everyone is authorized.</p>
<pre><code><configuration>
<location path="somepage.aspx">
<system.web>
<authorization>
<allow users="?"/>
</authorization>
</system.web>
</location>
</configuration>
</code></pre>
<p>Then you can use <a href="http://msdn.microsoft.com/en-us/library/4z6b5d42.aspx" rel="nofollow">Roles.IsUserInRole(</a>) in the page logic to determine if they are authorized, and then display a message if they are not. I've done this before when I use the same aspx page for viewing and editing a record where anyone can view but only certain roles can edit.</p>
http://stackoverflow.com/questions/1750145/ajax-toolkit-client-rendering/1750286#17502860Answer by jrummell for Ajax Toolkit Client Renderingjrummell2009-11-17T17:02:13Z2009-11-17T21:44:32Z<p>Going along the lines of @Achilles' answer, I would break up the form into multiple pages. You could also try one page with multiple tabs.</p>
<p><strong>Update:</strong>
Something else that might help you is the <a href="http://www.asp.net/AJAX/AjaxControlToolkit/Samples/Walkthrough/OtherNeatStuff.aspx" rel="nofollow">ToolkitScriptManager</a>. It combines all of the external toolkit scripts into one single external script. I think it also combines all of the inline toolkit scripts into one block.</p>
http://stackoverflow.com/questions/1658406/is-there-an-open-source-web-based-self-hosted-revision-control-system/1663247#16632470Answer by jrummell for Is there an open-source, web-based, self-hosted, revision control system?jrummell2009-11-02T19:42:07Z2009-11-02T20:15:50Z<p>If you have a windows environment, try <a href="http://www.visualsvn.com/server/" rel="nofollow">VisualSVN Server</a> - its free, web based, and really easy to install. And it uses Subversion which IMO is much better than Visual SourceSafe. You can use any Subversion client to connect to it.</p>
http://stackoverflow.com/questions/1646058/how-to-display-dwf-dwg-in-a-web-page0How to display dwf/dwg in a web page?jrummell2009-10-29T19:37:51Z2009-10-30T12:39:46Z
<p><strong>How do you embed Autodesk 2010 dwf/dwg files in a web page?</strong> </p>
<p>I found some old code that worked with the Volo View Express 2 activex control in IE, but it won't display newer drawings.</p>
<pre><code><iframe height="500px" width="100%" scrolling="auto" src="drawing.dwg"></iframe>
</code></pre>
<p>Is there a new/better activex control available?</p>
http://stackoverflow.com/questions/1646058/how-to-display-dwf-dwg-in-a-web-page/1649585#16495850Answer by jrummell for How to display dwf/dwg in a web page?jrummell2009-10-30T12:39:46Z2009-10-30T12:39:46Z<p><a href="http://usa.autodesk.com/adsk/servlet/pc/index?id=3239384&siteID=123112" rel="nofollow">Volo View 3</a> fixed it</p>
http://stackoverflow.com/questions/1609039/jquery-ui-asp-net-updatepanel-is-it-worth-it6jQuery UI + ASP.NET UpdatePanel - Is it worth it?jrummell2009-10-22T18:13:39Z2009-10-23T13:04:13Z
<p>I really like the looks of <strong><a href="http://www.jqueryui.com/" rel="nofollow">jQuery UI</a></strong> and I'd love to integrate it into my <strong>ASP.NET Web Applications</strong>. I like the themes and how easy it is to use the widgets. I'm currently using AJAX Control Toolkit controls like the <a href="http://www.asp.net/AJAX/AjaxControlToolkit/Samples/Calendar/Calendar.aspx" rel="nofollow">Calendar</a> and <a href="http://www.asp.net/AJAX/AjaxControlToolkit/Samples/ModalPopup/ModalPopup.aspx" rel="nofollow">ModalPopup</a>. I'm hoping to replace them with the <a href="http://www.jqueryui.com/demos/datepicker/" rel="nofollow">DatePicker</a> and <a href="http://www.jqueryui.com/demos/dialog/" rel="nofollow">Dialog</a> widgets, but I hear <a href="http://blog.roonga.com.au/2009/07/using-jquery-ui-dialog-with-aspnet-and.html" rel="nofollow">they</a> <a href="http://stackoverflow.com/questions/1406845/weird-bug-when-combining-an-asp-net-updatepanel-with-the-jquery-ui-datepicker">have</a> <a href="http://stackoverflow.com/questions/399919/jquery-ui-dialog-and-asp-net-updatepanel">issues</a> with <strong>UpdatePanels</strong>. There are workarounds for these issues, but I wonder, is it worth it?</p>
<p>Which leads into my question(s):</p>
<ul>
<li>Has anyone had luck using jQuery UI widgets exclusively (instead of AJAX Toolkit Controls) in an ASP.NET Web Application that occasionally uses UpdatePanels? </li>
<li>Are there any best practice resources for getting jQuery UI and UpdatePanels to play nice?</li>
</ul>
<p><strong>Update:</strong>
Based on the answers so far, it seems that the best thing to do is <a href="http://encosia.com/2007/07/11/why-aspnet-ajax-updatepanels-are-dangerous/" rel="nofollow">replace UpdatePanels with $.ajax and PageMethods</a>. That should allow me to use jQuery UI without any issues and also improve my AJAX performance.</p>
http://stackoverflow.com/questions/1597209/how-to-use-html-entities-in-an-ssrs-report0How to use HTML entities in an SSRS report?jrummell2009-10-20T20:48:28Z2009-10-21T00:24:28Z
<p>In a <strong>SQL 2005 Report Server Project</strong>, how do you put an HTML entity (such as & or Δ) in the value of a column's header Textbox?</p>
http://stackoverflow.com/questions/1589423/how-to-use-floor-ceiling-in-a-reportmodel-expression-field0How to use Floor/Ceiling in a ReportModel expression field?jrummell2009-10-19T15:36:48Z2009-10-20T14:59:19Z
<p>I'm working in an <strong>SSRS 2005 Report Model Project</strong>. I want to create an expression field on a ReportModel that does the same as this C# method:</p>
<pre><code>private static int GetClosestWholeNumberToward0(double delta)
{
return (int) (delta > 0 ? Math.Ceiling(delta) : Math.Floor(delta));
}
</code></pre>
<p>I tried this:</p>
<pre><code>IF(delta > 0, Ceiling(delta), Floor(delta))
</code></pre>
<p>But it seems that ReportModel expressions don't support the Ceiling or Floor functions. Is there a way to do this?</p>
<p><strong>Update</strong>: Due to changing requirements that added additional complexity to this report, I'm going to start over with the Report Designer in Visual Studio. So I should be able to use the Math.Ceiling() and Math.Floor() in an expression field on the report.</p>
http://stackoverflow.com/questions/1540010/ssrs-2005-parameter-based-security0SSRS 2005 Parameter Based Securityjrummell2009-10-08T19:45:50Z2009-10-08T20:39:16Z
<p>I work for company A. Company A has a sister company B. Both companies A and B use the same ERP database. I have created an <strong>SSRS 2005 report</strong> that can be used by both companies. It has a CompanyID parameter that determines whether to display data for company A or company B.</p>
<p>For most reports this will be OK, but for company sensitive information (such as payroll), this will be an issue since anybody at company A can change the CompanyID parameter to company B's ID, and visa versa.</p>
<p>My initial idea to handle this was to create a <a href="http://msdn.microsoft.com/en-us/library/ms156327%28SQL.90%29.aspx" rel="nofollow">linked repor</a>t for each company in their own respective folders, A and B, where security on folder A only allowed company A users and folder B security only allowed B users. Then I would add a default CompanyID parameter to each linked report and hide the parameters from the user. So far so good. The problem with this is that you can still change the parameter values using the URL query string. For example, a user at company A could change the report url from:</p>
<p><a href="http://server/ReportServer/ReportViewer.aspx?/Payroll/" rel="nofollow">http://server/ReportServer/ReportViewer.aspx?/Payroll/</a><strong>A</strong>&rs:Command=Render</p>
<p>to:</p>
<p><a href="http://server/ReportServer/ReportViewer.aspx?/Payroll/" rel="nofollow">http://server/ReportServer/ReportViewer.aspx?/Payroll/</a><strong>A</strong>&rs:Command=Render&CompanyID=<strong>B</strong></p>
<p>Now they have completely bypassed the hidden default parameter.</p>
<p><strong>What is a good approach to solve this? I would like to share reports between both companies if possible.</strong></p>
<p><strong>Update:</strong>
We also have company specific ASP.NET intranets that already restrict access based on company via AD domain. I suppose I could use the <a href="http://msdn.microsoft.com/en-us/library/ms251671.aspx" rel="nofollow">ReportViewer</a> control on an intranet page to apply the appropriate parameters at run time. I could probably incorporate this logic into a generic report page that could be used for any report, right? (Please excuse my ignorance, I'm a total SSRS n00b)</p>
http://stackoverflow.com/questions/1538671/should-i-format-my-asmx-web-service-responses-for-ajax-server-side-or-client-side/1538937#15389372Answer by jrummell for Should I format my ASMX web service responses for AJAX server side or client side?jrummell2009-10-08T16:26:00Z2009-10-08T16:26:00Z<ol>
<li>It depends on the context. If you're returning a simple string to update a <code><span></code>, then I would use javascript to format it. If you're returning an RSS feed, then I would format it server side. If you're using an autocompleter for a text box, it might be better to output the html with an IHttpHandler instead.</li>
<li>If you use JSON (<a href="http://msdn.microsoft.com/en-us/library/system.web.script.services.scriptserviceattribute.aspx" rel="nofollow">ScriptService</a>) web service methods, it shouldn't matter what the .NET type is. The return value will be serialized as a <a href="http://www.json.org/js.html" rel="nofollow">JSON</a> object.</li>
</ol>
<p>Here's an excellent tutorial on <a href="http://encosia.com/2008/03/27/using-jquery-to-consume-aspnet-json-web-services/" rel="nofollow">consuming JSON ASP.NET web services with jQuery</a>.</p>
http://stackoverflow.com/questions/1538735/mixing-object-props-and-strings-in-a-listobject/1538825#15388250Answer by jrummell for Mixing object props and strings in a List<object>jrummell2009-10-08T16:10:37Z2009-10-08T16:10:37Z<p>Have you tried this?</p>
<pre><code>usersData.Add(new List<object>
{
user.ID,
user.FullName + " " + user.Company.Name,
user.Email,
user.DateCreated.ToString(),
string.Empty
});
</code></pre>
http://stackoverflow.com/questions/1511548/what-are-the-supported-character-entities-for-xml-comments0What are the supported character entities for XML comments?jrummell2009-10-02T20:06:47Z2009-10-02T20:10:27Z
<p>In the following example, <strong><code>&amp;</code></strong> and <strong><code>&#916;</code></strong> are OK but <strong><code>&Delta;</code></strong> is not (the latter two are both Δ). The compiler issues a warning similar to:</p>
<pre>
warning CS1570: XML comment on 'XXX.DocumentedMethod()' has badly formed XML -- 'Reference to undefined entity 'Delta'.'
</pre>
<pre><code> /// <summary>
/// &amp; &Delta; &#916;
/// </summary>
public void DocumentedMethod()
{
}
</code></pre>
<p><strong>What are the supported character entities for XML comments?</strong></p>
http://stackoverflow.com/questions/1505329/validationservice-method-t2-validatet1-t2expression-t2-vs-object-valid0ValidationService method - "T2 Validate<T1, T2>(Expression, T2)" vs "object Validate<T1>(Expression, object)"jrummell2009-10-01T17:31:27Z2009-10-01T17:45:48Z
<p>I'm designing a validation service and I'm debating between two different method signatures for Validate(). Both use lambda Expressions to get the object type and property of the object to validate the given value. There are defined as:</p>
<pre><code>public interface IValidationService
{
/// <summary>
/// Validates the value of the property returned by the property expression.
/// </summary>
/// <typeparam name="T">The type of the object to validate.</typeparam>
/// <typeparam name="TProperty">The type of the property.</typeparam>
/// <param name="propertyExpression">The property expression.</param>
/// <param name="value">The value.</param>
/// <returns></returns>
TProperty Validate<T, TProperty>(Expression<Func<T, TProperty>> propertyExpression, TProperty value);
/// <summary>
/// Validates the value of the property returned by the property expression.
/// </summary>
/// <typeparam name="T">The type of the object to validate.</typeparam>
/// <param name="propertyExpression">The property expression.</param>
/// <param name="value">The value.</param>
/// <returns></returns>
object Validate<T>(Expression<Func<T, object>> propertyExpression, object value);
}
</code></pre>
<p>Here's a unit test for each so you can see the difference in usage:</p>
<pre><code>[Test]
public void ValidateCustomerId_Method1()
{
string id = "123456789123";
string validatedId = _validationService.Validate<Customer, string>(x => x.Id, id);
Assert.That(validatedId, Is.EqualTo("123456789"));
}
[Test]
public void ValidateCustomerId_Method2()
{
string id = "123456789123";
string validatedId = (string) _validationService.Validate<Customer>(x => x.Id, id);
Assert.That(validatedId, Is.EqualTo("123456789"));
}
</code></pre>
<p>The first has two type parameters, one for the object type (T) and one for the property/value type (TProperty). This one is nice because the return type is TProperty, but its also a bit annoying because it has two type parameters.</p>
<p>The second has only one type parameter for the object type. The value is an object and also returns an object. This is nice because it only has one type parameter, but its also a bit annoying because I'll have to cast the return type from object to the property/value type.</p>
<p>I suppose another option would be adding a type parameter to the interface, IValidationService, which would eliminate the object type parameter (T) in both signatures:</p>
<pre><code>public interface IValidationService<T>
{
TProperty Validate<TProperty>(Expression<Func<T, TProperty>> propertyExpression, TProperty value);
object Validate(Expression<Func<T, object>> propertyExpression, object value);
}
</code></pre>
<p><strong>Which signature makes the most sense and why?</strong></p>
http://stackoverflow.com/questions/1498269/asp-net-double-click-problem/1498367#14983672Answer by jrummell for ASP.Net double-click problemjrummell2009-09-30T14:11:04Z2009-10-01T01:21:06Z<p>If you have validation on the page, disabling the button client side gets a little tricky. If validation fails, you don't want to disable the button. Here's a snippet that adds the client side event handler:</p>
<pre><code>private void BuildClickOnceButton(WebControl ctl)
{
System.Text.StringBuilder sbValid = new System.Text.StringBuilder();
sbValid.Append("if (typeof(Page_ClientValidate) == 'function') { ");
sbValid.Append("if (Page_ClientValidate() == false) { return false; }} ");
sbValid.Append(ctl.ClientID + ".value = 'Please wait...';");
sbValid.Append(ctl.ClientID + ".disabled = true;");
// GetPostBackEventReference obtains a reference to a client-side script
// function that causes the server to post back to the page.
sbValid.Append(ClientScript.GetPostBackEventReference(ctl, ""));
sbValid.Append(";");
ctl.Attributes.Add("onclick", sbValid.ToString());
}
</code></pre>
<p>See this <a href="http://forums.asp.net/t/1008333.aspx" rel="nofollow">asp.net thread</a> for more info.</p>
<p><strong>Update</strong>: the above code would be used to add the OnClientClick handler in code behind. You could also write the javascript in your aspx markup like so:</p>
<pre><code><script type="text/javascript">
function disableButton(button)
{
// if there are client validators on the page
if (typeof(Page_ClientValidate) == 'function')
{
// if validation failed return false
// this will cancel the click event
if (Page_ClientValidate() == false)
{
return false;
}
}
// change the button text (does not apply to an ImageButton)
//button.value = "Please wait ...";
// disable the button
button.disabled = true;
// fire postback
__doPostBack(button.id, '');
}
</script>
<asp:ImageButton runat="server" ID="VerifyStepContinue" ImageUrl="button.png"
ToolTip="Go" TabIndex="98" CausesValidation="true" OnClick="methodName"
OnClientClick="return disableButton(this);" />
</code></pre>
http://stackoverflow.com/questions/1494066/what-would-cause-a-sqldatetime-overflow-when-using-linq-to-sql-submitchanges/1494170#14941700Answer by jrummell for What would cause a SqlDateTime overflow when using LINQ to SQL SubmitChanges()?jrummell2009-09-29T18:27:48Z2009-09-29T18:27:48Z<p>You can validate your dates in the <a href="http://msdn.microsoft.com/en-us/library/bb882671.aspx" rel="nofollow">OnValidate</a>() partial method using <a href="http://msdn.microsoft.com/en-us/library/system.data.sqltypes.sqldatetime.minvalue.aspx" rel="nofollow">SqlDateTime.MinValue</a> and <a href="http://msdn.microsoft.com/en-us/library/system.data.sqltypes.sqldatetime.maxvalue.aspx" rel="nofollow">SqlDateTime.MaxValue</a>.</p>
http://stackoverflow.com/questions/1486424/c-find-all-empty-catch-blocks/1486430#14864307Answer by jrummell for C#: Find all empty catch blocksjrummell2009-09-28T10:51:23Z2009-09-28T10:51:23Z<p><a href="http://msdn.microsoft.com/en-us/library/bb429476%28VS.80%29.aspx" rel="nofollow">FxCop</a> will find them along with many other potential issues.</p>
http://stackoverflow.com/questions/1484431/asp-net-mvc-app-hosted-on-godaddy-has-securityexception1ASP.NET MVC app hosted on GoDaddy has SecurityExceptionjrummell2009-09-27T20:43:08Z2009-09-27T22:59:13Z
<p>I'm trying to get an <strong>ASP.NET MVC</strong> app working on <strong>GoDaddy</strong> ... I should have known it wouldn't be easy. The first few pages work, but they are all static. The first time a Controller is executed I get the exception below.</p>
<p>Here is the Controller action method:</p>
<pre><code>[AcceptVerbs(HttpVerbs.Get)]
public ActionResult Index(Section? section, int? parent)
{
if (section == null)
{
return RedirectToAction("Index", "Questions", new {section = Section.Section0});
}
IPagedList<Question> questions = _surveyService.FetchQuestions(User.Identity.Name, section.Value, parent);
// ...
ViewResult result = View("Index", questions);
result.ViewData.Add("CurrentSection", section.Value);
result.ViewData.Add("Parent", parent);
result.ViewData.Add("IsLastPage", questions.IsLastPage);
return result;
}
</code></pre>
<p>The exception is thrown in the second line of the method at RedirectToAction().</p>
<p>Background:</p>
<ul>
<li>I've followed the instructions in <a href="http://stackoverflow.com/questions/266205/is-there-a-way-that-i-can-run-a-asp-net-mvc-project-on-godaddy-com-shared-web-hos/299339#299339">this answer</a>.</li>
<li>I'm not using reflection or demanding security explicitly in my code. </li>
<li>I'm using <strong>MVC</strong>, <strong>LINQ to SQL</strong>, <a href="http://code.google.com/p/elmah/" rel="nofollow"><strong>Elmah</strong></a>, and <a href="http://pagedlist.codeplex.com/" rel="nofollow"><strong>PagedList</strong></a>.</li>
<li>I'm using <strong>IIS 7</strong> with
<strong>Integrated</strong> mode.</li>
<li>I added [<strong>assembly:
AllowPartiallyTrustedCallers</strong>] to my
AssemblyInfo.cs. I did this because I found another SO question that had an answer recommending it (I can't find it now, or else I would provide a link). I also strong named my assemblies as suggested by Rex M's answer below.</li>
</ul>
<p><hr /></p>
<p>What am I missing to make this work?</p>
<p>The exception:</p>
<pre><code>Server Error in '/surveys/objectification' Application.
Security Exception
Description: The application attempted to perform an operation not allowed by the security policy. To grant this application the required permission please contact your system administrator or change the application's trust level in the configuration file.
Exception Details: System.Security.SecurityException: That assembly does not allow partially trusted callers.
Source Error:
An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below.
Stack Trace:
[SecurityException: That assembly does not allow partially trusted callers.]
SelfObjectificationSurvey.Web.Controllers.QuestionsController.Index(Nullable`1 section, Nullable`1 parent) +0
lambda_method(ExecutionScope , ControllerBase , Object[] ) +123
System.Web.Mvc.ActionMethodDispatcher.Execute(ControllerBase controller, Object[] parameters) +17
System.Web.Mvc.ReflectedActionDescriptor.Execute(ControllerContext controllerContext, IDictionary`2 parameters) +178
System.Web.Mvc.ControllerActionInvoker.InvokeActionMethod(ControllerContext controllerContext, ActionDescriptor actionDescriptor, IDictionary`2 parameters) +24
System.Web.Mvc.<>c__DisplayClassa.<InvokeActionMethodWithFilters>b__7()
+53
System.Web.Mvc.ControllerActionInvoker.InvokeActionMethodFilter(IActionFilter filter, ActionExecutingContext preContext, Func`1 continuation) +258
System.Web.Mvc.<>c__DisplayClassc.<InvokeActionMethodWithFilters>b__9()
+20
System.Web.Mvc.ControllerActionInvoker.InvokeActionMethodWithFilters(ControllerContext controllerContext, IList`1 filters, ActionDescriptor actionDescriptor, IDictionary`2 parameters) +193
System.Web.Mvc.ControllerActionInvoker.InvokeAction(ControllerContext controllerContext, String actionName)
+382
System.Web.Mvc.Controller.ExecuteCore()
+123
System.Web.Mvc.ControllerBase.Execute(RequestContext requestContext) +23
System.Web.Mvc.ControllerBase.System.Web.Mvc.IController.Execute(RequestContext requestContext) +7
System.Web.Mvc.MvcHandler.ProcessRequest(HttpContextBase httpContext) +144
System.Web.Mvc.MvcHandler.ProcessRequest(HttpContext httpContext) +54
System.Web.Mvc.MvcHandler.System.Web.IHttpHandler.ProcessRequest(HttpContext httpContext) +7
System.Web.CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute()
+181
System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously)
+75
Version Information: Microsoft .NET Framework Version:2.0.50727.3074; ASP.NET Version:2.0.50727.4049
</code></pre>
http://stackoverflow.com/questions/1479013/disable-resharper-naming-suggestions-in-markup-files1Disable Resharper naming suggestions in markup files?jrummell2009-09-25T18:57:11Z2009-09-25T19:24:20Z
<p>Is it possible to disable Resharper 4.5 naming suggestions in markup files such as aspx and ascx?</p>
<p>It gets annoying when every single server control is underlined and displays a message like "Name 'ddlDefect' does not match rule 'Fields (not private). Suggested name is 'Defect'.</p>
<pre><code><asp:DropDownList ID="ddlDefect" runat="server" />
</code></pre>
<p>I know that I can add additional rules, but that would affect all non private fields in my classes, and I'd rather not do that.</p>
http://stackoverflow.com/questions/1478395/linq-how-to-verify-dbcontext-submitchanges-for-updates-inserts-succeeded/1478409#14784091Answer by jrummell for Linq: How to verify dbcontext.SubmitChanges() for updates/inserts succeeded?jrummell2009-09-25T16:51:18Z2009-09-25T16:51:18Z<p>If an insert fails it will throw a SqlException. I think it may do the same for failed updates.</p>
http://stackoverflow.com/questions/1477818/anyway-to-make-a-ilist-contains-act-more-like-a-wildcard-contains/1477844#14778442Answer by jrummell for Anyway to make a IList.Contains() act more like a wildcard contains?jrummell2009-09-25T15:04:00Z2009-09-25T15:04:00Z<p>Since you're using .NET 3.5, you could use the Where() LINQ extension method:</p>
<pre><code>DBExclusionList.Where(item => item.Contains(dbx.Name.ToString()))
</code></pre>
http://stackoverflow.com/questions/1476614/selecting-previous-label-element-jquery/1476666#14766660Answer by jrummell for Selecting previous label element JQUERYjrummell2009-09-25T11:00:57Z2009-09-25T11:00:57Z<pre><code>$(this).prev().prev().css('color','FF0000');
</code></pre>
<p>But I would use a css class instead of applying style with jQuery:</p>
<pre><code><style>
div.form label {display:block;}
label.error {color:FF0000}
input.error {border-color:FF0000}
</style>
<div class="form">
<label for="name">Job Date</label>
<input id="name" class="required" title="Enter a name!" name="name" type="text" />
</div>
</code></pre>
<p>The the validation would change to:</p>
<pre><code>function checkreview()
{
var errors = "";
$(".required").each(function (i)
{
if($(this).val() == "")
{
errors += $(this).attr('title')+'<br />';
$(this).addClass("error");
$(this).prev().addClass("error");
}
});
}
</code></pre>
http://stackoverflow.com/questions/1473726/using-maxrequestlength-with-large-web-searches/1473752#14737522Answer by jrummell for Using MaxRequestLength with Large Web Searchesjrummell2009-09-24T19:37:34Z2009-09-24T19:37:34Z<p>I would recommend paging the results instead of displaying everything. I would also suggest adding multiple search fields allowing your users to filter their results even further. This will allow your user to find what they are looking for faster.</p>
http://stackoverflow.com/questions/1467975/best-practice-relative-url/1468046#14680462Answer by jrummell for Best Practice: Relative URLjrummell2009-09-23T19:13:46Z2009-09-23T19:13:46Z<p>I prefer to use </p>
<pre><code>string url = Page.ResolveURL("~/MyFolder/MyFile.aspx");
</code></pre>
<p>But often times you can use just "~/MyFolder/MyFile.aspx" (HyperLink.NavigateUrl, Response.Redirect(), etc).</p>
<p>I don't think either way is better/worse, its just a preference. I think what's more important is that you consistently use the same method.</p>
http://stackoverflow.com/questions/1466866/c-how-do-i-prepend-text-to-each-line-in-a-string/1466901#14669010Answer by jrummell for C#: How do I prepend text to each line in a string?jrummell2009-09-23T15:53:05Z2009-09-23T15:53:05Z<p>You could split the string by Environment.NewLine, and then add the prefix to each of those string, and then join them by Environment.NewLine.</p>
<pre><code>string MagicFunction(string prefix, string orignalString)
{
List<string> prefixed = new List<string>();
foreach (string s in orignalString.Split(new[]{Environment.NewLine}, StringSplitOptions.None))
{
prefixed.Add(prefix + s);
}
return String.Join(Environment.NewLine, prefixed.ToArray());
}
</code></pre>
http://stackoverflow.com/questions/1466166/what-is-the-best-way-of-generating-a-xslx-file-on-a-web-site-possibly-with-milli/1466195#14661954Answer by jrummell for What is the best way of generating a xslx file on a web site? Possibly with millions of rows?jrummell2009-09-23T14:02:48Z2009-09-23T14:02:48Z<p>There is a limit to the amount of rows the you can have in a spreadsheet (<a href="http://visio.mvps.org/Excel%5F2007.htm" rel="nofollow">1M for Office 2007</a>). I would generate a <a href="http://en.wikipedia.org/wiki/Comma-separated%5Fvalues" rel="nofollow">CSV</a> file instead, which is really just a formatted text file that can be opened in Excel.</p>
http://stackoverflow.com/questions/1465817/quality-of-code-dream-weaver-vs-web-studio/1465889#1465889-1Answer by jrummell for Quality of code, Dream Weaver Vs. Web studiojrummell2009-09-23T13:08:48Z2009-09-23T13:08:48Z<p>I agree with the other answers. The best code will be hand written. I'm an every day user of Visual Studio for ASP.NET. Visual Studio produces decent html, but mine is typically better. If you want to learn HTML, a good place to start is <a href="http://www.w3schools.com/" rel="nofollow">w3schools</a>.</p>
http://stackoverflow.com/questions/1463243/asptextbox-array/1463287#14632870Answer by jrummell for asp:textbox arrayjrummell2009-09-23T00:12:54Z2009-09-23T00:12:54Z<p>You could also create the array like this:</p>
<pre><code>TextBox[] textBoxes = new[] { search1, search2, search3 };
<div runat="server" id="myPanel">
<asp:TextBox runat="server" id="search1" />
<asp:TextBox runat="server" id="search2" />
<asp:TextBox runat="server" id="search3" />
</div>
</code></pre>
<p>It gives the same end result as Quintin's answer, but I find this easier to read.</p>
http://stackoverflow.com/questions/1460288/asp-net-manually-updating-an-updatepanel-using-jquery/1460449#14604493Answer by jrummell for ASP.NET: Manually updating an UpdatePanel using jQueryjrummell2009-09-22T14:32:36Z2009-09-22T14:32:36Z<p>Have you tried something like this? (Taken from <a href="http://encosia.com/2007/07/13/easily-refresh-an-updatepanel-using-javascript/" rel="nofollow">Easily refresh an UpdatePanel, using JavaScript</a>).</p>
<blockquote>
<p>there’s an easy method for triggering
a postback targeted at the
UpdatePanel: __doPostBack().</p>
<p>As long as the event target of a
__doPostBack() call is an async trigger of an UpdatePanel, the ASP.NET
AJAX framework will intercept the
postback and fire a partial postback
instead.</p>
</blockquote>
<pre><code><a href="#" onclick="__doPostBack('<%= pnlUpdate.ClientID %>', '');"/>
</code></pre>
http://stackoverflow.com/questions/1457175/how-do-you-use-javascript-to-populate-a-text-field-with-data-based-on-a-select-bo/1457202#14572020Answer by jrummell for How do you use Javascript to populate a text field with data based on a select box?jrummell2009-09-21T22:22:25Z2009-09-21T22:22:25Z<p>Based on the example at <a href="http://w3schools.com/js/tryit.asp?filename=tryjs%5Fputmore" rel="nofollow">http://w3schools.com/js/tryit.asp?filename=tryjs_putmore</a></p>
<pre><code><html>
<head>
<script type="text/javascript">
function moveNumbers()
{
var no=document.getElementById("no");
var option=no.options[no.selectedIndex].text;
document.getElementById("result").value=option;
}
</script>
</head>
<body>
<form>
Select numbers:<br />
<select id="no" onchange="moveNumbers()">
<option>0</option>
<option>1</option>
<option>2</option>
<option>3</option>
<option>4</option>
<option>5</option>
<option>6</option>
<option>7</option>
<option>8</option>
<option>9</option>
</select>
<input type="text" id="result" size="20">
</form>
</body>
</code></pre>
<p>See <a href="http://w3schools.com/htmldom/dom%5Fobj%5Fselect.asp" rel="nofollow">http://w3schools.com/htmldom/dom%5Fobj%5Fselect.asp</a> and <a href="http://w3schools.com/htmldom/dom%5Fevents.asp" rel="nofollow">http://w3schools.com/htmldom/dom%5Fevents.asp</a> for more info.</p>
http://stackoverflow.com/questions/1797707/how-to-find-files-in-source-control-but-not-in-a-visual-studio-solution/1797864#1797864Comment by jrummell on How to find files in source control but not in a Visual Studio solution?jrummell2009-11-25T16:23:21Z2009-11-25T16:23:21Z#1 worked out just fine, thanks! I had forgotten about "Show All Files".http://stackoverflow.com/questions/1797707/how-to-find-files-in-source-control-but-not-in-a-visual-studio-solutionComment by jrummell on How to find files in source control but not in a Visual Studio solution?jrummell2009-11-25T15:48:38Z2009-11-25T15:48:38ZI considered that, but I wanted to see if anyone else had already done the work :)http://stackoverflow.com/questions/1521150/problems-with-sort-and-icomparable/1521160#1521160Comment by jrummell on Problems with sort and IComparablejrummell2009-11-23T16:38:08Z2009-11-23T16:38:08ZI had the same problem, thanks! It makes me wonder though, why doesn't IComparable<T> inherit from IComparable?http://stackoverflow.com/questions/1750145/ajax-toolkit-client-rendering/1750286#1750286Comment by jrummell on Ajax Toolkit Client Renderingjrummell2009-11-18T00:06:56Z2009-11-18T00:06:56ZGlad I could help!http://stackoverflow.com/questions/1750145/ajax-toolkit-client-rendering/1750286#1750286Comment by jrummell on Ajax Toolkit Client Renderingjrummell2009-11-17T21:56:31Z2009-11-17T21:56:31ZI added an update about the ToolkitScriptManager, but I don't think you'll get a decent response time unless you're able to break it up into smaller pieces. I would say 2 secs for each step is better than 6 for the whole form, but that's just me ...http://stackoverflow.com/questions/1658406/is-there-an-open-source-web-based-self-hosted-revision-control-system/1663247#1663247Comment by jrummell on Is there an open-source, web-based, self-hosted, revision control system?jrummell2009-11-02T20:18:21Z2009-11-02T20:18:21ZYup, the installer is what makes it so amazing for people like me who don't know anything about apache.http://stackoverflow.com/questions/1609039/jquery-ui-asp-net-updatepanel-is-it-worth-it/1611665#1611665Comment by jrummell on jQuery UI + ASP.NET UpdatePanel - Is it worth it?jrummell2009-10-23T12:48:23Z2009-10-23T12:48:23ZI've already learned (and am OK with) the obstacles of UpdatePanel + jQuery. Now I'm interested in UpdatePanel + jQuery UI. I'll replace UpdatePanels with $.ajax() and PageMethods as I go (encosia.com/2007/07/…), but I still need to keep my existing UpdatePanels working.http://stackoverflow.com/questions/1609039/jquery-ui-asp-net-updatepanel-is-it-worth-it/1611770#1611770Comment by jrummell on jQuery UI + ASP.NET UpdatePanel - Is it worth it?jrummell2009-10-23T12:47:15Z2009-10-23T12:47:15ZI've already learned (and am OK with) the obstacles of UpdatePanel + jQuery. Now I'm interested in UpdatePanel + jQuery UI. I'll replace UpdatePanels with $.ajax() and PageMethods as I go (<a href="http://encosia.com/2007/07/11/why-aspnet-ajax-updatepanels-are-dangerous/" rel="nofollow">encosia.com/2007/07/…</a>), but I still need to keep my existing UpdatePanels working.http://stackoverflow.com/questions/1609039/jquery-ui-asp-net-updatepanel-is-it-worth-it/1610069#1610069Comment by jrummell on jQuery UI + ASP.NET UpdatePanel - Is it worth it?jrummell2009-10-23T12:41:24Z2009-10-23T12:41:24ZI've considered replacing the AJAX Control Toolkit with jQuery UI before and so far I've agreed with you. I was hoping that someone would prove me wrong =/.http://stackoverflow.com/questions/1609039/jquery-ui-asp-net-updatepanel-is-it-worth-itComment by jrummell on jQuery UI + ASP.NET UpdatePanel - Is it worth it?jrummell2009-10-22T20:29:16Z2009-10-22T20:29:16ZIdeally, I would. Unfortunately, I don't have the time or resources to remove all UpdatePanels from my project.http://stackoverflow.com/questions/1597209/how-to-use-html-entities-in-an-ssrs-report/1598084#1598084Comment by jrummell on How to use HTML entities in an SSRS report?jrummell2009-10-21T00:40:25Z2009-10-21T00:40:25ZThat's too easy! I'll try it when I get back to work tomorrow.http://stackoverflow.com/questions/1589423/how-to-use-floor-ceiling-in-a-reportmodel-expression-field/1590523#1590523Comment by jrummell on How to use Floor/Ceiling in a ReportModel expression field?jrummell2009-10-19T20:05:16Z2009-10-19T20:05:16ZNope, not in a ReportModel expression.http://stackoverflow.com/questions/1589423/how-to-use-floor-ceiling-in-a-reportmodel-expression-field/1589509#1589509Comment by jrummell on How to use Floor/Ceiling in a ReportModel expression field?jrummell2009-10-19T17:31:04Z2009-10-19T17:31:04ZIs that possible with a ReportModel project?http://stackoverflow.com/questions/1540430/why-does-asp-net-fail-to-serve-pages-while-doing-an-svn-update-does-vss-behave-bComment by jrummell on Why does ASP.Net fail to serve pages while doing an SVN Update? Does VSS behave better?jrummell2009-10-08T21:13:00Z2009-10-08T21:13:00ZAre the xml files in the bin folder?http://stackoverflow.com/questions/1540010/ssrs-2005-parameter-based-security/1540047#1540047Comment by jrummell on SSRS 2005 Parameter Based Securityjrummell2009-10-08T20:13:23Z2009-10-08T20:13:23ZIf we split the unioned view into two separate views, we could probably use database roles to grant select on only the appropriate company's view. Is that what you're alluding to?