User WebDude - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T09:47:51Z http://stackoverflow.com/feeds/user/15360 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/82099/wcf-msmq-how-do-i-handle-message-failure 5 WCF MSMQ - How do I handle message failure WebDude 2008-09-17T11:15:21Z 2009-11-11T16:26:29Z <p>I have create a WCF service and am utilising netMsmqBinding binding.</p> <p>This is a simple service that passes a Dto to my service method and does not expect a response. The message is placed in an MSMQ, and once picked up inserted into a database.</p> <p>What is the best method to make sure no data is being lost.</p> <p>I have tried the 2 following methods:</p> <p>1) Throw an exception</p> <p>This places the message in a dead letter queue for manual perusal. I can process this when my strvice starts</p> <p>2) set the receiveRetryCount="3" on the binding</p> <p>After 3 tries - which happen instantanously, this seems to leave the message in queue, but fault my service. Restarting my service repeats this process.</p> <p>Ideally I would like to do the follow:</p> <p>Try process the message If this fails, wait 5 minutes for that message and try again. If that process fails 3 times, move the message to a dead letter queue. Restarting the service will push all messages from the dead letter queue back into the queue so that it can be processed.</p> <p>Can I achieve this? If so how? Can you point me to any good articles on how best to utilize WCF and MSMQ for my given sceneria.</p> <p>Any help would be much appreciated. Thanks!</p> <p><strong>Some additional information</strong></p> <p>I am using MSMQ 3.0 on Windows XP and Windows Server 2003. Unfortunately I can't use the built in poison message support targeted at MSMQ 4.0 and Vista/2008</p> http://stackoverflow.com/questions/1142353/targetting-silverlight-v2 1 Targetting silverlight v2 WebDude 2009-07-17T09:53:23Z 2009-08-05T20:32:10Z <p>Hi,</p> <p>Now that I have installed Silverlight 3, I seem unable to build a Silverlight application for Silverlight 2.</p> <p>I have set my objects minRuntimeVersion to 2.0.31005.0, however users who do not have silverlight 3 are still prompted to update.</p> <p>I'd prefer not to force this update on my users just yet, so is there a way to build Silverlight for version 2 only?</p> <p>I am using Vistual Studio and have installed the silverlight_tools that came out with version 3.<br /> Previously I had silverlight_tools from version 2 and simply installed the new version over this.</p> http://stackoverflow.com/questions/182298/subversion-versus-vault 5 Subversion versus Vault WebDude 2008-10-08T11:42:28Z 2009-07-08T08:50:41Z <p>I'm currently reviewing the benefits of moving from SVN to a SourceGear Vault. Has anyone got advice or a link to a detailed comparison between the two? Bear in mind I would have to move my current Source Control system across which works strongly in SVN's favor</p> <p>Here is some info I have found out thus far from my own investigations.</p> <p>I have been taking some time tests between the two and vault seems to perform most operations much faster. Time tests used the same server as the repository, the same workstation client, and the same project.</p> <p><strong>Time Comparisons</strong></p> <ul> <li>SVN</li> </ul> Add/Commit &nbsp;&nbsp;&nbsp;12:30 Get Latest Revision &nbsp;&nbsp;&nbsp;5:35 Tagging/Labelling &nbsp;&nbsp;&nbsp;0:01 Branching &nbsp;&nbsp;&nbsp;N/A - I don't think true branching exists in SVN </p> <ul> <li>Vault</li> </ul> Add/Commit &nbsp;&nbsp;&nbsp;4:45 Get Latest Revision &nbsp;&nbsp;&nbsp;0:51 Tagging/Labelling &nbsp;&nbsp;&nbsp;0:30 Branching &nbsp;&nbsp;&nbsp;3:23 </p> <p><em>(can't get this to format correctly)</em></p> <p>I also found an online source comparing some other points. This is the kind of information i'm looking for.</p> <p><strong>Usage Comparisons</strong></p> <ul> <li><p>Subversion is edit/merge/commit only. Vault allows you to do either edit/merge/commit or checkout/edit/checkin.</p></li> <li><p>Vault looks and acts just like VSS, which makes the learning curve effectively zero for VSS users.</p></li> <li><p>Vault has a VS plugin, but it only works if you're going to run in checkout-mode.</p></li> <li><p>Subversion has clients for pretty much every OS you can imagine; Vault has a GUI client for Windows and a command line client for Mono.</p></li> <li><p>Both will support remote work, since both use HTTP as their transport (Subversion uses extended DAV, Vault uses SOAP).</p></li> <li><p>Subversion installation, especially w/ Apache, is more complex.</p></li> <li><p>Subversion has a lot of third party support. Vault has just a few things.</p></li> </ul> <p><strong>My question</strong></p> <p>Has anyone got advice or a link to a detailed comparison between the two?</p> http://stackoverflow.com/questions/830931/how-to-databind-multiple-series-to-a-silverilght-toolkit-chart 0 How to databind Multiple Series to a Silverilght Toolkit Chart WebDude 2009-05-06T18:12:55Z 2009-05-06T18:12:55Z <p>Hi,</p> <p>I am trying to use databinding to bind data to a Silverlight toolkit chart. I will have one to many sets of series so cannot determine how many series i need before hand. I also want to stick to a databinding model and not resort to programmatically adding these series as many other controls bind to this datasource.</p> <p>I found an article on the web by Jeremiah Morrill that showed a solution for this very problem.</p> <p><a href="http://jmorrill.hjtcentral.com/Home/tabid/428/EntryId/351/Silverlight-Charts-Binding-multiple-Series.aspx" rel="nofollow">Jeremiah's solution</a></p> <p>Now this worked perfectly at first, until I tried to update my databinding's datasource values while the application was running, and this would not reflect. As if it was not subscribed to the PropertyChanged event. I even bound the same data to a datagrid next to the chart, and the datagrid reacts as expected changing everytime my databinding's datasource values change.</p> <p>In my ChartHelper from Jeremiah's solution, i have the following dependency property</p> <pre><code>public static readonly DependencyProperty SeriesSourceProperty = DependencyProperty.RegisterAttached("SeriesSource", typeof(IEnumerable), typeof(ChartHelper), new PropertyMetadata(SeriesSourceChanged)); </code></pre> <p>The SeriesSourceChanged event is called when my application starts up. However, when my DataBinding's datasource values change, this is not called again.</p> <p>So questions are as follows:</p> <ul> <li>How can I capture the PropertyChanged notification with this solution?</li> <li>Is there something I can add to the DependencyProperty above to capture this?</li> <li>Is it something i need to add to the chart or series to achieve this?</li> </ul> <p>I have been racking my brain over this for several days, so any help or suggestions will be much appreciated</p> <p>Thanks!</p> http://stackoverflow.com/questions/347374/microft-visual-studio-testing-causing-tests-to-fail 0 Microft Visual Studio Testing causing tests to fail WebDude 2008-12-07T08:13:25Z 2008-12-15T21:04:51Z <p>After using nunit for a long time, i've decided to test out Microsoft's built in testing framework.</p> <p>At the beginning of my tests, I generally clean the database to get it into a state i can rely on for testing. In my test setup, i delete all the data and insert fresh data for my tests.</p> <p>Since starting to use the MS tests, i've noticed my tests intermitantly fail because data resetting is conflicting. Like my tests are all being run simultaneously.</p> <p>Any idea how i can get around this? Is there an option to force each class of tests to run one at a time?</p> <p>Thanks for any help</p> http://stackoverflow.com/questions/225149/how-to-get-asp-net-to-redirect-user-back-to-their-starting-point/225215#225215 3 Answer by WebDude for How to get Asp.Net to redirect user back to their starting point. WebDude 2008-10-22T10:49:43Z 2008-10-31T06:53:34Z <p>This could be achieved using Anchor Tags. When you output your elements on Page A, set an anchor tag next to each element like follows:</p> <pre><code>&lt;a name="#175"&gt;&lt;/a&gt; </code></pre> <p>Where this item would be item id 175. Then when you redirect back to PageA, add a "#175" onto the end of the url</p> <pre><code>Response.Redirect("PageA.aspx#175"); </code></pre> http://stackoverflow.com/questions/246225/best-way-to-create-a-midnight-datetime-in-c/246237#246237 1 Answer by WebDude for Best way to create a Midnight DateTime in C# WebDude 2008-10-29T09:35:41Z 2008-10-29T09:35:41Z <p>DateTime.Now.AddDays(1).Date</p> http://stackoverflow.com/questions/239193/visual-studio-opens-development-servers-for-all-websites-in-my-project 1 Visual Studio opens Development Servers for all websites in my project WebDude 2008-10-27T06:09:13Z 2008-10-27T14:20:41Z <p>I currently have a Visual Studio solution with 8 web applications. When I try run one of these applications, 8 instances of the Casini Web Development Servers are launched.</p> <p>Is there anyway to specify that only the web application I have set as startup project will be launched and not all 8.</p> <p>I am using Visual Studio 2008</p> <p>Thanks</p> http://stackoverflow.com/questions/225327/inline-script-does-not-resolve-in-asp-net-custom-control/225343#225343 0 Answer by WebDude for Inline script does not resolve in ASP.Net custom control WebDude 2008-10-22T11:28:06Z 2008-10-22T11:28:06Z <p>Values in a web control do not render server side code. Rather set that from the Code Behind</p> <pre><code>RegExValidator1.ValidationExpression = RegExStrings.SomePattern; </code></pre> http://stackoverflow.com/questions/190816/getting-the-bound-field-name-at-run-time-in-asp-net/190870#190870 1 Answer by WebDude for Getting the Bound Field Name at Run Time in ASP.Net WebDude 2008-10-10T11:13:42Z 2008-10-10T11:13:42Z <p>after messing around extensively in debug, I found this to work</p> <pre><code>((System.Web.UI.WebControls.AutoGeneratedField)((System.Web.UI.WebControls.DataControlFieldCell)(e.Row.Cells[0])).ContainingField).SortExpression </code></pre> <p>In debug use shift+F9 to open the quick watch window pain and explore your Event Argument visually</p> http://stackoverflow.com/questions/190270/installing-asp-net-2-0-after-iis/190276#190276 9 Answer by WebDude for Installing ASP.Net 2.0 after IIS WebDude 2008-10-10T05:50:51Z 2008-10-10T06:14:32Z <p>run from the command line</p> <pre><code>aspnet_regiis -i </code></pre> <p>You may have to navigate to the folder it was installed. Mine and the default is</p> <pre><code>C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727 </code></pre> http://stackoverflow.com/questions/187890/adding-click-event-to-button-to-fire-javascript-through-vb-net/187905#187905 3 Answer by WebDude for Adding click event to button to fire javascript, through VB.NET WebDude 2008-10-09T15:50:17Z 2008-10-09T15:56:25Z <p>You can use the OnClientClick command to call client side javascript. If your button was called btnMyButton, write your code as follows:</p> <pre><code>btnMyButton.OnClientClick = "window.open('http://www.myimage.com'); return false;"; </code></pre> <p>using return false at the end will ensure the button doesn't cause a post back on the page. replace the javascript with what you wanted to do.</p> <p>An alternative to aboves would be</p> <pre><code>btnMyButton.Attributes.Add("onclick", "window.open('http://www.myimage.com'); return false;"; </code></pre> http://stackoverflow.com/questions/187881/visual-studio-2005-designer-not-adding-controls-to-the-aspx-designer-cs/187925#187925 3 Answer by WebDude for Visual Studio 2005 Designer not Adding controls to the aspx.Designer.cs WebDude 2008-10-09T15:53:49Z 2008-10-09T15:53:49Z <p>This happened to me when I installed the sp1 in visual studio 2008. The way i got my code behind to recognise my controls was by viewing the aspx page in designer mode, then changing back to code view.</p> <p>This seemed to give visual studio the slap it needed to start automatically populating my designers.</p> <p>I realise your problem is in Vis 2005, but this could help you</p> <p>Good Luck!</p> http://stackoverflow.com/questions/182542/email-address-validation-for-asp-net/182582#182582 5 Answer by WebDude for Email Address Validation for ASP.NET WebDude 2008-10-08T12:55:47Z 2008-10-08T12:55:47Z <p>Any script tags posted on an ASP.NET web form will cause your site to throw and unhandled exception.</p> <p>You can use a asp regex validator to confirm input, just ensure you wrap your code behind method with a if(IsValid) clause in case your javascript is bypassed. If your client javascript is bypassed and script tags are posted to your asp.net form, asp.net will throw a unhandled exception.</p> <p>You can use something like:</p> <pre><code>&lt;asp:RegularExpressionValidator ID="regexEmailValid" runat="server" ValidationExpression="\w+([-+.]\w+)*@\w+([-.]\w+)*\.\w+([-.]\w+)*" ControlToValidate="tbEmail" ErrorMessage="Invalid Email Format"&gt;&lt;/asp:RegularExpressionValidator&gt; </code></pre> http://stackoverflow.com/questions/182112/what-are-some-funny-loading-statements-to-keep-users-amused/182212#182212 175 Answer by WebDude for What are some funny loading statements to keep users amused? WebDude 2008-10-08T11:17:58Z 2008-10-08T11:17:58Z <p>"Loading humorous message ... Please Wait"</p> http://stackoverflow.com/questions/181597/what-are-the-naming-guidelines-for-asp-net-controls/181823#181823 2 Answer by WebDude for What are the naming guidelines for ASP.NET controls? WebDude 2008-10-08T08:27:54Z 2008-10-08T08:27:54Z <p>Not sure about Microsoft official standards, but this is what i've done through out my development career.</p> <p>I generally abbreviate the control type in front of the the name of what the control does. I keep the abbreviation lower case and the control's name CamelCase.</p> <p>E.g. A texbox for username becomes tbUserName</p> <p>Here is a list of standard abbreviations I use:</p> <pre><code>Abbr - Control btn - Button cb - CheckBox cbl - CheckBoxList dd - DropDownList hl - Hyperlink img - Image ib - ImageButton lbl - Label lbtn - LinkButton lb - ListBox lit - Literal pnl - Panel ph - PlaceHolder rb - RadioButton rbl - RadioButtonList tb - Textbox </code></pre> http://stackoverflow.com/questions/178396/form-elements-in-asp-net-master-pages-and-content-pages/178408#178408 -1 Answer by WebDude for Form Elements in ASP.NET Master Pages and Content Pages WebDude 2008-10-07T13:21:35Z 2008-10-07T13:21:35Z <p>no, you can only have one asp.net form per page. That has been the rule since 1.0</p> <p>They should both share the same form</p> http://stackoverflow.com/questions/173209/how-do-i-connect-to-an-mdf-microsoft-sql-server-database-file-in-a-simple-web/173375#173375 6 Answer by WebDude for How do I connect to an .mdf (Microsoft SQL Server Database File) in a simple web project? WebDude 2008-10-06T06:43:00Z 2008-10-06T06:43:00Z <p>A great resource I always keep around is <a href="http://connectionstrings.com" rel="nofollow">connectionstrings.com</a>. It's really handy for finding these connection strings when you can't find an example.</p> <p>Particularly <a href="http://connectionstrings.com/?carrier=sqlserver2005" rel="nofollow">this page</a> applied to your problem</p> <p><strong>Attach a database file on connect to a local SQL Server Express instance</strong></p> <pre><code>Driver={SQL Native Client};Server=.\SQLExpress;AttachDbFilename=c:\asd\qwe\mydbfile.mdf; Database=dbname;Trusted_Connection=Yes; </code></pre> http://stackoverflow.com/questions/161106/distributed-cache-session-where-should-i-turn 1 Distributed Cache/Session where should I turn? WebDude 2008-10-02T06:36:12Z 2008-10-03T07:21:31Z <p>I am currently looking at a distributed cache solution. </p> <p>If money was not an issue, which would you recommend?</p> <ul> <li><a href="http://www.scaleoutsoftware.com/" rel="nofollow">www.scaleoutsoftware.com</a></li> <li><a href="http://www.alachisoft.com/ncache/" rel="nofollow">ncache</a></li> <li><a href="http://sourceforge.net/projects/memcacheddotnet/" rel="nofollow">memcacheddotnet</a></li> <li><a href="http://www.microsoft.com/downloads/details.aspx?FamilyId=B24C3708-EEFF-4055-A867-19B5851E7CD2&amp;displaylang=en" rel="nofollow">MS Velocity</a></li> </ul> http://stackoverflow.com/questions/100053/wcf-overhead-of-throwing-faultexceptions-within-your-service 1 WCF - Overhead of throwing FaultExceptions within your service WebDude 2008-09-19T06:31:53Z 2008-10-02T17:27:07Z <p>I posted a <a href="http://stackoverflow.com/questions/81306/wcf-faults-exceptions-versus-messages">question</a> about using Messages versus Fault Exceptions to communicate business rules between services.</p> <p>I was under the impression it carried overhead to throw this exception over the wire, but considering it's just a message that get serialized and deserialized, they were in fact one and the same.</p> <p>But this got me thinking about throwing exceptions in general or more specifically throwing FaultExceptions.</p> <p>Now within my service, if i use</p> <pre><code>throw new FaultException </code></pre> <p>to communicate a simple business rule like "Your account has not been activated", What overhead does this now carry? Is it the same overhead as throwing regular exceptions in .NET? or does WCF service handle these more efficiently with the use of Fault Contracts.</p> <p>So in my user example, which is the optimal/preferred way to write my service method</p> <p>option a</p> <pre><code>public void AuthenticateUser() { throw new FaultException("Your account has not been activated"); } </code></pre> <p>option b</p> <pre><code>public AutheticateDto AutheticateUser() { return new AutheticateDto() { Success = false, Message = "Your account has not been activated"}; } </code></pre> http://stackoverflow.com/questions/161531/submitting-a-form-on-a-user-control-by-pressing-enter-on-a-text-field-does-not-wo/161768#161768 3 Answer by WebDude for Submitting a form on a user control by pressing enter on a text field does not work WebDude 2008-10-02T11:08:00Z 2008-10-02T12:47:26Z <p>using your forms default button is correct, but you need to supply it the correct id as it will be rendered to HTML.</p> <p>so you do as Jon said above:</p> <pre><code>&lt;form runat="server" DefaultButton="SubmitButton"&gt; </code></pre> <p>But ensure you use the Button name that will be rendered. You can achieve this my making the Button public in your control, or a method that will return it's ClientId.</p> <p>Let's say your button is called btnSubmit, and your implementation of your control ucLogin.</p> <p>Give your form an id</p> <pre><code>&lt;form runat="server" id="form1"&gt; </code></pre> <p>Then in your page load in your code behind of your page, set the DefaultButton by handing it your button client id.</p> <pre><code>protected void Page_Load(object sender, EventArgs e) { form1.DefaultButton = ucLogin.btnSubmit.ClientID; } </code></pre> http://stackoverflow.com/questions/161782/what-is-the-best-memcache-solution-for-asp-net-applications/161796#161796 0 Answer by WebDude for What is the best MemCache solution for ASP.NET applications? WebDude 2008-10-02T11:23:58Z 2008-10-02T11:23:58Z <p>My sentiments exactly - <a href="http://stackoverflow.com/questions/161106/distributed-cachesession-where-should-i-turn">My Question</a></p> <p>From what I've gathered, <a href="http://sourceforge.net/projects/memcacheddotnet/" rel="nofollow">memcacheddotnet</a> is the best free options, <a href="http://www.scaleoutsoftware.com/" rel="nofollow">scaleout</a> if you want to pay</p> http://stackoverflow.com/questions/152093/asp-net-single-login-is-distributing-session-the-answer 1 ASP.NET Single Login - Is distributing session the answer WebDude 2008-09-30T07:34:20Z 2008-09-30T07:55:00Z <p>We have 5 balanced web servers with various websites. What I am trying to achieve is to ensure a single login. i.e. the same user account cannot login to the same website more than once at any given time.</p> <p>The method i'm considering for solving this, is to share session amongst the servers so I can control which session is assigned to which account. I can then have control over my logins. If a user logs in and there is already a session assigned to their user account, I can just expire the first session or reject the login.</p> <p>I don't want to lose the benefit of the balanced servers, so using a single Sql Server as my session state server, or a single server to handle login is not an option.</p> <p>Is distributed session (something like <a href="http://www.scaleoutsoftware.com/" rel="nofollow">Scaleout Sofware</a>) the correct approach to achieve this?</p> <p>Or is there another mechanism to handle single login that i'm blissfully unaware of?</p> http://stackoverflow.com/questions/147364/totaling-a-gridview-in-asp-net/147620#147620 1 Answer by WebDude for Totaling a GridView in ASP.NET WebDude 2008-09-29T05:21:41Z 2008-09-29T05:21:41Z <p>One solution is to build some javascript in you RowDataBound method to constantly update those totals when the textboxes change.</p> <p>So during the RowDataBound, start building a javascript string in memory that will add up the textboxes you need added. What's nice in RowDataBound is you can get the Client Side id's of these textboxes by calling TextBox.ClientId. Add this javascript to the page, then also add an onkeyup event to each textbox you require to call this script.</p> <p>So something like (this is a row bound event from a gridview)</p> <pre><code>private string _jscript; protected void gridview_RowDataBound(object sender, GridViewRowEventArgs e) { if (e.Row.RowType == DataControlRowType.DataRow) { //Get your textbox Textbox tb = e.Row.FindControl("tbAddUp"); //Add the event that you're going to call to this textbox's attributes tb.Attributes.Add("onkeyup", "MyAddUpJavaScriptMethod();"); //Build the javascript for the MyAddUpJavaScriptMethod jscript += "document.getElementById('" + tb.ClientId + '").value + "; } } </code></pre> <p>Then once you've built that whole script, use your Page.ClientScript class to add a method to you page which will be called by your onkeyup in your textboxes "MyAddUpJavaScriptMethod"</p> <p>Hope that makes sense and helps</p> http://stackoverflow.com/questions/139207/repeater-listview-datalist-datagrid-gridview-which-to-choose/139308#139308 20 Answer by WebDude for Repeater, ListView, DataList, DataGrid, GridView ... Which to choose? WebDude 2008-09-26T12:55:21Z 2008-09-26T12:55:21Z <p>It's really about what you trying to achieve</p> <ul> <li><p>Gridview - Limited in design, works like an html table. More in built functionality like edit/update, page, sort. Lots of overhead. </p></li> <li><p>DataGrid - Old version of the Gridview. A gridview is a super datagrid.</p></li> <li><p>Datalist - more customisable version of the Gridview. Also has some overhead. More manual work as you have to design it yourself.</p></li> <li><p>ListView - the new Datalist :). Almost a hybrid of the datalist and gridview where you can use paging and build in Gridview like functionality, but have the freedom of design. One of the new controls in this family</p></li> <li><p>Repeater - Very light weight. No built in functionality like Headers, Footers. Has the least overhead.</p></li> </ul> http://stackoverflow.com/questions/138771/how-do-i-smoothly-format-httphandler-uri/138833#138833 1 Answer by WebDude for How do I "smoothly" format HttpHandler URI? WebDude 2008-09-26T11:17:51Z 2008-09-26T11:17:51Z <p>One solution is to use UrlRewriting to rewrite the Url to what you need.</p> <p>I use <a href="http://urlrewriter.net/" rel="nofollow">http://urlrewriter.net/</a> to do all my rewriting, and you could setup something like this in your scenario</p> <pre><code>&lt;rewriter&gt; &lt;rewrite url="DevelopmentProject/testhandler/([\w]+)" to="DevelopmentProject/testhandler/?input=$1" /&gt; &lt;/rewriter&gt; </code></pre> <p>This would remain "http: //localhost/DevelopmentProject/testhandler/thisismyinput" in your browser address bar, yet process as "http: //localhost/DevelopmentProject/testhandler/?input=thisismyinput"</p> http://stackoverflow.com/questions/138071/catching-exceptions-within-aspx-and-ascx-pages/138084#138084 2 Answer by WebDude for Catching exceptions within .aspx and .ascx pages WebDude 2008-09-26T06:59:03Z 2008-09-26T06:59:03Z <p>Unfortunately an unhandled exception will always error your site. YOu can prevent this a few ways though.</p> <ul> <li>Use the section in your web.config to show a user friendly message</li> <li>In your Global.asax - or a Custom Handler - catch your unhandled exception and react accordingly - <a href="http://www.webdude.co.za/archive/2008/09/17/creating-your-own-unhandled-error-logging-module.aspx" rel="nofollow">like this</a></li> </ul> <p><strong>best solution</strong></p> <ul> <li>Make sure you controls don't throw unhandled exceptions!</li> </ul> http://stackoverflow.com/questions/119555/how-do-you-start-building-an-asp-net-web-app/120010#120010 0 Answer by WebDude for How do you start building an ASP.NET web app? WebDude 2008-09-23T09:16:20Z 2008-09-23T09:16:20Z <p>I definitely start with a UI Prototype. Clients never know what they really want untill they see it.</p> <p>A simple change on a UI can translate to a dramatic change in the core components of your system. So rather let the user play with a pretty prototype until they are confident it's what they looking for, and then dive into system objects and database design.</p> <p>With regards to Database and System objects, I find it difficult to decide which way to go. Going database first definitely influences my class design, so I try go object first as much as possible. It turns into a more human design IMO</p> http://stackoverflow.com/questions/114772/adding-custom-headers/114913#114913 1 Answer by WebDude for Adding custom headers WebDude 2008-09-22T13:40:10Z 2008-09-22T13:40:10Z <p>Hi Oscar</p> <p>One method i have used before, though a long winded approach, is <a href="http://nunitasp.sourceforge.net/" rel="nofollow">NUnitASP</a>.</p> <p>This is based on the NUnit framework but intended for ASP.NET UI Testing.</p> <p>It basically starts a browser in memory, and is able to manipulate the content exactly like a user would. Using this you could view your page, enter data into textboxes and submit pages.</p> <p>Hopefully that can help you do the testing you require. I've used it to test load, and spider through sites of mine to gather data.</p> http://stackoverflow.com/questions/101326/iis-wildcard-mapping-not-working-for-asp-net/101408#101408 0 Answer by WebDude for IIS Wildcard Mapping not working for ASP.NET WebDude 2008-09-19T12:23:52Z 2008-09-19T12:23:52Z <p>You can try use custom errors to do this. Go into Custom Errors in you Website properties and set the 404 to point to a URL in your site. Like /404.aspx is that exists.</p> <p>With aspnet_isapi, you want to use a HttpModule to handle your wildcards. like <a href="http://urlrewriter.net/" rel="nofollow">http://urlrewriter.net/</a></p> http://stackoverflow.com/questions/830931/how-to-databind-multiple-series-to-a-silverilght-toolkit-chart Comment by WebDude on How to databind Multiple Series to a Silverilght Toolkit Chart WebDude 2009-05-07T07:03:22Z 2009-05-07T07:03:22Z I have posted a CodePlex issue tracker with a sample solution outlining the problem <a href="http://silverlight.codeplex.com/WorkItem/View.aspx?WorkItemId=2973" rel="nofollow">silverlight.codeplex.com/WorkItem/&hellip;</a> http://stackoverflow.com/questions/187890/adding-click-event-to-button-to-fire-javascript-through-vb-net/187910#187910 Comment by WebDude on Adding click event to button to fire javascript, through VB.NET WebDude 2008-10-09T15:57:30Z 2008-10-09T15:57:30Z correct, it's exactly the same for c# and vb http://stackoverflow.com/questions/187890/adding-click-event-to-button-to-fire-javascript-through-vb-net/187905#187905 Comment by WebDude on Adding click event to button to fire javascript, through VB.NET WebDude 2008-10-09T15:56:42Z 2008-10-09T15:56:42Z good spot thanks! updated http://stackoverflow.com/questions/182529/creating-controls-within-a-loop Comment by WebDude on Creating controls within a Loop WebDude 2008-10-08T12:51:13Z 2008-10-08T12:51:13Z what's wrong with your suggested for loop? it's the solution i would have suggested. Is it not working properly? http://stackoverflow.com/questions/182298/subversion-versus-vault/182454#182454 Comment by WebDude on Subversion versus Vault WebDude 2008-10-08T12:45:18Z 2008-10-08T12:45:18Z Thanks that's a great reference doc. But you can't help but suspect bias. I forgot to mention i'm a Microsoft .NET visual studio developer. Does this change your suggestion? i.e. Does Monotone, Git or Bazaar play nicely with .net projects and Visual Studio? http://stackoverflow.com/questions/161106/distributed-cache-session-where-should-i-turn Comment by WebDude on Distributed Cache/Session where should I turn? WebDude 2008-10-03T05:15:19Z 2008-10-03T05:15:19Z Is that not always a concern regardless of a distributed caching solution? http://stackoverflow.com/questions/161531/submitting-a-form-on-a-user-control-by-pressing-enter-on-a-text-field-does-not-wo/161560#161560 Comment by WebDude on Submitting a form on a user control by pressing enter on a text field does not work WebDude 2008-10-02T11:00:56Z 2008-10-02T11:00:56Z will this work if the button is inside a control? http://stackoverflow.com/questions/151021/is-it-ok-to-use-static-variables-to-cache-information-in-asp-net/151446#151446 Comment by WebDude on Is it OK to use static variables to cache information in ASP.net? WebDude 2008-09-30T07:20:02Z 2008-09-30T07:20:02Z How do those rank against Microsofts Velocity? http://stackoverflow.com/questions/138771/how-do-i-smoothly-format-httphandler-uri Comment by WebDude on How do I "smoothly" format HttpHandler URI? WebDude 2008-09-26T13:02:08Z 2008-09-26T13:02:08Z It's a great thing to implement into your site in general to handle this problem. I am however also waiting for a more natural solution to you question http://stackoverflow.com/questions/138071/catching-exceptions-within-aspx-and-ascx-pages/138082#138082 Comment by WebDude on Catching exceptions within .aspx and .ascx pages WebDude 2008-09-26T07:45:39Z 2008-09-26T07:45:39Z That will just catch the error, it won't stop it from happening. unless you take corrective action within that method http://stackoverflow.com/questions/100053/wcf-overhead-of-throwing-faultexceptions-within-your-service/100088#100088 Comment by WebDude on WCF - Overhead of throwing FaultExceptions within your service WebDude 2008-09-19T06:49:23Z 2008-09-19T06:49:23Z So you're a option B man?? http://stackoverflow.com/questions/82099/wcf-msmq-how-do-i-handle-message-failure/82822#82822 Comment by WebDude on WCF MSMQ - How do I handle message failure WebDude 2008-09-17T13:23:30Z 2008-09-17T13:23:30Z Hi Chris. I'm sure by attributing your operation behavior to TransactionScopeRequired=true negates the need to wrap your Sql Calls in a Transaction Scope as this is already being done. That being said, I'm not sure how your answer relates to my question of MSMQ. http://stackoverflow.com/questions/81306/wcf-faults-exceptions-versus-messages/81339#81339 Comment by WebDude on WCF - Faults / Exceptions versus Messages WebDude 2008-09-17T10:53:01Z 2008-09-17T10:53:01Z I was always under the impression that throwing an exception carried unnecesary overhead. From your post I seem to have been sadly misguided. Before i mark this post as the asnwer, I want to get some more opinions. But considering your input, seems fault contract is the better option http://stackoverflow.com/questions/81306/wcf-faults-exceptions-versus-messages/81436#81436 Comment by WebDude on WCF - Faults / Exceptions versus Messages WebDude 2008-09-17T09:37:24Z 2008-09-17T09:37:24Z cool, done! I gathered your answer was A :) I was hoping to get B out of this!