User Benji - Stack Overflow most recent 30 from stackoverflow.com 2009-12-23T09:28:25Z http://stackoverflow.com/feeds/user/11703 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1803428/how-can-i-access-a-control-within-a-listview-once-a-button-has-been-clicked-asp/1803450#1803450 0 Answer by Benji for How can i access a control within a ListView once a button has been clicked (ASP.NET c#)? Benji 2009-11-26T12:39:48Z 2009-11-26T12:39:48Z <p>You need to hook into the listview row bind and add the information you want to have when clicked. Using this, you can add an attribute to the button that you read back on click, for example...</p> <p>If you posted some actual code, I could probably help some more.</p> http://stackoverflow.com/questions/1733039/android-web-what-is-the-equivalent-style-for-the-web/1733047#1733047 0 Answer by Benji for Android & Web: What is the equivalent style for the web? Benji 2009-11-14T02:40:23Z 2009-11-14T02:40:23Z <p>Try asp.net with Visual Studio. No xml needed! Add the MVC framework, and you're in heaven. </p> http://stackoverflow.com/questions/1727493/web-ui-to-a-restful-interface-good-idea/1733042#1733042 1 Answer by Benji for Web UI to a restful interface, good idea? Benji 2009-11-14T02:38:13Z 2009-11-14T02:38:13Z <p>Sounds good, but I'd recommend that you do this only if you plan to open up the restful API for other UI's to use, or simply to learn something cool. Support HTML XML and JSON for the interface. </p> <p>Otherwise, use a great MVC framework instead (asp.net MVC, rails, cakephp). You'll end up with the same basic result but you'll be "strongerly" typed to the database.</p> http://stackoverflow.com/questions/1715331/ajax-indicator-before-complete-loading/1715360#1715360 0 Answer by Benji for ajax indicator before complete loading Benji 2009-11-11T14:03:33Z 2009-11-11T14:03:33Z <p>Use JQuery. Please.</p> <pre><code> $("#loading").ajaxStart(function() { $(this).show(); }); $("#loading").ajaxStop(function() { $(this).addClass('ohmy').hide('slow'); }); </code></pre> http://stackoverflow.com/questions/1709087/any-hack-to-get-cell-id-on-iphone-3-0/1709104#1709104 0 Answer by Benji for Any hack to get cell id on iPhone 3.0 ? Benji 2009-11-10T16:10:57Z 2009-11-11T09:08:18Z <p>As far as I know, you can only get the UDID on the iphone.</p> <pre><code>[UIDevice currentDevice].uniqueIdentifier </code></pre> <p><em>A unique device identifier is a hash value composed from various hardware identifiers such as the device’s serial number. It is guaranteed to be unique for every device but cannot publically be tied to a user account. You can use it, for example, to store high scores for a game in a central server or to control access to registered products. The unique device identifier is sometimes referred to by its abbreviation UDID.</em></p> http://stackoverflow.com/questions/1475471/how-to-generate-word-documentdoc-docx-in-asp-net/1709518#1709518 0 Answer by Benji for How to generate Word document(doc,docx) in ASP.NET? Benji 2009-11-10T17:01:47Z 2009-11-10T17:01:47Z <p>Search for "Interop"</p> http://stackoverflow.com/questions/1709442/make-divs-height-expand-with-its-content/1709494#1709494 0 Answer by Benji for make div's height expand with its content Benji 2009-11-10T16:58:29Z 2009-11-10T16:58:29Z <p>Don't use float:left</p> http://stackoverflow.com/questions/1709400/are-these-people-lying-about-being-certified/1709472#1709472 2 Answer by Benji for Are these people lying about being certified? Benji 2009-11-10T16:55:38Z 2009-11-10T16:55:38Z <p>It is confusing. To be certified, you need take a series of exams, and you can mix and match too.</p> <p>Example for MCPD: <a href="http://www.microsoft.com/learning/en/us/certification/mcpd.aspx#tab2" rel="nofollow">http://www.microsoft.com/learning/en/us/certification/mcpd.aspx#tab2</a></p> http://stackoverflow.com/questions/1709070/is-object-old-fashioned/1709091#1709091 0 Answer by Benji for Is <object> old fashioned? Benji 2009-11-10T16:09:15Z 2009-11-10T16:09:15Z <p>If you call things like youtube old fashioned, then yes. </p> <p><a href="http://stackoverflow.com/questions/1244788/embed-vs-object">Try here</a></p> http://stackoverflow.com/questions/1709013/org-or-com-domain-for-open-source-project-site/1709045#1709045 0 Answer by Benji for Org or com domain for open source project site? Benji 2009-11-10T16:02:08Z 2009-11-10T16:02:08Z <p>Depends what the project is. For example, .fm is often used for music sites. </p> <p>Either way, if your project rocks, it doesn't matter.</p> http://stackoverflow.com/questions/1708937/formatting-values-for-csv-file-in-vb-net/1708979#1708979 0 Answer by Benji for Formatting values for CSV File in vb.net Benji 2009-11-10T15:51:36Z 2009-11-10T15:51:36Z <pre><code> outFile.WriteLine("Column 1, Column 2, Column 3") outFile.WriteLine("1.23, 4.56, '123456545666644565554") outFile.WriteLine("3.21, 6.54, 9.87") </code></pre> http://stackoverflow.com/questions/1708911/net-team-best-practices-and-methods/1708943#1708943 9 Answer by Benji for .NET Team - Best Practices and Methods Benji 2009-11-10T15:46:56Z 2009-11-10T15:46:56Z <ul> <li>Use only Visual Studio</li> <li>If you need a database, use a server (reduces SQL issues early on)</li> <li>Use Version Control</li> </ul> http://stackoverflow.com/questions/1708498/problem-positioning-a-logo-and-a-banner-in-firefox-using-css/1708507#1708507 0 Answer by Benji for Problem positioning a logo and a banner in Firefox using CSS Benji 2009-11-10T14:50:46Z 2009-11-10T15:29:00Z <p>Here ya go</p> <pre><code>&lt;html&gt; &lt;head&gt; &lt;style type="text/css"&gt; #logo{ background:#FFFFFF; position:absolute; left: 0px; top: 0px; width: 250px; height: 250px; } #Banner{ background: #1071A6; position:absolute; left: 250px; top: 0px; width: 850px; height: 250px; } &lt;/style&gt; &lt;/head&gt; &lt;body&gt; &lt;div id ="logo"&gt; &lt;/div&gt; &lt;div id="Banner"&gt; &lt;/div&gt; &lt;/body&gt; &lt;/html&gt; </code></pre> http://stackoverflow.com/questions/1708394/subversion-reference-to-a-project-without-checking-it-out/1708439#1708439 0 Answer by Benji for Subversion - Reference to a project without checking it out? Benji 2009-11-10T14:40:16Z 2009-11-10T14:40:16Z <p>If both projects live in the same repository, then simply check out a directory that contains BOTH projects.</p> <p>For example, lets say the svn repository starts with a directory called "trunk", and this directory contains projectA and projectB directories. If you check out "trunk", then you will be able to work on A, or B and get notified of changes in both projects when you update "trunk".</p> http://stackoverflow.com/questions/1708310/inserting-leading-zeros-into-an-integer/1708330#1708330 0 Answer by Benji for Inserting leading zeros into an integer Benji 2009-11-10T14:21:49Z 2009-11-10T14:21:49Z <p>If the type is int, then no. Set the type to string?</p> http://stackoverflow.com/questions/1670455/what-tools-are-available-to-auto-generate-asp-net-mvc-rest-services-from-domain-o/1707928#1707928 0 Answer by Benji for What tools are available to auto-generate ASP.NET MVC REST services from domain objects? Benji 2009-11-10T13:20:20Z 2009-11-10T13:20:20Z <p>Take a look at the <a href="http://aspnet.codeplex.com/Release/ProjectReleases.aspx?ReleaseId=24471#DownloadId=79561" rel="nofollow">REST Services for asp.net MVC</a> library. </p> <p>To get an API that supports html, JSON and XML "out of the box", just decorate your controller with [WebApiEnabled], like this:</p> <pre><code>using System.Web.Mvc.Resources; namespace ivu.Controllers { [WebApiEnabled] public class LocationsController : Controller { public ActionResult Index() { return View(db.ReadLocations().ToList()); } } } </code></pre> http://stackoverflow.com/questions/112818/displaying-the-current-authenticated-sharepoint-user-from-an-asp-net-page-viewer 1 Displaying the current authenticated Sharepoint user from an asp.net Page Viewer Web Part Benji 2008-09-22T01:54:18Z 2009-10-02T04:49:29Z <p>I am creating a standalone asp.net page that needs to be embedded into a sharepoint site using the Page Viewer Web Part. The asp.net page is published to the same server on a different port, giving me the URL to embed.</p> <p>The requirement is that after a user is authenticated using Sharepoint authentication, they navigate to a page containing the asp.net web part for more options. </p> <p>What I need to do from this asp.net page is query Sharepoint for the currently authenticated username, then display this on the page from the asp.net code. </p> <p>This all works fine when I debug the application from VS, but when published and displayed though Sharepoint, I always get NULL as the user. </p> <p>Any suggestions on the best way to get this to work would be much appreciated.</p> http://stackoverflow.com/questions/1465287/not-able-to-display-content-in-edititemtemplate-in-formview/1465369#1465369 0 Answer by Benji for Not able to display content in <EditItemTemplate> in FormView Benji 2009-09-23T11:15:48Z 2009-09-23T11:15:48Z <p>In your function fwHotelDetails_ModeChanging, add this:</p> <pre><code>fwHotelDetails.ChangeMode(FormViewMode.Edit) </code></pre> <p>i.e.</p> <pre><code> Protected Sub fwHotelDetails_ModeChanging(ByVal sender As Object, ByVal e As System.Web.UI.WebControls.FormViewModeEventArgs) Handles fwHotelDetails.ModeChanging fwHotelDetails.ChangeMode(FormViewMode.Edit) End Sub </code></pre> http://stackoverflow.com/questions/1438395/dropdown-controls-in-asp-net/1438591#1438591 0 Answer by Benji for dropdown controls in asp.net Benji 2009-09-17T12:34:02Z 2009-09-17T12:34:02Z <p>Sorry if I misunderstood, but to "call the getMonth method in postback", you need check for ispostback = true, not false.</p> <pre><code>protected void Page_Load(object sender, EventArgs e) { if(isPostback) { getMonth(); } } </code></pre> http://stackoverflow.com/questions/1438386/how-to-implement-a-timer-in-c-on-windows/1438518#1438518 0 Answer by Benji for How to implement a timer in C on windows Benji 2009-09-17T12:19:48Z 2009-09-17T12:19:48Z <p>Take a look at the <a href="http://mamedev.org/source/src/osd/windows/wintime.c.html" rel="nofollow">MAME emulator implementation</a>.</p> http://stackoverflow.com/questions/1438468/svn-commit-showing-updated-files-as-added/1438494#1438494 1 Answer by Benji for svn commit showing updated files as added Benji 2009-09-17T12:15:54Z 2009-09-17T12:15:54Z <p>Guess #1: Are you both working on the same code? Verify that the checkout path is the same on both machines.</p> http://stackoverflow.com/questions/1433354/why-is-it-so-hard-to-enforce-yagni/1433450#1433450 0 Answer by Benji for Why is it so hard to enforce YAGNI? Benji 2009-09-16T14:44:15Z 2009-09-16T14:44:15Z <p>YAGNI is often a hindsight thing. Just make sure you're agile enough to remove the "I" when "YAGNI" becomes obvious.</p> http://stackoverflow.com/questions/1433358/i-am-a-team-of-1-what-design-methodology-should-i-be-using/1433421#1433421 7 Answer by Benji for I am a team of 1. What design methodology should I be using? Benji 2009-09-16T14:40:57Z 2009-09-16T14:40:57Z <p>Even on your own, use version control and an issue tracking system. </p> <p>That way you can plan, keep track of what you're doing, and can see whats changed over time. Grow your processes as you need to from there.</p> <p>I'd recommend starting with SVN and TRAC.</p> http://stackoverflow.com/questions/1429623/easier-way-to-turn-off-paging/1433365#1433365 0 Answer by Benji for Easier way to turn off paging Benji 2009-09-16T14:34:47Z 2009-09-16T14:34:47Z <p>Add some buttons inside the UpdatePanel that do this:</p> <pre><code>GridView1.AllowPaging = False GridView1.DataBind() GridView1.AllowPaging = True GridView1.DataBind() </code></pre> http://stackoverflow.com/questions/1433204/what-are-extern-variables-in-c/1433266#1433266 4 Answer by Benji for What are extern variables in C? Benji 2009-09-16T14:18:57Z 2009-09-16T14:18:57Z <p>extern tells the compiler to trust you that the memory for this variable is declared elsewhere, so it doesnt try to allocate/check memory. </p> <p>Therefore, you can compile a file that has reference to an extern, but you can not link if that memory is not declared somewhere.</p> <p>Useful for global variables and libraries, but dangerous because the linker does not type check.</p> http://stackoverflow.com/questions/1433101/upload-files-outside-of-webroot/1433125#1433125 -1 Answer by Benji for Upload files outside of webroot Benji 2009-09-16T13:54:08Z 2009-09-16T13:54:08Z <p>You need to use a file stream to do this.</p> http://stackoverflow.com/questions/1432938/asp-net-avoid-multiple-style-and-script-blocks-in-custom-control/1433114#1433114 0 Answer by Benji for ASP.Net avoid multiple Style and Script blocks in Custom Control Benji 2009-09-16T13:52:34Z 2009-09-16T13:52:34Z <p>The only way I can think of to do this is to split the custom control into sub-controls. </p> <p>Create a "Body" control as a styleless and scriptless control. Then, create a "Designer" control that you use to suck in multiple "Body" controls. Then you can add the "Designer" control to the aspx page once.</p> <p>If you don't know how many "Body" parts" you need at compile time, add a paramater to the "Designer" control that allows you to dynamically add "Main Parts" from code behind at runtime.</p> <p>BTW, if you have never used dynamic controls before, have fun!</p> http://stackoverflow.com/questions/1432835/is-my-source-development-file-hierarchy-a-good-one/1432930#1432930 1 Answer by Benji for Is my source/development file hierarchy a good one? Benji 2009-09-16T13:22:39Z 2009-09-16T13:22:39Z <ol> <li>Do you plan to have ProjectCodeName2 someday? If not, move everything back 1 directory.</li> <li>Get rid of Dev. Developers will have both the code and docs, so they work on trunk. Let Managers get Docs.</li> <li>Be careful not to branch any directory that contains binary files (like word docs). You can't merge them!</li> </ol> http://stackoverflow.com/questions/1424254/updatecommand-problem-in-a-templatefield-in-asp-net-gridview/1432874#1432874 0 Answer by Benji for UpdateCommand problem in a TemplateField in asp.net GridView Benji 2009-09-16T13:10:21Z 2009-09-16T13:10:21Z <p>To debug this yourself, you should hook into both the SQL datasource Updating event and the gridview Row Updating events to check for problems.</p> <p>Anyways, without knowing about your database design, my guess is that you are missing the type on the Update Parameters. Try something like this:</p> <pre><code>&lt;UpdateParameters&gt; &lt;asp:Parameter Name="Name" Type="String" /&gt; &lt;asp:Parameter Name="Id" Type="Int64" /&gt; &lt;/UpdateParameters&gt; </code></pre> http://stackoverflow.com/questions/1424797/refactoring-gridview-export-to-csv-file 0 Refactoring: Gridview Export to CSV file Benji 2009-09-15T02:12:08Z 2009-09-16T08:38:04Z <p>These routines (vb.net) allow you to dump a gridview to CSV, even if there are templated controls in the cells. It works, but I'm not thrilled with it. </p> <p>What improvements should I make and why?</p> <pre><code>Private Shared Function CsvFormatted(ByVal t As String) As String If t.Contains(",") Then t = """" + t + """" End If Return t.Replace("\&amp;nbsp;", "") End Function Private Shared Function GetCellText(ByVal cell As DataControlFieldCell) As String If cell.Controls.Count = 0 Then Return CsvFormatted(cell.Text) Else For Each current In cell.Controls If TypeOf current Is Label Then Return CsvFormatted(TryCast(current, Label).Text) ElseIf TypeOf current Is TextBox Then Return CsvFormatted(TryCast(current, TextBox).Text) ElseIf TypeOf current Is LinkButton Then Return CsvFormatted(TryCast(current, LinkButton).Text) ElseIf TypeOf current Is ImageButton Then Return CsvFormatted(TryCast(current, ImageButton).AlternateText) ElseIf TypeOf current Is HyperLink Then Return CsvFormatted(TryCast(current, HyperLink).Text) ElseIf TypeOf current Is DropDownList Then Return CsvFormatted(TryCast(current, DropDownList).SelectedItem.Text) ElseIf TypeOf current Is CheckBox Then Return CsvFormatted(If(TryCast(current, CheckBox).Checked, "True", "False")) End If Next End If Return "" End Function Public Shared Sub ExportGridViewToCSV(ByVal grid As GridView, ByVal fileName As String) HttpContext.Current.Response.Clear() HttpContext.Current.Response.Buffer = True HttpContext.Current.Response.AddHeader("content-disposition", "attachment;filename=" + fileName) HttpContext.Current.Response.Charset = "" HttpContext.Current.Response.ContentType = "application/text" Dim sb As New StringBuilder() For k As Integer = 0 To grid.Columns.Count - 1 grid.Columns(k).Visible = True 'add separator sb.Append(grid.Columns(k).HeaderText + ","c) Next 'append new line sb.Append(vbCr &amp; vbLf) For i As Integer = 0 To grid.Rows.Count - 1 For k As Integer = 0 To grid.Columns.Count - 1 grid.Columns(k).Visible = True 'add separator sb.Append(GetCellText(grid.Rows(i).Cells(k)) + ","c) Next 'append new line sb.Append(vbCr &amp; vbLf) Next HttpContext.Current.Response.Output.Write(sb.ToString()) HttpContext.Current.Response.Flush() HttpContext.Current.Response.End() End Sub </code></pre> http://stackoverflow.com/questions/1709400/are-these-people-lying-about-being-certified/1709472#1709472 Comment by Benji on Are these people lying about being certified? Benji 2009-11-10T16:59:44Z 2009-11-10T16:59:44Z Correct. I would ask them what exams they have taken specifically. format is something like 70-536 http://stackoverflow.com/questions/1709391/creating-a-makefile-for-2-targets/1709412#1709412 Comment by Benji on creating a makefile for 2 targets Benji 2009-11-10T16:52:53Z 2009-11-10T16:52:53Z Yep. One point - make looks for the first target by default, so place &quot;all&quot; above the &quot;svr&quot; and &quot;clt&quot; targets. http://stackoverflow.com/questions/1708911/net-team-best-practices-and-methods/1708943#1708943 Comment by Benji on .NET Team - Best Practices and Methods Benji 2009-11-10T16:46:32Z 2009-11-10T16:46:32Z Dykam, umm, what jrista said http://stackoverflow.com/questions/1708937/formatting-values-for-csv-file-in-vb-net/1708979#1708979 Comment by Benji on Formatting values for CSV File in vb.net Benji 2009-11-10T16:05:57Z 2009-11-10T16:05:57Z acadia, I have to agree with Meta-Knight here - this is only useful for excel viewing. As others have pointed out, the dump is correct, but excel tries to format the cell for you. So, if you need it in other programs, dump 2 files! http://stackoverflow.com/questions/1708937/formatting-values-for-csv-file-in-vb-net/1708979#1708979 Comment by Benji on Formatting values for CSV File in vb.net Benji 2009-11-10T16:03:58Z 2009-11-10T16:03:58Z I'm guessing you've have never had to wrestle with excel exports then? :) http://stackoverflow.com/questions/372955/best-way-to-filter-domain-objects-for-json-output-in-an-asp-net-mvc-application/373288#373288 Comment by Benji on Best way to filter domain objects for json output in an ASP.NET MVC application Benji 2009-11-05T05:39:16Z 2009-11-05T05:39:16Z the link is broken? http://stackoverflow.com/questions/101162/json-and-asp-net-mvc/101256#101256 Comment by Benji on JSON and ASP.NET MVC Benji 2009-10-27T13:29:06Z 2009-10-27T13:29:06Z No formatting in a comment, but... $.getJSON(&quot;/controllerName/MyAction&quot;, { id: 7 }, callbackFunction); http://stackoverflow.com/questions/1438395/dropdown-controls-in-asp-net/1438591#1438591 Comment by Benji on dropdown controls in asp.net Benji 2009-09-17T14:07:21Z 2009-09-17T14:07:21Z isn't that what he wants? Anyways, I give up. Bad question. http://stackoverflow.com/questions/1433354/why-is-it-so-hard-to-enforce-yagni/1433450#1433450 Comment by Benji on Why is it so hard to enforce YAGNI? Benji 2009-09-16T14:52:14Z 2009-09-16T14:52:14Z Nope, I meant &quot;agile enough to remove the It when You Aint Gonna Need It becomes obvious&quot;. In other words, as soon as you realise YAGNI, don't be afraid to pull code. http://stackoverflow.com/questions/1433101/upload-files-outside-of-webroot/1433125#1433125 Comment by Benji on Upload files outside of webroot Benji 2009-09-16T14:21:04Z 2009-09-16T14:21:04Z Yeah, an oops. I went away to grab you some code but got side distracted. You seem to have some good answers anyways. http://stackoverflow.com/questions/1424797/refactoring-gridview-export-to-csv-file/1427627#1427627 Comment by Benji on Refactoring: Gridview Export to CSV file Benji 2009-09-16T12:30:26Z 2009-09-16T12:30:26Z Great advice, thanks. The turkey test was very interesting... http://stackoverflow.com/questions/1424797/refactoring-gridview-export-to-csv-file Comment by Benji on Refactoring: Gridview Export to CSV file Benji 2009-09-15T02:13:36Z 2009-09-15T02:13:36Z btw, how do I get the SO editor to recognise Return t.Replace(&quot;&amp;nbsp;&quot;, &quot;&quot;)? http://stackoverflow.com/questions/1372811/how-are-array-and-pointer-types-handled-internally-in-c-compilers-int-a-vs/1372845#1372845 Comment by Benji on How are array and pointer types handled internally in C compilers? ( int *a; vs. int a[]; ) Benji 2009-09-03T12:04:51Z 2009-09-03T12:04:51Z Robert, this is C through and through. Even with structs, all you really get is a block of memory top play with. http://stackoverflow.com/questions/1372811/how-are-array-and-pointer-types-handled-internally-in-c-compilers-int-a-vs/1372952#1372952 Comment by Benji on How are array and pointer types handled internally in C compilers? ( int *a; vs. int a[]; ) Benji 2009-09-03T12:03:36Z 2009-09-03T12:03:36Z Agree. What did I say differently? http://stackoverflow.com/questions/1328258/the-difference-between-a-view-and-base-relation Comment by Benji on The difference between a 'view' and 'base' relation Benji 2009-08-25T13:27:46Z 2009-08-25T13:27:46Z What do you mean by &quot;base relation&quot;?