User Benji - Stack Overflowmost recent 30 from stackoverflow.com2009-12-23T09:28:25Zhttp://stackoverflow.com/feeds/user/11703http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1803428/how-can-i-access-a-control-within-a-listview-once-a-button-has-been-clicked-asp/1803450#18034500Answer by Benji for How can i access a control within a ListView once a button has been clicked (ASP.NET c#)?Benji2009-11-26T12:39:48Z2009-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#17330470Answer by Benji for Android & Web: What is the equivalent style for the web?Benji2009-11-14T02:40:23Z2009-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#17330421Answer by Benji for Web UI to a restful interface, good idea?Benji2009-11-14T02:38:13Z2009-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#17153600Answer by Benji for ajax indicator before complete loadingBenji2009-11-11T14:03:33Z2009-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#17091040Answer by Benji for Any hack to get cell id on iPhone 3.0 ?Benji2009-11-10T16:10:57Z2009-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#17095180Answer by Benji for How to generate Word document(doc,docx) in ASP.NET?Benji2009-11-10T17:01:47Z2009-11-10T17:01:47Z<p>Search for "Interop"</p>
http://stackoverflow.com/questions/1709442/make-divs-height-expand-with-its-content/1709494#17094940Answer by Benji for make div's height expand with its contentBenji2009-11-10T16:58:29Z2009-11-10T16:58:29Z<p>Don't use float:left</p>
http://stackoverflow.com/questions/1709400/are-these-people-lying-about-being-certified/1709472#17094722Answer by Benji for Are these people lying about being certified?Benji2009-11-10T16:55:38Z2009-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#17090910Answer by Benji for Is <object> old fashioned?Benji2009-11-10T16:09:15Z2009-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#17090450Answer by Benji for Org or com domain for open source project site?Benji2009-11-10T16:02:08Z2009-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#17089790Answer by Benji for Formatting values for CSV File in vb.netBenji2009-11-10T15:51:36Z2009-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#17089439Answer by Benji for .NET Team - Best Practices and MethodsBenji2009-11-10T15:46:56Z2009-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#17085070Answer by Benji for Problem positioning a logo and a banner in Firefox using CSSBenji2009-11-10T14:50:46Z2009-11-10T15:29:00Z<p>Here ya go</p>
<pre><code><html>
<head>
<style type="text/css">
#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;
}
</style>
</head>
<body>
<div id ="logo">
</div>
<div id="Banner">
</div>
</body>
</html>
</code></pre>
http://stackoverflow.com/questions/1708394/subversion-reference-to-a-project-without-checking-it-out/1708439#17084390Answer by Benji for Subversion - Reference to a project without checking it out?Benji2009-11-10T14:40:16Z2009-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#17083300Answer by Benji for Inserting leading zeros into an integerBenji2009-11-10T14:21:49Z2009-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#17079280Answer by Benji for What tools are available to auto-generate ASP.NET MVC REST services from domain objects?Benji2009-11-10T13:20:20Z2009-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-viewer1Displaying the current authenticated Sharepoint user from an asp.net Page Viewer Web PartBenji2008-09-22T01:54:18Z2009-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#14653690Answer by Benji for Not able to display content in <EditItemTemplate> in FormViewBenji2009-09-23T11:15:48Z2009-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#14385910Answer by Benji for dropdown controls in asp.netBenji2009-09-17T12:34:02Z2009-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#14385180Answer by Benji for How to implement a timer in C on windows Benji2009-09-17T12:19:48Z2009-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#14384941Answer by Benji for svn commit showing updated files as added Benji2009-09-17T12:15:54Z2009-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#14334500Answer by Benji for Why is it so hard to enforce YAGNI?Benji2009-09-16T14:44:15Z2009-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#14334217Answer by Benji for I am a team of 1. What design methodology should I be using?Benji2009-09-16T14:40:57Z2009-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#14333650Answer by Benji for Easier way to turn off paging Benji2009-09-16T14:34:47Z2009-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#14332664Answer by Benji for What are extern variables in C?Benji2009-09-16T14:18:57Z2009-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-1Answer by Benji for Upload files outside of webrootBenji2009-09-16T13:54:08Z2009-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#14331140Answer by Benji for ASP.Net avoid multiple Style and Script blocks in Custom ControlBenji2009-09-16T13:52:34Z2009-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#14329301Answer by Benji for Is my source/development file hierarchy a good one?Benji2009-09-16T13:22:39Z2009-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#14328740Answer by Benji for UpdateCommand problem in a TemplateField in asp.net GridViewBenji2009-09-16T13:10:21Z2009-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><UpdateParameters>
<asp:Parameter Name="Name" Type="String" />
<asp:Parameter Name="Id" Type="Int64" />
</UpdateParameters>
</code></pre>
http://stackoverflow.com/questions/1424797/refactoring-gridview-export-to-csv-file0Refactoring: Gridview Export to CSV fileBenji2009-09-15T02:12:08Z2009-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("\&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 & 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 & 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#1709472Comment by Benji on Are these people lying about being certified?Benji2009-11-10T16:59:44Z2009-11-10T16:59:44ZCorrect. I would ask them what exams they have taken specifically. format is something like 70-536http://stackoverflow.com/questions/1709391/creating-a-makefile-for-2-targets/1709412#1709412Comment by Benji on creating a makefile for 2 targetsBenji2009-11-10T16:52:53Z2009-11-10T16:52:53ZYep. One point - make looks for the first target by default, so place "all" above the "svr" and "clt" targets.http://stackoverflow.com/questions/1708911/net-team-best-practices-and-methods/1708943#1708943Comment by Benji on .NET Team - Best Practices and MethodsBenji2009-11-10T16:46:32Z2009-11-10T16:46:32ZDykam, umm, what jrista saidhttp://stackoverflow.com/questions/1708937/formatting-values-for-csv-file-in-vb-net/1708979#1708979Comment by Benji on Formatting values for CSV File in vb.netBenji2009-11-10T16:05:57Z2009-11-10T16:05:57Zacadia, 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#1708979Comment by Benji on Formatting values for CSV File in vb.netBenji2009-11-10T16:03:58Z2009-11-10T16:03:58ZI'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#373288Comment by Benji on Best way to filter domain objects for json output in an ASP.NET MVC applicationBenji2009-11-05T05:39:16Z2009-11-05T05:39:16Zthe link is broken?http://stackoverflow.com/questions/101162/json-and-asp-net-mvc/101256#101256Comment by Benji on JSON and ASP.NET MVCBenji2009-10-27T13:29:06Z2009-10-27T13:29:06ZNo formatting in a comment, but... $.getJSON("/controllerName/MyAction", { id: 7 }, callbackFunction);
http://stackoverflow.com/questions/1438395/dropdown-controls-in-asp-net/1438591#1438591Comment by Benji on dropdown controls in asp.netBenji2009-09-17T14:07:21Z2009-09-17T14:07:21Zisn'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#1433450Comment by Benji on Why is it so hard to enforce YAGNI?Benji2009-09-16T14:52:14Z2009-09-16T14:52:14ZNope, I meant "agile enough to remove the It when You Aint Gonna Need It becomes obvious". 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#1433125Comment by Benji on Upload files outside of webrootBenji2009-09-16T14:21:04Z2009-09-16T14:21:04ZYeah, 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#1427627Comment by Benji on Refactoring: Gridview Export to CSV fileBenji2009-09-16T12:30:26Z2009-09-16T12:30:26ZGreat advice, thanks. The turkey test was very interesting...
http://stackoverflow.com/questions/1424797/refactoring-gridview-export-to-csv-fileComment by Benji on Refactoring: Gridview Export to CSV fileBenji2009-09-15T02:13:36Z2009-09-15T02:13:36Zbtw, how do I get the SO editor to recognise Return t.Replace("&nbsp;", "")?http://stackoverflow.com/questions/1372811/how-are-array-and-pointer-types-handled-internally-in-c-compilers-int-a-vs/1372845#1372845Comment by Benji on How are array and pointer types handled internally in C compilers? ( int *a; vs. int a[]; )Benji2009-09-03T12:04:51Z2009-09-03T12:04:51ZRobert, 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#1372952Comment by Benji on How are array and pointer types handled internally in C compilers? ( int *a; vs. int a[]; )Benji2009-09-03T12:03:36Z2009-09-03T12:03:36ZAgree. What did I say differently?
http://stackoverflow.com/questions/1328258/the-difference-between-a-view-and-base-relationComment by Benji on The difference between a 'view' and 'base' relationBenji2009-08-25T13:27:46Z2009-08-25T13:27:46ZWhat do you mean by "base relation"?