User Eibx - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T20:09:46Z http://stackoverflow.com/feeds/user/46769 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1579370/creating-jquery-3-step-sign-up/1579389#1579389 1 Answer by Eibx for Creating jquery 3 step sign up Eibx 2009-10-16T17:36:12Z 2009-10-20T09:17:42Z <p>This might help you.</p> <p><a href="http://www.jankoatwarpspeed.com/post/2009/09/28/webform-wizard-jquery.aspx" rel="nofollow">http://www.jankoatwarpspeed.com/post/2009/09/28/webform-wizard-jquery.aspx</a></p> http://stackoverflow.com/questions/1188338/net-or-php-corporate-or-open-source/1188467#1188467 1 Answer by Eibx for .NET or PHP, Corporate or Open-Source ? Eibx 2009-07-27T14:25:36Z 2009-07-27T14:25:36Z <p>A very little amount of people benefit directly from their environment being Open-Source. In most cases you download the latest version of the Framework, and it'll stay that way, until a new version is released.</p> <p>So it really comes down to which language to choose.</p> <p>The best answer would be both - each language does things different.</p> <p>But I started out with PHP and switched to ASP.NET.</p> http://stackoverflow.com/questions/657228/fingerprint-verification/657319#657319 2 Answer by Eibx for fingerprint verification Eibx 2009-03-18T08:08:02Z 2009-03-19T08:10:55Z <p>You could use this free <a href="http://www.softtester.com/programs/free-fingerprint-verification-sdk-107034.shtml" rel="nofollow">Fingerprint Verification SDK</a>. Might help you a lot.</p> <p>Edit: Link added - <a href="http://fvs.sourceforge.net/download.html" rel="nofollow">http://fvs.sourceforge.net/download.html</a></p> http://stackoverflow.com/questions/658232/how-do-i-embed-an-mp3-into-my-blog/658243#658243 1 Answer by Eibx for How do I embed an MP3 into my blog? Eibx 2009-03-18T13:27:02Z 2009-03-18T13:27:02Z <p>You should try downloading <a href="http://www.longtailvideo.com/players/jw-flv-player/" rel="nofollow">FW FLV Media Player</a></p> http://stackoverflow.com/questions/657492/restrict-user-input-using-javascript/657546#657546 5 Answer by Eibx for restrict user input using javascript Eibx 2009-03-18T09:30:03Z 2009-03-18T09:30:03Z <p>This might help you.</p> <p><a href="http://www.w3schools.com/jsref/jsref_onkeydown.asp" rel="nofollow">http://www.w3schools.com/jsref/jsref_onkeydown.asp</a></p> <pre><code>&lt;html&gt; &lt;body&gt; &lt;script type="text/javascript"&gt; function noNumbers(e) { var keynum; var keychar; var numcheck; if(window.event) // IE { keynum = e.keyCode; } else if(e.which) // Netscape/Firefox/Opera { keynum = e.which; } keychar = String.fromCharCode(keynum); numcheck = /\d/; return !numcheck.test(keychar); } &lt;/script&gt; &lt;form&gt; &lt;input type="text" onkeydown="return noNumbers(event)" /&gt; &lt;/form&gt; &lt;/body&gt; &lt;/html&gt; </code></pre> http://stackoverflow.com/questions/642769/whats-your-favorite-way-of-testing-javascript-code-snippets/642828#642828 3 Answer by Eibx for What's your favorite way of testing javascript code snippets? Eibx 2009-03-13T13:55:05Z 2009-03-13T13:55:05Z <p>I use <a href="http://getfirebug.com/" rel="nofollow">Firebug</a> by far the most times.<br /> Otherwise I use the addressbar, or simply adding a button or link on the page.</p> http://stackoverflow.com/questions/395165/three-layered-web-application 3 Three Layered Web Application Eibx 2008-12-27T17:07:30Z 2009-03-12T14:11:49Z <p>Is it OK - best practise wise - to use the second layer to redirect the user?</p> <p>For example:</p> <pre><code>public static void ForceLogin() { HttpCookie cookie = HttpContext.Current.Request.Cookies[cookieName]; if (cookie != null) { if (Regex.IsMatch(cookie.Value, "^[0-9]+\\.[a-f0-9]+$")) { using (EibxDataContext db = new EibxDataContext()) { int count = db.Logins.Count(l =&gt; l.Password == cookie.Value); if (count == 1) { return; } } } } HttpContext.Current.Response.Redirect("~/Login.aspx"); } </code></pre> <p>At the last line, I use the Business/Service Logic Layer to redirect the user to the login page.</p> <p>Should this be done in the Presentation layer?</p> http://stackoverflow.com/questions/638727/charts-for-asp-net/638755#638755 1 Answer by Eibx for Charts for ASP.NET Eibx 2009-03-12T14:06:31Z 2009-03-12T14:06:31Z <p>I like <a href="http://zedgraph.org/wiki/index.php?title=Main%5FPage" rel="nofollow">ZedGraph</a> - Mainly because It's Free, and LGPL. </p> http://stackoverflow.com/questions/638706/best-practices-for-database-applications/638729#638729 1 Answer by Eibx for best practices for database applications Eibx 2009-03-12T14:00:54Z 2009-03-12T14:00:54Z <p>When building a Web Application you normally have 3 layers of logic.</p> <ol> <li>Presentation layer</li> <li>Business Logic Layer</li> <li>Data Access Layer</li> </ol> <p>The last layer does everything regarding managing the database. </p> <p>The Business Logic layer should never talk with the database directly, without using the Data Access Layer.</p> <p>That's my best advise</p> http://stackoverflow.com/questions/638599/should-i-keep-todo-lists-in-source-control/638703#638703 0 Answer by Eibx for Should I keep todo lists in source control? Eibx 2009-03-12T13:52:41Z 2009-03-12T13:52:41Z <p>I love <a href="http://basecamphq.com/" rel="nofollow" title="Basecamp HQ">Basecamp HQ</a></p> <p>You can control a lot of things from there regarding project management.</p> <p>I would recommend that site.</p> http://stackoverflow.com/questions/635719/how-to-read-all-shared-google-reader-feeds-by-code/638354#638354 2 Answer by Eibx for How to read all shared google reader feeds by code? Eibx 2009-03-12T12:13:48Z 2009-03-12T12:22:43Z <p>You can find a Atom feed for you feeds here: <a href="http://www.google.com/reader/atom/" rel="nofollow">http://www.google.com/reader/atom/</a></p> <p>You can find a more specific url, if you login into Google Reader and click the RSS button, in the top of your browser.</p> <p>Then you just need something to read your feeds. Here's a third party library for that purpose. <a href="http://atomnet.sourceforge.net/" rel="nofollow">http://atomnet.sourceforge.net/</a></p> <p>It's very simple to use</p> <pre><code>//Reads everything in the Atom document. AtomFeed feed = AtomFeed.Load(new Uri("http://www.yourfeed.com/atom.xml"); </code></pre> http://stackoverflow.com/questions/634311/how-to-change-aspx-automatic-formatting-settings-visual-studio/634641#634641 1 Answer by Eibx for How to change .ASPX automatic formatting settings (Visual Studio) Eibx 2009-03-11T14:03:34Z 2009-03-11T14:03:34Z <p>You're able to change the autoformatting in this menu: <br /><strong>Tools -> Options -> Text Editor</strong></p> <p>You can for example change the if statement's new line, under: <br /><strong>C#<br> - Formatting <br> -- New Lines<br> --- Place open brace on new line for control blocks</strong></p> <p>Hope this helps.</p> http://stackoverflow.com/questions/633474/c-do-you-use-var/633749#633749 0 Answer by Eibx for C# - Do you use "var"? Eibx 2009-03-11T08:37:50Z 2009-03-11T08:37:50Z <p>I'm a 2. </p> <p>I only use <strong>var</strong> when dealing with LINQ to SQL.</p> <p>Otherwise I don't really like making the compiler decide the type for my object.</p> http://stackoverflow.com/questions/630709/how-do-i-set-a-flash-object-to-open-a-url-in-a-new-window/630764#630764 0 Answer by Eibx for How do I set a flash object to open a url in a new window? Eibx 2009-03-10T15:23:00Z 2009-03-10T15:23:00Z <p>You need to do this in the flash with ActionScript</p> <pre><code>btnMovieClip.onRelease = function(){ getURL("http://www.yoururl.com"); }; </code></pre> <p>Make a MovieClip that fills the whole scene, and give it the name btnMovieClip. Put the above code in a frame in your timeline.</p> http://stackoverflow.com/questions/630575/how-to-retrieve-an-html-redirected-webpage-programmatically/630644#630644 0 Answer by Eibx for How to retrieve an html redirected webpage programmatically ? Eibx 2009-03-10T14:58:24Z 2009-03-10T14:58:24Z <p>You can't do it a easy way, since the meta tag is read by the client and executed. </p> <p>In this case, when you're using HttpWebRequest, the request doesn't care about the functions the text may have.</p> <p>So you need to do another request to the page in the URL attribute (bb.php).</p> <p>-</p> <p>If the server did the redirection you wouldn't have the problem.</p> http://stackoverflow.com/questions/618685/what-is-the-best-free-cms-for-my-needs/618767#618767 1 Answer by Eibx for What is the "best" free CMS for my needs? Eibx 2009-03-06T12:54:23Z 2009-03-06T12:54:23Z <p>I would go with <a href="http://joomla.org" rel="nofollow">Joomla</a> too, even though I'm a ASP.NET developer. Joomla is very flexible and customizable, so it fills all your need, because of the big community.</p> http://stackoverflow.com/questions/617948/fileuploads-and-rooted-directories/617994#617994 0 Answer by Eibx for FileUploads and rooted directories Eibx 2009-03-06T07:47:52Z 2009-03-06T07:47:52Z <p>Sometimes the MapPath is not directly accessible.</p> <p>In this case use</p> <pre><code>ctl.SaveAs(Server.MapPath("~/UserFiles/[username]/[filename]")); </code></pre> http://stackoverflow.com/questions/617982/c-how-can-i-elegantly-and-or-simplistically-make-cross-threaded-calls/617986#617986 0 Answer by Eibx for C#: How can i elegantly and or simplistically make cross threaded calls? Eibx 2009-03-06T07:45:31Z 2009-03-06T07:45:31Z <p>Using <strong>delegates</strong> and <strong>events</strong>.</p> <p>That would be my best answer.</p> <p><a href="http://www.codeproject.com/KB/cs/Cross_thread_Events.aspx" rel="nofollow">http://www.codeproject.com/KB/cs/Cross_thread_Events.aspx</a></p> http://stackoverflow.com/questions/605920/reasons-for-why-a-winforms-label-does-not-want-to-be-transparent/605981#605981 2 Answer by Eibx for Reasons for why a WinForms label does not want to be transparent? Eibx 2009-03-03T11:13:29Z 2009-03-03T11:13:29Z <p>If you want to focus on designing your windows application, I suggest you use WPF.</p> <p>Making controles transparent in WPF is very easy.</p> <pre><code>&lt;TextBox Width="200" Height="40" Opacity="0.5"/&gt; </code></pre> http://stackoverflow.com/questions/605634/would-c-be-a-good-language-to-learn-for-web-development/605670#605670 1 Answer by Eibx for Would C# be a good language to learn for Web Development? Eibx 2009-03-03T09:16:34Z 2009-03-03T09:16:34Z <p>I started with HTML and CSS, after that I choose PHP, because of the many tutorials and documentations.</p> <p>When I started at my current education I began to use C# and ASP.NET which blew my mind, and still does to day.</p> <p>The time you safe is beyond any other language that I've expirenced. So I would recommend C# and ASP.NET if you want to develop web applications.</p> http://stackoverflow.com/questions/1579370/creating-jquery-3-step-sign-up/1579389#1579389 Comment by Eibx on Creating jquery 3 step sign up Eibx 2009-10-16T17:45:11Z 2009-10-16T17:45:11Z Oh yeah, that might cause some problems. http://stackoverflow.com/questions/1392388/http-request-corruption/1466230#1466230 Comment by Eibx on HTTP Request Corruption Eibx 2009-09-23T20:51:50Z 2009-09-23T20:51:50Z I think this is most likely, specially if it's web proxies, which generally have to alter the page to replace the real URLs with some pointing to their service. http://stackoverflow.com/questions/657228/fingerprint-verification/657319#657319 Comment by Eibx on fingerprint verification Eibx 2009-03-19T08:10:00Z 2009-03-19T08:10:00Z Well if you need to see the code, I suggest you use this <a href="http://fvs.sourceforge.net/download.html" rel="nofollow">fvs.sourceforge.net/download.html</a> http://stackoverflow.com/questions/657492/restrict-user-input-using-javascript/657546#657546 Comment by Eibx on restrict user input using javascript Eibx 2009-03-18T11:22:35Z 2009-03-18T11:22:35Z No that's true, but it gives a certain idea on how it could be made. Fx. you would only be able to type 0 and 1 in the first charecter of the date string. If the user would type a number above that, the number wouldn't be registered. But yes this specific codes does not do the whole magic. http://stackoverflow.com/questions/657282/refresh-problem Comment by Eibx on Refresh Problem Eibx 2009-03-18T08:00:50Z 2009-03-18T08:00:50Z Sorry, but it's quite hard to understand what you're trying to solve. http://stackoverflow.com/questions/84556/whats-your-favorite-programmer-cartoon/84576#84576 Comment by Eibx on What's your favorite "programmer" cartoon? Eibx 2009-03-13T15:00:04Z 2009-03-13T15:00:04Z I didn't understand it, untill I used Ubuntu for two weeks. http://stackoverflow.com/questions/84556/whats-your-favorite-programmer-cartoon/84629#84629 Comment by Eibx on What's your favorite "programmer" cartoon? Eibx 2009-03-13T14:59:17Z 2009-03-13T14:59:17Z I love this one, but I must say the ending isn't that good. http://stackoverflow.com/questions/639035/making-the-perfect-programming-language/639042#639042 Comment by Eibx on Making the perfect programming language Eibx 2009-03-12T15:04:52Z 2009-03-12T15:04:52Z That could come in handy. http://stackoverflow.com/questions/638727/charts-for-asp-net/638740#638740 Comment by Eibx on Charts for ASP.NET Eibx 2009-03-12T14:27:23Z 2009-03-12T14:27:23Z That's better (: http://stackoverflow.com/questions/638727/charts-for-asp-net/638740#638740 Comment by Eibx on Charts for ASP.NET Eibx 2009-03-12T14:19:54Z 2009-03-12T14:19:54Z Could you find a smaller picture? http://stackoverflow.com/questions/638686/why-does-my-myofferpal-affiliate-script-apparently-not-work-in-some-way Comment by Eibx on Why does my Myofferpal affiliate script apparently not work in some way? Eibx 2009-03-12T13:55:20Z 2009-03-12T13:55:20Z We love to help, but we're not your personal code army. You could a at least tell the problem you're having. http://stackoverflow.com/questions/635922/how-do-i-create-a-detailed-error-page/635950#635950 Comment by Eibx on How do I create a detailed error page? Eibx 2009-03-12T12:50:14Z 2009-03-12T12:50:14Z I definitely thought, it were there. But I guess I were wrong. http://stackoverflow.com/questions/635719/how-to-read-all-shared-google-reader-feeds-by-code/638354#638354 Comment by Eibx on How to read all shared google reader feeds by code? Eibx 2009-03-12T12:22:58Z 2009-03-12T12:22:58Z Added now, forgot it. http://stackoverflow.com/questions/630709/how-do-i-set-a-flash-object-to-open-a-url-in-a-new-window/630764#630764 Comment by Eibx on How do I set a flash object to open a url in a new window? Eibx 2009-03-11T07:53:47Z 2009-03-11T07:53:47Z Oh. I see, but you're welcome. http://stackoverflow.com/questions/617982/c-how-can-i-elegantly-and-or-simplistically-make-cross-threaded-calls/617986#617986 Comment by Eibx on C#: How can i elegantly and or simplistically make cross threaded calls? Eibx 2009-03-06T07:51:30Z 2009-03-06T07:51:30Z I must admit I haven't worked a lot with the BackgroundWorker class, but I'll look in to that. Thank you.