User gfrizzle - Stack Overflowmost recent 30 from stackoverflow.com2009-11-29T12:27:37Zhttp://stackoverflow.com/feeds/user/23935http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1799708/is-it-possible-to-add-properties-to-my-application-or-my-user0Is it possible to add properties to My.Application or My.User?gfrizzle2009-11-25T20:22:39Z2009-11-25T20:56:05Z
<p>Is it possible to add user-defined properties to the My.Application or My.User objects?</p>
<p>I've got some properties defined currently that tell me what environment the app is running in (i.e. "Development", "Testing", "Production", etc.), whether the user is an administrator, etc. It would seem logical to get this info from something like </p>
<pre><code>Dim current = My.Application.EnviornmentName
</code></pre>
<p>or</p>
<pre><code>If My.User.IsAdministrator Then ...
</code></pre>
<p>instead of having them defined in a separate class as they are now. Is there any way to add my own properties to these objects?</p>
http://stackoverflow.com/questions/1730659/jquery-redirect-not-working-in-non-ie-browsers0jQuery redirect not working in non-IE browsersgfrizzle2009-11-13T17:14:59Z2009-11-13T17:57:18Z
<p>I'm trying to redirect all links to a particular page on our site to a secure connection using jQuery. This code works fine in IE, but it doesn't work in any other browser (tried it in Chrome, Firefox, and Safari). Any idea why this wouldn't work?</p>
<pre><code>$(function() {
$(“a[href*=’enroll_now.aspx’]”).attr(“href”, “https://www.[redacted].com/enroll_now.aspx”);
});
</code></pre>
http://stackoverflow.com/questions/707603/apply-jquery-datepicker-to-multiple-instances2Apply jQuery datepicker to multiple instancesgfrizzle2009-04-01T22:31:32Z2009-11-10T17:44:49Z
<p>I've got a jQuery date picker control that works fine for once instance, but I'm not sure how to get it to work for multiple instances.</p>
<pre><code><script type="text/javascript">
$(function() {
$('#my_date').datepicker();
});
</script>
<% Using Html.BeginForm()%>
<% For Each item In Model.MyRecords%>
<%=Html.TextBox("my_date")%> <br/>
<% Next%>
<% End Using%>
</code></pre>
<p>Without the For Each loop, it works fine, but if there's more than one item in the "MyRecords" collection, then only the first text box gets a date picker (which makes sense since it's tied to the ID). I tried assigning a class to the text box and specifying:</p>
<pre><code>$('.my_class').datepicker();
</code></pre>
<p>but while that shows a date picker everywhere, they all update the first text box.</p>
<p>What is the right way to make this work?</p>
http://stackoverflow.com/questions/1681098/is-there-an-advantage-to-using-vs-declaring-a-context-variable2Is there an advantage to USING vs. declaring a context variable?gfrizzle2009-11-05T15:00:50Z2009-11-05T15:19:08Z
<p>These two snippets do the same thing - is there one that's better than the other, or is it just a matter of preference?</p>
<pre><code>Using context As MyDatabaseDataContext = New MyDatabaseDataContext()
Dim test = context.Employees.Count
End Using
</code></pre>
<p>vs.</p>
<pre><code>Dim context As MyDatabaseDataContext = New MyDatabaseDataContext()
Dim test = context.Employees.Count
</code></pre>
<p>I realize these are oversimplified examples - what are the scenarios where one one method would work better than the other?</p>
http://stackoverflow.com/questions/1675760/is-there-any-way-to-debug-a-call-coming-from-an-ajax-post0Is there any way to debug a call coming from an AJAX post?gfrizzle2009-11-04T18:31:21Z2009-11-04T18:57:56Z
<p>Is there any way to debug a call coming from an AJAX post? This jQuery fires when the user hits OK:</p>
<pre><code>$.post(
"/Detail/Copy",
{
bpid: $("#benefit_plan_id").val(),
year: $("#copyYear").val(),
plan: $(this).val()
},
function(data) { }
);
</code></pre>
<p>If I put the breakpoint in my controller:</p>
<pre><code><AcceptVerbs(HttpVerbs.Post), ValidateInput(False)> _
Function Copy(ByVal bpid As Integer, ByVal year As Integer, ByVal plan As Integer) As ActionResult
'{break here}
DoSomeWork(bpid, year, plan)
Return View("Close")
End Function
</code></pre>
<p>The code never breaks on the breakpoint. I know the code is functioning because of what it's doing, but I'd like to step through the code. How can I get it to break?</p>
http://stackoverflow.com/questions/1662260/how-do-you-tell-what-css-settings-are-affecting-the-layout0How do you tell what CSS settings are affecting the layout?gfrizzle2009-11-02T16:25:55Z2009-11-02T20:34:15Z
<p>I have a project with several CSS files, each with many different settings. Every now and then I'll put an element on the page and it will appear unexpectedly, like an odd indentation, font color, hover behavior, etc. It's always a hunt to figure out exactly what CSS setting is causing the behavior. Is there any way to know exactly which CSS values are being applied to a given element?</p>
http://stackoverflow.com/questions/1506293/publish-web-site-all-of-a-sudden-no-longer-working0Publish Web Site all of a sudden no longer workinggfrizzle2009-10-01T20:31:07Z2009-10-21T19:16:47Z
<p>Out of nowhere the "Publish Web Site" option in Visual Studio isn't doing anything for a particular project. It still compiles the site (no errors), but it never copies the output to the destination directory. I've tried changing the destination to a number of locations, and it creates the new folder, but never copies the output. I tried other projects and they seem to work fine. What would stop one project from copying the output?</p>
<p><strong>Update</strong>: This is a web site project, if that makes any difference.</p>
http://stackoverflow.com/questions/1506293/publish-web-site-all-of-a-sudden-no-longer-working/1602991#16029910Answer by gfrizzle for Publish Web Site all of a sudden no longer workinggfrizzle2009-10-21T19:16:47Z2009-10-21T19:16:47Z<p>It appears the problem was with the "Allow this precompiled site to be updateable" option. This was turned off at some point and was causing the problem. Turning it back on caused the files to be copied again. Why should this make a difference? Is there another setting somewhere that needs to work in conjunction with this setting?</p>
http://stackoverflow.com/questions/507588/mvc-general-class-location1MVC general class locationgfrizzle2009-02-03T15:38:46Z2009-10-18T04:40:52Z
<p>In the MVC folder structure, where should general class files reside? For example, I have a class that determines the right DataContext to use, so I'm not reinventing the wheel in each of my controllers. Should it live in the Controllers folder even though it's not a controller? Should it be with the Models because it's database related, even though it's not a model? Possibly the Views\Shared folder? Or is Content the catch-all folder for that kind of stuff? I'm sure I could put it anywhere, but I was wondering where the "right" place is.</p>
http://stackoverflow.com/questions/756944/puzzling-behavior-of-asp-net-mvc-app0Puzzling behavior of ASP.NET MVC appgfrizzle2009-04-16T16:30:00Z2009-10-15T07:48:27Z
<p>I've got a simple search page on my Index view with a dropdown and a text box. I'd like to remember the user's preference for the dropdown, so I store that in a table and retrieve it as needed. Here's the Controller function:</p>
<pre><code>Function Index(ByVal lob As String, ByVal filter As String) As ActionResult
If If(lob, "") = "" Then
lob = GetUserPreferenceLob()
End If
ViewData("lob") = New SelectList(GetLobValues(), "Value", "Text", lob)
ViewData("message") = lob
Return View()
End Function
</code></pre>
<p>The View looks like this:</p>
<pre><code><% Using Html.BeginForm()%>
Line of Business:
<%=Html.DropDownList("lob", Nothing, New With {.onchange = "document.forms[0].submit()"})%>
Search:
<%=Html.TextBox("filter")%>
<img src="..." alt="Search" onclick="document.forms[0].submit()" />
<%=ViewData("message")%>
<% End Using%>
</code></pre>
<p>When I start the app (this is the default page), it successfully loads the list and selects the user's item. If I navigate to the page however, like via a link elsewhere on the page, it loads the list but selects the first item by default. I've run the debugger and it's always going through the Index function, and according to the "message" output it's always passing the right value to be selected, so why is that scenario not selecting the right entry in the list?</p>
<p><strong>Update:</strong> I've got other data on the form that depends on the selected value from the dropdown. When navigating to the page via a link, the rest of the page is behaving as if the appropriate item is selected, but the dropdown defaults to the top. In other words, if my dropdown has the values "A", "B", and "C", and I select "C", then click a link that reloads the page, the dropdown shows "A", but the rest of the page has the data for "C".</p>
http://stackoverflow.com/questions/212048/displaying-totals-in-the-listview-layouttemplate0Displaying totals in the ListView LayoutTemplategfrizzle2008-10-17T13:12:57Z2009-10-10T22:53:09Z
<p>I'm using the ListView control (ASP.NET 2008) to show a bunch of lines of data, and at the bottom I want some totals. I was initially going to define the header and footer in the LayoutTemplate and get the totals with some local function, i.e. <%#GetTheSum()%>, but it appears that the LayoutTemplate does not process the <%#...%> syntax.</p>
<p>Another thought would be to put a Label in the LayoutTemplate and use FindControl to update it. Not sure if that's possible (will try shortly).</p>
<p>What's the best way to show totals using a ListView?</p>
<p>UPDATE: Solution <a href="http://stackoverflow.com/questions/212048/displaying-totals-in-the-listview-layouttemplate#212308">here</a>.</p>
http://stackoverflow.com/questions/1002501/trouble-getting-asp-net-mvc-app-to-redirect-to-error-page-for-unauthorized-users1Trouble getting ASP.NET MVC app to redirect to error page for unauthorized usersgfrizzle2009-06-16T16:11:18Z2009-10-10T03:41:32Z
<p>I've got the following set up in the web.config of my ASP.NET MVC application:</p>
<pre><code><authentication mode="Windows" />
<authorization>
<allow roles="MySecurityGroup"/>
<deny users="*"/>
</authorization>
<customErrors mode="On" defaultRedirect="Error.aspx">
<error statusCode="401" redirect="Help.aspx"/>
</customErrors>
</code></pre>
<p>Everything works fine if you are in MySecurityGroup, but if you're not, you are not redirected to either Error.aspx or Help.aspx. (Note that Error.aspx lives in Views\Shared while Help.aspx is in Views\Home.) All you get is the default error:</p>
<blockquote>
<p>Server Error in '/' Application.</p>
<p>Access is denied. </p>
<p>Description: An error occurred while accessing the resources required to serve this request. The server may not be configured for access to the requested URL. </p>
<p>Error message 401.2.: Unauthorized: Logon failed due to server configuration. Verify that you have permission to view this directory or page based on the credentials you supplied and the authentication methods enabled on the Web server. Contact the Web server's administrator for additional assistance.</p>
</blockquote>
<p>What am I doing wrong?</p>
<p><strong>UPDATE:</strong> Now my web.config is set up like this, and it's still not working:</p>
<pre><code><system.web>
<customErrors mode="On" defaultRedirect="Help.aspx">
</customErrors>
</system.web>
<location path="">
<system.web>
<authorization>
<allow roles="MySecurityGroup"/>
<deny users="*"/>
</authorization>
</system.web>
</location>
<location path="Help">
<system.web>
<authorization>
<allow users="*"/>
</authorization>
</system.web>
</location>
</code></pre>
<p>Note that I can navigate to MyApp/Help just fine and am correctly banned from the rest of the site, but it never redirects to the Help page automatically.</p>
http://stackoverflow.com/questions/1539506/access-network-share-using-windows-authentication0Access network share using Windows authenticationgfrizzle2009-10-08T18:01:59Z2009-10-08T18:16:15Z
<p>I constantly trip on this when writing apps for our intranet.</p>
<p>Let's say we have a network share called "\\server1\myfolder", and I'm writing an app that needs to read a text file from there. Access to the share is very limited, which is fine. If someone doesn't have access to the folder, the app catches the error and tells the user they don't have access.</p>
<p>This works fine when I run it locally, but when I publish the app to the test server, it never has access to the folder, no matter who is running the app. Ideally the app would impersonate the user and use their credentials, but I never seem to be able to set it up correctly.</p>
<p>My web.config is set up like this:</p>
<pre><code><authentication mode="Windows"/>
<identity impersonate="true"/>
</code></pre>
<p>I've also tried impersonate="false", but it doesn't make a difference. Can someone explain what is going on here, to someone with a very limited knowledge of IIS (this is running on IIS 6 by the way)? Any idea how this should be set up, or is it impossible?</p>
http://stackoverflow.com/questions/1521762/formatting-problem-with-tiny-mce0Formatting problem with Tiny MCEgfrizzle2009-10-05T18:51:12Z2009-10-06T15:30:35Z
<p>I've got a setup with multiple text area's on multiple jQuery tabs, all making use of Tiny MCS for WYSIWIG editing. I'm using jQuery to control the size of the text areas to keep them uniform, but I'm running into a problem. Only the text areas on the first tab are sized correctly - the rest default to 20 columns. If I remove Tiny MCE from the equation, everything sizes correctly. Is there some way to work around this? Here's my code:</p>
<pre><code><script type="text/javascript" src="<%= Url.Content("~/Scripts/jquery-1.3.2.min.js") %>"></script>
<script type="text/javascript" src="<%= Url.Content("~/Scripts/jquery-ui-1.7.1.custom.min.js") %>"></script>
<script type="text/javascript" src="<%= Url.Content("~/Scripts/tiny_mce/jquery.tinymce.js") %>"></script>
<script type="text/javascript">
$(function() {
$("#tabs").tabs();
$("textarea").attr("cols", 80);
$("textarea").tinymce({
// various Tiny MCE settings here
});
});
</script>
</code></pre>
http://stackoverflow.com/questions/1521762/formatting-problem-with-tiny-mce/1526358#15263580Answer by gfrizzle for Formatting problem with Tiny MCEgfrizzle2009-10-06T15:30:35Z2009-10-06T15:30:35Z<p>Found it. Looks like instead of using the "cols" attribute on the textarea itself I should be using the "width" setting of Tiny MCE:</p>
<pre><code>$("textarea").tinymce({
// various Tiny MCE settings here
width: "500"
});
</code></pre>
http://stackoverflow.com/questions/659588/how-to-resize-the-jquery-datepicker-control4How to resize the jQuery DatePicker controlgfrizzle2009-03-18T18:40:37Z2009-09-23T19:34:53Z
<p>I'm using the jQuery DatePicker control for the first time. I've got it working on my form, but it's about twice as big as I would like, and about 1.5 times as big as the demo on the jQuery UI page. Is there some simple setting I'm missing to control the size?</p>
<p><strong>Edit:</strong> I found a clue, but it opens up new problems. In the CSS file, it states the component will scale according to the parent element's font size. They recommend setting </p>
<pre><code>body {font-size: 62.5%;}
</code></pre>
<p>to make 1em = 10px. Doing this gives me a nicely sized datepicker, but obviously it messes up the rest of my site (I currently have font-size: .9em).</p>
<p>I tried throwing a DIV around my text box and setting its font size, but it seems to ignore that. So there must be some way to shrink the datepicker by changing the font of its parent, but how do I do that without messing up the rest of my site?</p>
http://stackoverflow.com/questions/1380944/problem-getting-mvc-ajax-partial-load-to-work1Problem getting MVC AJAX partial load to workgfrizzle2009-09-04T18:51:52Z2009-09-17T16:39:37Z
<p>I was following the example laid out <a href="http://www.singingeels.com/Articles/AJAX%5FPanels%5Fwith%5FASPNET%5FMVC.aspx" rel="nofollow">here</a> for implementing AJAX panels in MVC. I'm using VB.NET, but the conversion is pretty straightforward. However, I can't seem to get it to work, and I'm running out of ideas as to why. Here is my code:</p>
<p>HomeController:</p>
<pre><code>Function Index() As ActionResult
Return View()
End Function
Function Archive() As ActionResult
Threading.Thread.Sleep(5000)
Return View()
End Function
</code></pre>
<p>Archive.ascx (partial view):</p>
<pre><code><%@ Control Language="VB" Inherits="System.Web.Mvc.ViewUserControl" %>
Hello World
</code></pre>
<p>Index.aspx (view):</p>
<pre><code><%@ Page Language="VB" MasterPageFile="~/Views/Shared/Site.Master" Inherits="System.Web.Mvc.ViewPage" %>
<asp:Content ID="indexContent" ContentPlaceHolderID="body" runat="server">
<% Using Ajax.BeginForm("Archive", "Home", Nothing, New AjaxOptions With {.UpdateTargetId = "resultDiv"}, New With {.id = "reportFormOne"})%>
<% End Using%>
<div id="resultDiv">
<img src="../../Content/images/ajax-loader.gif" alt="" />
</div>
<script type="text/javascript" src='<%= Url.Content("~/Scripts/jquery-1.3.2.min.js") %>'></script>
<script type="text/javascript">
$get("reportFormOne").onsubmit();
</script>
</asp:Content>
</code></pre>
<p>When I run it, all I see is the ajax-loader animation endlessly. When I run it in debug mode, it never seems to trigger the Archive action. Can anyone see what I'm missing?</p>
<p><strong>UPDATE</strong>: Thanks to @Joseph for pointing out that jQuery wasn't loaded. Now it is, but I'm getting "Object expected" on the $get call.</p>
<p><strong>UPDATE 2</strong>: Here's what Index.aspx looks like now with the "document ready" code. It's giving me a "Object doesn't support this property or method" error with this configuration.</p>
<pre><code><script type="text/javascript" src='<%= Url.Content("~/Scripts/jquery-1.3.2.min.js") %>'></script>
<script type="text/javascript" src='<%= Url.Content("~/Scripts/MicrosoftAjax.js") %>'></script>
<script type="text/javascript" src='<%= Url.Content("~/Scripts/MicrosoftMvcAjax.js") %>'></script>
<script type="text/javascript">
$(document).ready(function() {
$("#reportFormOne").submit();
});
</script>
<% Using Ajax.BeginForm("Archive", "Home", Nothing, New AjaxOptions With {.UpdateTargetId = "resultDiv"}, New With {.id = "reportFormOne"})%>
<% End Using%>
<div id="resultDiv">
<img src="../../Content/images/ajax-loader.gif" alt="" />
</div>
</code></pre>
<p><strong>UPDATE 3</strong>: Realized it was choking on "onsubmit". Changed it to "submit" and it functioned. However, after changing the delay to 5 seconds, the animated gif did not spin - it just stayed static for 5 seconds, then the whole page was replaced by "Hello World" instead of just replacing the animated gif in the div. AAARRRGGGHHH!</p>
<p><strong>UPDATE 4</strong>: Added missing AJAX libraries to the code in Update 2. This still doesn't work correctly, but if I don't use the jQuery submit and instead add a Submit button to the form, it works correctly. Why?</p>
http://stackoverflow.com/questions/1174441/linq-to-sql-delete-producing-specified-cast-is-not-valid-error2LINQ to SQL delete producing "Specified cast is not valid" errorgfrizzle2009-07-23T20:54:37Z2009-09-16T18:00:16Z
<p>I've got a painfully simple table that is giving me a "Specified cast is not valid" error when I try to delete one or more rows. The table has two columns, an "id" as the primary key (INT), and a "name" (VARCHAR(20)), which maps to a String in the LINQ to SQL dbml file. Both of these statements produce the error:</p>
<pre><code>dc.DeleteOnSubmit(dc.MyTables.Where(Function(x) x.id = 1).SingleOrDefault)
dc.DeleteAllOnSubmit(dc.MyTables)
</code></pre>
<p>I iterated through "MyTable" just to make sure there was no weird data, and there are only two rows:</p>
<ul>
<li>id = 1, name = "first"</li>
<li>id = 2, name = "second"</li>
</ul>
<p>What could possibly be causing a casting error?</p>
<p><strong>UPDATE:</strong></p>
<p>The exception is happening on SubmitChanges. Here is the stack trace as requested:</p>
<pre><code>[InvalidCastException: Specified cast is not valid.]
System.Data.Linq.SingleKeyManager`2.TryCreateKeyFromValues(Object[] values, V& v) +59
System.Data.Linq.IdentityCache`2.Find(Object[] keyValues) +28
System.Data.Linq.StandardIdentityManager.Find(MetaType type, Object[] keyValues) +23
System.Data.Linq.CommonDataServices.GetCachedObject(MetaType type, Object[] keyValues) +48
System.Data.Linq.ChangeProcessor.GetOtherItem(MetaAssociation assoc, Object instance) +142
System.Data.Linq.ChangeProcessor.BuildEdgeMaps() +233
System.Data.Linq.ChangeProcessor.SubmitChanges(ConflictMode failureMode) +59
System.Data.Linq.DataContext.SubmitChanges(ConflictMode failureMode) +331
System.Data.Linq.DataContext.SubmitChanges() +19
InpatientCensus.MaintenanceController.DeleteSoleCommunity(Int32 id) in C:\Documents and Settings\gregf\My Documents\Projects\InpatientCensus\InpatientCensus\Controllers\MaintenanceController.vb:14
lambda_method(ExecutionScope , ControllerBase , Object[] ) +128
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() +52
System.Web.Mvc.ControllerActionInvoker.InvokeActionMethodFilter(IActionFilter filter, ActionExecutingContext preContext, Func`1 continuation) +254
System.Web.Mvc.<>c__DisplayClassc.<InvokeActionMethodWithFilters>b__9() +19
System.Web.Mvc.ControllerActionInvoker.InvokeActionMethodWithFilters(ControllerContext controllerContext, IList`1 filters, ActionDescriptor actionDescriptor, IDictionary`2 parameters) +192
System.Web.Mvc.ControllerActionInvoker.InvokeAction(ControllerContext controllerContext, String actionName) +399
System.Web.Mvc.Controller.ExecuteCore() +126
System.Web.Mvc.ControllerBase.Execute(RequestContext requestContext) +27
System.Web.Mvc.ControllerBase.System.Web.Mvc.IController.Execute(RequestContext requestContext) +7
System.Web.Mvc.MvcHandler.ProcessRequest(HttpContextBase httpContext) +151
System.Web.Mvc.MvcHandler.ProcessRequest(HttpContext httpContext) +57
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
</code></pre>
<p><strong>UPDATE 2:</strong></p>
<p>Removing the association added to the DBML file allows rows to be deleted. Why would the association be causing the error? The associated columns are both VARCHAR(20) in the database and resolve to Strings in the DBML file.</p>
http://stackoverflow.com/questions/1131457/asp-net-mvc-ajax-returning-new-page-on-simple-call1ASP.NET MVC AJAX returning new page on simple callgfrizzle2009-07-15T13:37:55Z2009-09-06T02:46:15Z
<p>I'm not sure what's wrong with the following setup. I have a View that lists a number of records, and each has a dropdown associated with it to change a value on that record. I had it all working without AJAX, but you had to change a bunch of the dropdowns then click a Submit button. I wanted to change it so that it would save the dropdown choice immediately.</p>
<p>My stripped down View (of type IEnumerable(Of MyTable)):</p>
<pre><code><script src="../../Scripts/MicrosoftAjax.debug.js" type="text/javascript"></script>
<script src="../../Scripts/MicrosoftMvcAjax.debug.js" type="text/javascript"></script>
<% For Each item In Model%>
<% Using Ajax.BeginForm("Update", New AjaxOptions With {.UpdateTargetId = "test"})%>
<%=Html.Hidden("id", item.id)%>
<%=item.name%>:
<%=Html.DropDownList("ActionCode", New SelectList(ViewData("actions"), "Value", "Text", item.ActionCode), New With {.onchange = "this.form.submit();"})%>
<span id="test"></span>
<br/>
<% End Using%>
<% Next%>
</code></pre>
<p>My Update controller:</p>
<pre><code><AcceptVerbs(HttpVerbs.Post)> _
Function Update(ByVal id As Integer, ByVal ActionCode As String) As ActionResult
'Update would happen here
Return Content(id & ": " & ActionCode)
End Function
</code></pre>
<p>What I would like to happen is for the dropdown change to trigger the Update controller, but probably not return anything - just update the database and let the user move on. What's happening though is that a blank page is displayed with the Content value on it (i.e. "123: ABC"). It's the correct id/code combo, so the Update seems to be firing correctly, it's just choosing to wipe out the html.</p>
<p>Obviously I'm somehow not returning correctly for AJAX to work properly, but this pattern seems to match the examples I could find, so I'm not sure where I'm going wrong. Any help would be greatly appreciated.</p>
http://stackoverflow.com/questions/1324297/visual-studio-keeps-pegging-the-cpu-for-intellisense-as-i-type0Visual Studio keeps pegging the CPU for Intellisense as I typegfrizzle2009-08-24T19:37:36Z2009-08-31T23:16:54Z
<p>Why would Visual Studio all of a sudden start using tons of CPU as it tries to implement Intellisense? I happen to be working with LINQ queries in VB.NET, but no idea if that's related or not. I've tried closing and reopening VS, but that has no effect. I'm not sure what else it might be related to, which makes researching it difficult as well. Any ideas where to start looking?</p>
http://stackoverflow.com/questions/662220/how-to-change-the-pop-up-position-of-the-jquery-datepicker-control3How to change the pop-up position of the jQuery DatePicker controlgfrizzle2009-03-19T13:36:27Z2009-08-28T12:23:39Z
<p>Any idea how to get the DatePicker to appear at the end of the associated text box instead of directly below it? What tends to happen is that the text box is towards the bottom of the page and the DatePicker shifts up to account for it and totally covers the text box. If the user wants to type the date instead of pick it, they can't. I'd rather have it appear just after the text box so it doesn't matter how it adjusts vertically.</p>
<p>Any idea how to control the positioning? I didn't see any settings for the widget, and I haven't had any luck tweaking the CSS settings, but I could easily be missing something.</p>
http://stackoverflow.com/questions/1335348/how-to-add-custom-columns-to-a-table-that-linq-to-sql-can-translate-to-sql0How to add custom columns to a table that LINQ to SQL can translate to SQLgfrizzle2009-08-26T14:57:22Z2009-08-28T02:10:44Z
<p>I have a table that contains procedure codes among other data (let's call it "MyData"). I have another table that contains valid procedure codes, their descriptions, and the dates on which those codes are valid. Every time I want to report on MyData and include the procedure description, I have to do a lookup similar to this:</p>
<pre><code>From m in dc.MyDatas _
Join p in dc.Procedures On m.proc_code Equals p.proc_code _
Where p.start_date <= m.event_date _
And If(p.end_date.HasValue, p.end_date.Value, Now) >= m.event_date _
Select m.proc_code, p.proc_desc
</code></pre>
<p>Since there are many places where I want to show the procedure description, this gets messy. I'd like to have the lookup defined in one place, so I tried putting this in an extension of MyData:</p>
<pre><code>Partial Public Class MyData
Public ReadOnly Property ProcedureDescription() As String
Get
Dim dc As New MyDataContext
Return _
(From p in dc.Procedures _
Where p.proc_code = Me.proc_code _
And p.start_date <= Me.event_date _
And If(p.end_date.HasValue, p.end_date.Value, Now) >= Me.event_date _
Select p.proc_desc).SingleOrDefault
End Get
End Property
End Class
</code></pre>
<p>Which works when displaying data, but you can't use it in a query, because it doesn't know how to turn it into a SQL statement:</p>
<pre><code>Dim test = _
From x In dc.MyDatas _
Select x.proc_code _
Where x.ProcedureDescription.Contains("test")
</code></pre>
<p><strong>Error</strong>: The member 'MyProject.MyData.ProcedureDescription' has no supported translation to SQL.</p>
<p>Is there a way to turn a complex lookup (i.e. a non-trivial join) like this into something SQL can recognize so that I can define it in one place and just reference the description as if it were a field in MyData? So far the only thing I can think of is to create a SQL view on MyData that does the linking and bring that into my data context, but I'd like to try to avoid that. Any ideas would be welcomed. Thanks.</p>
http://stackoverflow.com/questions/1223860/how-do-i-keep-a-td-element-from-appearing-across-multiple-pages-when-printed-fr0How do I keep a <td> element from appearing across multiple pages when printed from IE?gfrizzle2009-08-03T18:24:10Z2009-08-26T15:06:36Z
<p>I have an HTML table of data where each cell can have multiple lines of text. When the table is printed, it's possible for a row to be broken up so that some of the data appears at the bottom of the first page and some appears at the top of the next. Is there an equivalent to Word's "keep together" functionality that will prevent a page break from happening within a table row? I would think this would be a common problem, but the only "answer" I could find was hidden on a certain hyphenated web site. :)</p>
<p><strong>Update:</strong>
The data will be viewed using IE 7, which it appears does not handle the "page-break-inside" property correctly (if at all). Are there alternatives? Is this something jQuery can help with?</p>
http://stackoverflow.com/questions/1289375/insertonsubmit-not-triggering-a-database-insert-on-submitchanges1InsertOnSubmit not triggering a database insert on SubmitChangesgfrizzle2009-08-17T17:41:31Z2009-08-18T21:05:38Z
<p>I'm experiencing an odd scenario and I'm looking for ways to figure out what's going wrong. I've got a piece of code that inserts a row into a table - the kind of thing I've done in dozens of other apps - but the end result is nothing happens on the database end, and no errors are generated. How do I find out what's going wrong?</p>
<p>Here's my code:</p>
<pre><code>Partial Class MyDatabaseDataContext
Public Sub CreateEnrollee(subId, depId)
dim newEnrollee = New enrolee With {.subId = subId, .depId = depId}
Me.enrollees.InsertOnSubmit(newEnrollee)
Me.SubmitChanges()
dim test = NewEnrollee.id '<-- auto-incrementing key'
End Sub
End Class
</code></pre>
<p>After SubmitChanges is called, no new row is created, and "test" is zero. No errors are generated. I have no idea why it's not trying to insert the row. Any ideas on how to debug this?</p>
http://stackoverflow.com/questions/1289375/insertonsubmit-not-triggering-a-database-insert-on-submitchanges/1296510#12965100Answer by gfrizzle for InsertOnSubmit not triggering a database insert on SubmitChangesgfrizzle2009-08-18T21:05:38Z2009-08-18T21:05:38Z<p>FOUND IT! Part of the debugging I did for some other issues included adding some logging to some of the extensibility methods:</p>
<pre><code>Partial Private Sub InsertEnrollee(instance As Enrollee)
End Sub
</code></pre>
<p>I thought "InsertEnrollee" existed so I could perform actions after the Enrollee was inserted, so I added logging code here and that's when the trouble started. Now I'm guessing this is how you would override the Enrollee insert and do it yourself if you so desired. Since I was essentially overriding with logging code, that's why nothing was happening (from a database perspective).</p>
http://stackoverflow.com/questions/1294099/aggregate-linq-results2Aggregate LINQ resultsgfrizzle2009-08-18T14:02:46Z2009-08-18T15:12:28Z
<p>If I have a Publisher table that has many Books, and each Book can have many Authors, how do I get a list of distinct Authors for a Publisher? In SQL you would just join all the tables, select the Author, and use SELECT DISTINCT. Using LINQ I end up with an IEnumerable(Of EntitySet(of Author)):</p>
<pre><code>Dim temp = From p in Publishers Select (From b in p.Books Select b.Author)
</code></pre>
<p>and this still doesn't address duplicate Authors.</p>
<p>Is there a way to get a flat list of Authors, ungrouped from the Books, in a single query? I know I could loop through the sets and create one list and use Distinct on that. I was curious if it could be done in one statement.</p>
http://stackoverflow.com/questions/1273741/how-to-include-dynamic-markup-in-inline-xml-without-it-being-encoded0How to include dynamic markup in inline XML without it being encodedgfrizzle2009-08-13T18:24:37Z2009-08-13T18:30:46Z
<p>I would like to create a HtmlHelper function for a specific kind of dropdown that appears on many pages in my app. I'm basically just trying to add some decoration around the existing DropDownList function, but it's being encoded. Here's my extension method:</p>
<pre><code> <Extension()> _
Public Function Year(ByVal HtmlHelper As System.Web.Mvc.HtmlHelper, ByVal name As String) As String
Return _
<label>
Year:
<%= HtmlHelper.DropDownList(name) %>
</label>.ToString
End Function
</code></pre>
<p>This returns the following:</p>
<pre><code><label>Year:&lt;select id="year" name="year"&gt;&lt;option value="2007"&gt;2007&lt;/option&gt;&lt;option value="2008"&gt;2008&lt;/option&gt;&lt;option selected="selected" value="2009"&gt;2009&lt;/option&gt;&lt;/select&gt;</label>
</code></pre>
<p>instead of what I want:</p>
<pre><code><label>Year:<select id="year" name="year"><option value="2007">2007</option><option value="2008">2008</option><option selected="selected" value="2009">2009</option></select></label>
</code></pre>
<p>In other words, the DropDownList is HTML encoded before the string is put inside the label. I could do it like this:</p>
<pre><code> <Extension()> _
Public Function Year(ByVal HtmlHelper As System.Web.Mvc.HtmlHelper, ByVal name As String) As String
Return "<label>Year:" & HtmlHelper.DropDownList(name) & "</label>"
End Function
</code></pre>
<p>but I'd rather make use of VB's inline XML. How do I get the results of DropDownList to not be encoded?</p>
http://stackoverflow.com/questions/1127029/associate-web-page-with-project-in-visual-studio1Associate web page with project in Visual Studiogfrizzle2009-07-14T18:05:45Z2009-08-12T18:44:37Z
<p>Is there any way to associate a web page with a project in Visual Studio, and have it load up in the IDE? For example, I have a project who's task list is maintained on a web site. It would be ideal to see those tasks within the IDE instead of a separate page. I can accomplish that now by following these steps:</p>
<ul>
<li>Press Ctrl-Alt-R to open a Web Browser page</li>
<li>Change the URL to my desired path</li>
<li>Position the page as desired (like in its own tab group, off to the right of my code)</li>
</ul>
<p>It would be nice to have a link somewhere in my project that I could click and open this page in the IDE without changing the URL every time. I have several different projects that would benefit from this. Any ideas?</p>
http://stackoverflow.com/questions/1127029/associate-web-page-with-project-in-visual-studio/1267986#12679860Answer by gfrizzle for Associate web page with project in Visual Studiogfrizzle2009-08-12T18:44:37Z2009-08-12T18:44:37Z<p>Here's my quick hack around this problem:</p>
<ol>
<li><p>Create a text file in the project. I called my "notes.txt", and I use it to store notes, ideas, etc. that don't have a home elsewhere in the project.</p></li>
<li><p>Add the web link to the top of the file.</p></li>
<li><p>Open the text file in the IDE and put it in a new tab group. I put mine in a vertical tab group off to the right.</p></li>
<li><p>Drag the separator as far over as it will go to "hide" the tab group. This way it's always open and available but not taking up much space.</p></li>
<li><p>When you want the web page, "show" the tab group (i.e. drag the separator back) and ctrl-click the link.</p></li>
</ol>
<p>This has the added benefit of opening the web page in the same tab group as the text file, so you can push them both aside when not using them.</p>
<p>I'm sure there's more that could be done by writing packages as others have suggested, but this was a low-effort way to get me close enough to what I wanted. I'd love to hear other suggestions or modifications that might make this setup better.</p>
http://stackoverflow.com/questions/337229/hidden-panel-doesnt-center-correctly-when-displayed0Hidden panel doesn't center correctly when displayedgfrizzle2008-12-03T14:13:13Z2009-08-10T05:37:56Z
<p>I've got a simple AlwaysVisibleControlExtender that extends a small Panel containing a "Loading..." message and animated GIF. The whole thing is inside an UpdateProgress control, so it only displays when my app is processing. I've got it set to display at the top center. It works fine, but I've noticed that it displays slightly to the right of where it should be. If I resize the window slightly, the panel snaps to the correct position.</p>
<p>My guess is that it's calculating where the center is before the UpdateProgress control allows the Panel to be rendered, thus the Panel has a width of zero. Only after the Panel is displayed does it correctly calculate the center. Is there a workaround for this?</p>
<p><strong>Update:</strong> Here's the markup:</p>
<pre><code><%@ Page Language="VB" MasterPageFile="~/Compass.master" AutoEventWireup="false" CodeFile="SubmissionPrep.aspx.vb" Inherits="SubmissionPrep" Title="Untitled Page" %>
<%@ Register Assembly="AjaxControlToolkit" Namespace="AjaxControlToolkit" TagPrefix="ajax" %>
<asp:Content ID="Content1" ContentPlaceHolderID="ContentPlaceHolder1" runat="Server">
<asp:UpdatePanel ID="UpdatePanel" runat="server" UpdateMode="Always">
<ContentTemplate>
<%-- Data and Controls here --%>
<asp:UpdateProgress ID="ProcessingUpdateProgress" runat="server">
<ProgressTemplate>
<asp:Panel ID="ProcessingPanel" runat="server" CssClass="loading">
Processing...
<img src="images/ajax-loader.gif" alt="" />
</asp:Panel>
<ajax:AlwaysVisibleControlExtender ID="ProcessingAlwaysVisibleControlExtender" runat="server"
TargetControlID="ProcessingPanel" VerticalSide="Top" HorizontalSide="Center">
</ajax:AlwaysVisibleControlExtender>
</ProgressTemplate>
</asp:UpdateProgress>
</ContentTemplate>
</asp:UpdatePanel>
</asp:Content>
</code></pre>
http://stackoverflow.com/questions/1799708/is-it-possible-to-add-properties-to-my-application-or-my-user/1799784#1799784Comment by gfrizzle on Is it possible to add properties to My.Application or My.User?gfrizzle2009-11-25T21:11:46Z2009-11-25T21:11:46ZExactly what I was looking for. I'm using extension methods elsewhere in my project, and it didn't even dawn on me to apply them in this instance. Thanks for the nudge in the right direction.http://stackoverflow.com/questions/1730659/jquery-redirect-not-working-in-non-ie-browsers/1730724#1730724Comment by gfrizzle on jQuery redirect not working in non-IE browsersgfrizzle2009-11-13T17:31:04Z2009-11-13T17:31:04ZThe "[redacted]" part just means I didn't want my site name in the code. I don't actually have square brackets in my URL.http://stackoverflow.com/questions/707603/apply-jquery-datepicker-to-multiple-instances/1709829#1709829Comment by gfrizzle on Apply jQuery datepicker to multiple instancesgfrizzle2009-11-11T01:58:17Z2009-11-11T01:58:17ZThat may just be the "sample" part of the sample code. I don't think it actually generates a div with that ID. Making sure each of my target objects had unique ID's made everything work as expected.http://stackoverflow.com/questions/1675760/is-there-any-way-to-debug-a-call-coming-from-an-ajax-post/1675831#1675831Comment by gfrizzle on Is there any way to debug a call coming from an AJAX post?gfrizzle2009-11-04T19:02:50Z2009-11-04T19:02:50ZYou're right - I had some other stuff fooling me into thinking the code was firing, but it turns out my route wasn't mapped correctly. Thanks!http://stackoverflow.com/questions/1539506/access-network-share-using-windows-authentication/1539577#1539577Comment by gfrizzle on Access network share using Windows authenticationgfrizzle2009-10-08T18:46:00Z2009-10-08T18:46:00ZAll I get is "Incorrect Function" when I try to create the System.Security.Principal.WindowsIdentity, no matter what I pass it. I'm definitely passing it my User Principal Name, but it doesn't recognize it.http://stackoverflow.com/questions/1539506/access-network-share-using-windows-authentication/1539545#1539545Comment by gfrizzle on Access network share using Windows authenticationgfrizzle2009-10-08T18:15:24Z2009-10-08T18:15:24ZThose appear to already be the case. "Enable anonymous access" is not checked, and "Integrated Windows authentication" is checked.http://stackoverflow.com/questions/1131457/asp-net-mvc-ajax-returning-new-page-on-simple-call/1384750#1384750Comment by gfrizzle on ASP.NET MVC AJAX returning new page on simple callgfrizzle2009-09-08T14:51:57Z2009-09-08T14:51:57ZNope, no nested form tags. I'm going to try the Firebug thing though. Thanks.http://stackoverflow.com/questions/1380944/problem-getting-mvc-ajax-partial-load-to-work/1381988#1381988Comment by gfrizzle on Problem getting MVC AJAX partial load to workgfrizzle2009-09-08T13:47:42Z2009-09-08T13:47:42ZOops, my bad - typo in the library names. I'm closer now. It still behaves incorrectly with the right library names, but if I remove the jQuery submit and add a Submit button, it works correctly. Is the jQuery submit happening too quickly?http://stackoverflow.com/questions/1380944/problem-getting-mvc-ajax-partial-load-to-work/1381988#1381988Comment by gfrizzle on Problem getting MVC AJAX partial load to workgfrizzle2009-09-08T13:29:42Z2009-09-08T13:29:42ZAdding the AJAX libraries didn't help - it still returned a new page with just "Hello World". I've also tried your jQuery method, but I'm getting "Object doesn't support this property or method" on the ajaxForm line.http://stackoverflow.com/questions/1380944/problem-getting-mvc-ajax-partial-load-to-work/1380984#1380984Comment by gfrizzle on Problem getting MVC AJAX partial load to workgfrizzle2009-09-04T19:10:10Z2009-09-04T19:10:10ZWow. You'd think that would be in there, wouldn't you? I assumed it was in Site.Master and it wasn't. I've added it and now I'm getting a javascript error. I've updated the issue. Thanks for pointing out the obvious.http://stackoverflow.com/questions/1324297/visual-studio-keeps-pegging-the-cpu-for-intellisense-as-i-type/1324368#1324368Comment by gfrizzle on Visual Studio keeps pegging the CPU for Intellisense as I typegfrizzle2009-08-24T19:54:28Z2009-08-24T19:54:28ZNope. This is a MVC project.http://stackoverflow.com/questions/1294099/aggregate-linq-results/1294525#1294525Comment by gfrizzle on Aggregate LINQ resultsgfrizzle2009-08-18T15:25:19Z2009-08-18T15:25:19ZSelectMany is exactly what I was looking for. Thanks.http://stackoverflow.com/questions/1289375/insertonsubmit-not-triggering-a-database-insert-on-submitchangesComment by gfrizzle on InsertOnSubmit not triggering a database insert on SubmitChangesgfrizzle2009-08-17T18:28:36Z2009-08-17T18:28:36ZI haven't run SQL Profiler, but I've got other parts of the code communicating with the database just fine. According to the DataContext.Log, no statement is being generated for the insert.http://stackoverflow.com/questions/1289375/insertonsubmit-not-triggering-a-database-insert-on-submitchanges/1289542#1289542Comment by gfrizzle on InsertOnSubmit not triggering a database insert on SubmitChangesgfrizzle2009-08-17T18:26:38Z2009-08-17T18:26:38ZI did, but it doesn't show any statements, like the Data Context determined an insert wasn't necessary or possible or something. (The logging does show a SELECT statement earlier in my code so I know it's working.)http://stackoverflow.com/questions/1289375/insertonsubmit-not-triggering-a-database-insert-on-submitchangesComment by gfrizzle on InsertOnSubmit not triggering a database insert on SubmitChangesgfrizzle2009-08-17T17:47:55Z2009-08-17T17:47:55ZThey don't allow nulls, but I've confirmed the values going in are good.