User Coda - Stack Overflowmost recent 30 from stackoverflow.com2009-12-20T09:25:20Zhttp://stackoverflow.com/feeds/user/14807http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/632781/usercontrol-access-javascript-from-a-contents-pages-master-page0Usercontrol access javascript from a Content's Page's Master PageCoda2009-03-11T00:07:08Z2009-04-15T23:38:24Z
<p>Hello all I have a problem. I have a masterpage that all of my Content pages inherit from. Within this masterpage I have a script tag pointing to the javascript file folder "~/Scripts/validation.js"</p>
<p>On my content pages I use different usercontrols that require the use of many of the functions within the validation.js file however if I dont put the tag and the javascript functions within a contentholder on the contentpage the usercontrols do not see these functions and I get errors like "OnNameValidation" is not defined.</p>
<p>Of course I can copy the javscript code into all of the pages but that's 30+ pages and a maintenance nightmare if I find a bug in one of the javscript functions. </p>
<p>So the question (if you haven't already figured out from my long dissertation) is how can I declare the script tag with the path to the validation.js file so that contentpages and their usercontrols etc. can access the functions/code.</p>
<p>Thanks in advance.</p>
http://stackoverflow.com/questions/180081/what-is-the-best-3rd-party-gui-framework-for-application-development-in-c/692258#6922580Answer by Coda for What is the best 3rd party GUI framework for application development in C#?Coda2009-03-28T05:13:50Z2009-03-28T05:13:50Z<p>I would say go for DevExpress seems to be the most elegant, intuitive and well document suite out there.</p>
<p>To see their product offering in action demos.devexpress.com</p>
<p>Do the same for any component suite check out their demos and see which best suit you needs.</p>
http://stackoverflow.com/questions/37921/what-is-the-best-winform-ui-component-set/692255#6922550Answer by Coda for What is the best winform UI component set?Coda2009-03-28T05:10:24Z2009-03-28T05:10:24Z<p>DevExpress is my vote.</p>
<ol>
<li>Great components</li>
<li>Great Support</li>
<li>Great Documentation.</li>
</ol>
<p>Programming against components IMHO is very intuitive as compared to the other guys (Infragistics, Component One).</p>
http://stackoverflow.com/questions/81787/what-3rd-party-controls-are-net-developers-using/692240#6922400Answer by Coda for What 3rd Party Controls are .Net Developers usingCoda2009-03-28T05:05:24Z2009-03-28T05:05:24Z<p>DevExpress gets my vote as well my and my development team have been using the Enterprise package for the past 3 years and it's met our expectations. One thing we love about DevExpress is that they have EXCELLENT support and constantly updating their suite.</p>
http://stackoverflow.com/questions/466898/good-book-training-material-to-learn-asp-net-2-03Good Book/Training Material To Learn ASP.NET 2.0+Coda2009-01-21T20:43:43Z2009-03-18T11:52:54Z
<p>Hello all can you suggest a book/s or training material (APPDEV, LearnKey etc.) that is very thorough in learning ASP.NET 2.0 and better?</p>
<p>I am going to start the SAMS ASP.NET Unleashed Book since a know of a few training classes that uses this book as a textbook.</p>
<p>Let me know of that book/site/training material that really helped you in learning asp.net 2.0</p>
<p>Thanks in advance.</p>
http://stackoverflow.com/questions/164432/what-real-life-bad-habits-has-programming-given-you/632834#6328341Answer by Coda for What real life bad habits has programming given you?Coda2009-03-11T00:25:39Z2009-03-11T00:25:39Z<p>When I should be relaxing I'm thinking about that piece of code that didn't work they way I wanted it to and trying to figure out the solution.</p>
<p>More times than not programming(and related things) consumes my mind.</p>
http://stackoverflow.com/questions/240713/how-can-i-encrypt-a-querystring-in-asp-net/505947#5059470Answer by Coda for How can I encrypt a querystring in asp.net?Coda2009-02-03T03:36:39Z2009-02-03T03:36:39Z<p>Look into TSHAK. Many large sites out there use this 3rd party component.</p>
<p><a href="http://www.dotnetjunkies.com/howto/99201486-acfd-4607-a0cc-99e75836dc72.dcik" rel="nofollow">http://www.dotnetjunkies.com/howto/99201486-acfd-4607-a0cc-99e75836dc72.dcik</a>
<a href="http://blog.taragana.com/index.php/archive/tutorial-to-encrypt-a-query-in-two-minutes/" rel="nofollow">http://blog.taragana.com/index.php/archive/tutorial-to-encrypt-a-query-in-two-minutes/</a></p>
<p>Hope this helps.</p>
http://stackoverflow.com/questions/466760/add-multiple-user-control-of-the-same-type-to-a-page1Add Multiple User Control of the Same Type to a PageCoda2009-01-21T20:08:57Z2009-01-21T20:17:25Z
<p>Similar questions to this one have been asked but none seem to address my exact situation here's what I am trying to do.</p>
<p>I have a user control that manages student info. i.e. FirstName, LastName, Address etc.</p>
<p>I have a webpage/form that has a button on it. "Add Student". What I want to accomplish is for a new StudentInfo control to be added to the webform after each click.</p>
<p>My current code looks something like this</p>
<pre><code>Private Sub btnAddStudent_Click(sender as object, ByVal e As System.EventArgs)
Dim lStudentInfo as Control
LoadControl("~/StudentInfo.ascx")
Me.placeholder1.controls.add(lStudentInfo)
End Sub
</code></pre>
<p>With this code only one StudentInfo control is added and upon pressing the "Add" button again a new StudentInfo control isnt added below the first one and the text/data entered within the first control is cleared.</p>
<p>Thanks in advance for any assistance.</p>
http://stackoverflow.com/questions/145440/deploy-a-desktop-shortcut-to-a-device-running-windows-ce-4-2-vs2005/378549#3785490Answer by Coda for Deploy a Desktop Shortcut to a Device running Windows CE 4.2 (VS2005)Coda2008-12-18T17:22:34Z2008-12-18T17:22:34Z<p>Can someone please post a sample Inf file for installing to the desktop? I've tried everything in the post (inf method) and nothing works.</p>
<p>Thanks in advance.</p>
http://stackoverflow.com/questions/79496/how-do-i-import-facebook-friends-from-another-website/79571#795712Answer by Coda for How do I import facebook friends from another websiteCoda2008-09-17T03:12:09Z2008-09-17T03:12:09Z<p>Seems like Facebook has an api for this. Check this blog here.</p>
<p><a href="http://developers.facebook.com/news.php?blog=1&story=73" rel="nofollow">http://developers.facebook.com/news.php?blog=1&story=73</a></p>
http://stackoverflow.com/questions/76364/what-is-the-single-most-effective-thing-you-did-to-improve-your-programming-skill/79543#795430Answer by Coda for What is the single most effective thing you did to improve your programming skills?Coda2008-09-17T03:07:04Z2008-09-17T03:07:04Z<ol>
<li>I joined developer centric communities web and physically</li>
<li>Read/Try to read other people's code.</li>
<li>Write code.</li>
<li>Read read read (Blogs, podcasts, books etc.) and do do do what you've read read read.</li>
</ol>
http://stackoverflow.com/questions/78756/what-do-you-use-to-keep-notes-as-a-developer/79516#795160Answer by Coda for What do you use to keep notes as a developer?Coda2008-09-17T03:02:04Z2008-09-17T03:02:04Z<p>I typically use my blogspot account along with my moleskin notebook and mark different sections like "learning", "projects" with page markers. Even though I like this system many times I find myself having a lot of notepad files named after the subject/project.</p>
<p>Hope this helps.</p>
http://stackoverflow.com/questions/466898/good-book-training-material-to-learn-asp-net-2-0/466943#466943Comment by Coda on Good Book/Training Material To Learn ASP.NET 2.0+Coda2009-03-24T23:24:17Z2009-03-24T23:24:17ZHave you found any books on architecting applications the right way besides a mentor? Thanks http://stackoverflow.com/questions/466898/good-book-training-material-to-learn-asp-net-2-0/657851#657851Comment by Coda on Good Book/Training Material To Learn ASP.NET 2.0+Coda2009-03-24T22:16:43Z2009-03-24T22:16:43ZI would suggest not posting links to illegal copywrighted material on this site. We don't want the publishers looking for Jeff and Joel.http://stackoverflow.com/questions/145440/deploy-a-desktop-shortcut-to-a-device-running-windows-ce-4-2-vs2005/625375#625375Comment by Coda on Deploy a Desktop Shortcut to a Device running Windows CE 4.2 (VS2005)Coda2009-03-16T01:39:55Z2009-03-16T01:39:55ZThis is not a solution to creating a shortcut on the desktop. Thanks for the effort though.http://stackoverflow.com/questions/632781/usercontrol-access-javascript-from-a-contents-pages-master-page/632792#632792Comment by Coda on Usercontrol access javascript from a Content's Page's Master PageCoda2009-03-15T22:37:06Z2009-03-15T22:37:06ZOk. Put the alert call where? Sorry for not reporting.
http://stackoverflow.com/questions/632781/usercontrol-access-javascript-from-a-contents-pages-master-page/632792#632792Comment by Coda on Usercontrol access javascript from a Content's Page's Master PageCoda2009-03-12T21:59:55Z2009-03-12T21:59:55ZFunctions/methods are still undefined.http://stackoverflow.com/questions/632781/usercontrol-access-javascript-from-a-contents-pages-master-page/632792#632792Comment by Coda on Usercontrol access javascript from a Content's Page's Master PageCoda2009-03-11T00:19:58Z2009-03-11T00:19:58ZThis doesn't work. I still get the "OnNameValidation" is undefined. Thanks