User Eibx - Stack Overflowmost recent 30 from stackoverflow.com2009-11-27T20:09:46Zhttp://stackoverflow.com/feeds/user/46769http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1579370/creating-jquery-3-step-sign-up/1579389#15793891Answer by Eibx for Creating jquery 3 step sign upEibx2009-10-16T17:36:12Z2009-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#11884671Answer by Eibx for .NET or PHP, Corporate or Open-Source ?Eibx2009-07-27T14:25:36Z2009-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#6573192Answer by Eibx for fingerprint verificationEibx2009-03-18T08:08:02Z2009-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#6582431Answer by Eibx for How do I embed an MP3 into my blog?Eibx2009-03-18T13:27:02Z2009-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#6575465Answer by Eibx for restrict user input using javascriptEibx2009-03-18T09:30:03Z2009-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><html>
<body>
<script type="text/javascript">
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);
}
</script>
<form>
<input type="text" onkeydown="return noNumbers(event)" />
</form>
</body>
</html>
</code></pre>
http://stackoverflow.com/questions/642769/whats-your-favorite-way-of-testing-javascript-code-snippets/642828#6428283Answer by Eibx for What's your favorite way of testing javascript code snippets?Eibx2009-03-13T13:55:05Z2009-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-application3Three Layered Web ApplicationEibx2008-12-27T17:07:30Z2009-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 => 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#6387551Answer by Eibx for Charts for ASP.NETEibx2009-03-12T14:06:31Z2009-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#6387291Answer by Eibx for best practices for database applicationsEibx2009-03-12T14:00:54Z2009-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#6387030Answer by Eibx for Should I keep todo lists in source control?Eibx2009-03-12T13:52:41Z2009-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#6383542Answer by Eibx for How to read all shared google reader feeds by code?Eibx2009-03-12T12:13:48Z2009-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#6346411Answer by Eibx for How to change .ASPX automatic formatting settings (Visual Studio)Eibx2009-03-11T14:03:34Z2009-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#6337490Answer by Eibx for C# - Do you use "var"?Eibx2009-03-11T08:37:50Z2009-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#6307640Answer by Eibx for How do I set a flash object to open a url in a new window?Eibx2009-03-10T15:23:00Z2009-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#6306440Answer by Eibx for How to retrieve an html redirected webpage programmatically ?Eibx2009-03-10T14:58:24Z2009-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#6187671Answer by Eibx for What is the "best" free CMS for my needs?Eibx2009-03-06T12:54:23Z2009-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#6179940Answer by Eibx for FileUploads and rooted directoriesEibx2009-03-06T07:47:52Z2009-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#6179860Answer by Eibx for C#: How can i elegantly and or simplistically make cross threaded calls?Eibx2009-03-06T07:45:31Z2009-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#6059812Answer by Eibx for Reasons for why a WinForms label does not want to be transparent?Eibx2009-03-03T11:13:29Z2009-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><TextBox Width="200" Height="40" Opacity="0.5"/>
</code></pre>
http://stackoverflow.com/questions/605634/would-c-be-a-good-language-to-learn-for-web-development/605670#6056701Answer by Eibx for Would C# be a good language to learn for Web Development?Eibx2009-03-03T09:16:34Z2009-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#1579389Comment by Eibx on Creating jquery 3 step sign upEibx2009-10-16T17:45:11Z2009-10-16T17:45:11ZOh yeah, that might cause some problems.http://stackoverflow.com/questions/1392388/http-request-corruption/1466230#1466230Comment by Eibx on HTTP Request CorruptionEibx2009-09-23T20:51:50Z2009-09-23T20:51:50ZI 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#657319Comment by Eibx on fingerprint verificationEibx2009-03-19T08:10:00Z2009-03-19T08:10:00ZWell 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#657546Comment by Eibx on restrict user input using javascriptEibx2009-03-18T11:22:35Z2009-03-18T11:22:35ZNo 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-problemComment by Eibx on Refresh Problem Eibx2009-03-18T08:00:50Z2009-03-18T08:00:50ZSorry, but it's quite hard to understand what you're trying to solve.http://stackoverflow.com/questions/84556/whats-your-favorite-programmer-cartoon/84576#84576Comment by Eibx on What's your favorite "programmer" cartoon?Eibx2009-03-13T15:00:04Z2009-03-13T15:00:04ZI didn't understand it, untill I used Ubuntu for two weeks.http://stackoverflow.com/questions/84556/whats-your-favorite-programmer-cartoon/84629#84629Comment by Eibx on What's your favorite "programmer" cartoon?Eibx2009-03-13T14:59:17Z2009-03-13T14:59:17ZI love this one, but I must say the ending isn't that good.http://stackoverflow.com/questions/639035/making-the-perfect-programming-language/639042#639042Comment by Eibx on Making the perfect programming languageEibx2009-03-12T15:04:52Z2009-03-12T15:04:52ZThat could come in handy.http://stackoverflow.com/questions/638727/charts-for-asp-net/638740#638740Comment by Eibx on Charts for ASP.NETEibx2009-03-12T14:27:23Z2009-03-12T14:27:23ZThat's better (:http://stackoverflow.com/questions/638727/charts-for-asp-net/638740#638740Comment by Eibx on Charts for ASP.NETEibx2009-03-12T14:19:54Z2009-03-12T14:19:54ZCould you find a smaller picture?http://stackoverflow.com/questions/638686/why-does-my-myofferpal-affiliate-script-apparently-not-work-in-some-wayComment by Eibx on Why does my Myofferpal affiliate script apparently not work in some way?Eibx2009-03-12T13:55:20Z2009-03-12T13:55:20ZWe 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#635950Comment by Eibx on How do I create a detailed error page?Eibx2009-03-12T12:50:14Z2009-03-12T12:50:14ZI 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#638354Comment by Eibx on How to read all shared google reader feeds by code?Eibx2009-03-12T12:22:58Z2009-03-12T12:22:58ZAdded now, forgot it.http://stackoverflow.com/questions/630709/how-do-i-set-a-flash-object-to-open-a-url-in-a-new-window/630764#630764Comment by Eibx on How do I set a flash object to open a url in a new window?Eibx2009-03-11T07:53:47Z2009-03-11T07:53:47ZOh. I see, but you're welcome.http://stackoverflow.com/questions/617982/c-how-can-i-elegantly-and-or-simplistically-make-cross-threaded-calls/617986#617986Comment by Eibx on C#: How can i elegantly and or simplistically make cross threaded calls?Eibx2009-03-06T07:51:30Z2009-03-06T07:51:30ZI must admit I haven't worked a lot with the BackgroundWorker class, but I'll look in to that. Thank you.