User Espo - Stack Overflow most recent 30 from stackoverflow.com 2009-12-05T11:39:15Z http://stackoverflow.com/feeds/user/2257 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1782715/oracle-delete-user/1782724#1782724 7 Answer by Espo for Oracle delete user Espo 2009-11-23T12:01:51Z 2009-11-23T12:01:51Z <p>You have 2 options:</p> <ol> <li>Create 3 delete-statements</li> <li><a href="http://www.techonthenet.com/oracle/foreign%5Fkeys/foreign%5Fdelete.php" rel="nofollow">Create a cascading delete constraint</a></li> </ol> http://stackoverflow.com/questions/1706801/declare-variable-for-just-time/1706819#1706819 0 Answer by Espo for Declare variable for just time Espo 2009-11-10T10:01:10Z 2009-11-10T10:01:10Z <p>You could use a normal datetime-variable with todays date, starting at midnight.</p> http://stackoverflow.com/questions/1687990/log-in-sql-server-express-for-audit/1688033#1688033 0 Answer by Espo for Log in SQL Server Express for audit Espo 2009-11-06T14:42:38Z 2009-11-06T14:42:38Z <p>If you are using the express edition you do not have "SQL Server Profiler". But here is a free open source alternative:</p> <p><a href="http://code.google.com/p/sqlexpressprofiler/" rel="nofollow">http://code.google.com/p/sqlexpressprofiler/</a></p> http://stackoverflow.com/questions/1687718/iis-page-cannot-be-found-error/1687742#1687742 2 Answer by Espo for IIS Page cannot be found error Espo 2009-11-06T13:55:49Z 2009-11-06T14:05:53Z <p>To serve .zfo-files do this:</p> <ol> <li>Open the IIS Microsoft Management Console (MMC), right-click computer name, and then click Properties.</li> <li>Click MIME Types.</li> <li>Click New.</li> <li>In the Extension box, type <code>.zfo</code></li> <li>In the MIME Type box, type <code>application/octet-stream</code></li> <li>Apply the new settings</li> <li>Recycle application pool.</li> </ol> <p>If you want to serve all files regardless of the file name extension (for example, if you cannot predict all files that will be served), follow <a href="http://support.microsoft.com/kb/326965" rel="nofollow">these steps</a> to add a wildcard character mapping:</p> <p><strong>Note</strong> You should only add the wildcard mapping to the IIS MIME map as a temporary solution during troubleshooting. After you have determined that a missing MIME type is the cause of the issue, remove the wildcard mapping and add the specific mapping for the MIME type that you need to serve.</p> <ol> <li>Open the IIS Microsoft Management Console (MMC), right-click the local computer name, and then click Properties.</li> <li>Click MIME Types.</li> <li>Click New.</li> <li>In the Extension box, type an asterisk (*).</li> <li>In the MIME Type box, type application/octet-stream.</li> <li>Apply the new settings. Note that you must restart the World Wide Web Publishing Service or wait for the worker process to recycle for the changes to take effect.</li> </ol> <p><strong>Note</strong> In addition to making these changes at the global level in IIS, you can add necessary MIME types at lower levels in the metabase. When you do this, you can specify the sites or directories that are permitted to serve content with a specific file name extension instead of globally allowing all sites to serve that extension.</p> http://stackoverflow.com/questions/1687642/set-screen-title-from-shellscript/1687715#1687715 2 Answer by Espo for Set screen-title from shellscript Espo 2009-11-06T13:49:53Z 2009-11-06T13:49:53Z <p>From <a href="http://www.faqs.org/docs/Linux-mini/Xterm-Title.html#s3" rel="nofollow">http://www.faqs.org/docs/Linux-mini/Xterm-Title.html#s3</a></p> <blockquote> <p><strong>xterm escape sequences</strong></p> <p>Window and icon titles may be changed in a running xterm by using XTerm escape sequences. The following sequences are useful in this respect:</p> <ul> <li><code>ESC]0;stringBEL</code> -- Set icon name and window title to string</li> <li><code>ESC]1;stringBEL</code> -- Set icon name to string</li> <li><code>ESC]2;stringBEL</code> -- Set window title to string</li> </ul> <p>where ESC is the escape character (\033), and BEL is the bell character (\007).</p> <p>Printing one of these sequences within the xterm will cause the window or icon title to be changed.</p> <p>Note: these sequences apply to most xterm derivatives, such as nxterm, color-xterm and rxvt. Other terminal types often use different escapes; see the appendix for examples. For the full list of xterm escape sequences see the file ctlseq2.txt, which comes with the xterm distribution, or xterm.seq, which comes with the rxvt distribution.</p> <p><strong>Printing the escape sequences</strong></p> <p>For information that is constant throughout the lifetime of this shell, such as host and username, it will suffice to simply echo the escape string in the shell rc file:</p> <pre><code> echo -n "\033]0;${USER}@${HOST}\007" </code></pre> <p>should produce a title like username@hostname, assuming the shell variables $USER and $HOST are set correctly. The required options for echo may vary by shell (see examples below).</p> <p>For information that may change during the shell's lifetime, such as current working directory, these escapes really need to be applied every time the prompt changes. This way the string is updated with every command you issue and can keep track of information such as current working directory, username, hostname, etc. Some shells provide special functions for this purpose, some don't and we have to insert the title sequences directly into the prompt string. This is illustrated in the next section.</p> </blockquote> http://stackoverflow.com/questions/1276975/how-do-i-change-image-upload-path-dynamically-in-fckeditor 5 How do I change image upload path *dynamically* in FCKeditor Espo 2009-08-14T09:46:14Z 2009-10-30T04:50:35Z <p>I'm using the ASP.NET binary for my FCKeditor, and needs to insert two editors on the same page. The uploaded images/browsing needs to go to two different directories, how do I do this from code-behind?</p> <p>I know the path for uploaded files are set in the <code>config.ascx</code>-file with the <code>UserFilesPath</code> setting, but I can not find a way to override this value from my <code>aspx.cs</code> file.</p> <p>Also, I found (conflicting) documentation stating that <code>Session["FCKeditor:UserFilesPath"]</code> could be set, but I dont like putting usercontrol-specific information in a global session variable.</p> http://stackoverflow.com/questions/1635528/securityexception-request-for-the-permission-of-type-aspnethostingpermission-fai/1635536#1635536 0 Answer by Espo for SecurityException: Request for the permission of type AspNetHostingPermission failed Espo 2009-10-28T06:47:14Z 2009-10-28T06:47:14Z <p>Are you using a virtual directory that points to a remote share?<br /> <a href="http://support.microsoft.com/?id=320268" rel="nofollow">http://support.microsoft.com/?id=320268</a></p> <p>Also take a look at "Troubleshooting common permissions and security-related issues in ASP.NET"<br /> <a href="http://support.microsoft.com/?id=910449" rel="nofollow">http://support.microsoft.com/?id=910449</a></p> http://stackoverflow.com/questions/1633470/ups-integration-and-getting-track-number/1633485#1633485 0 Answer by Espo for Ups Integration and getting Track number Espo 2009-10-27T20:33:31Z 2009-10-27T20:33:31Z <p>You will find the UPS <a href="http://www.ups.com/content/us/en/tracking/tools/index.html" rel="nofollow">Integrate Tracking Tools</a> on their homepage. You can find a sample that integrates with the UPS service at <a href="http://www.codeproject.com/KB/aspnet/Benz%5FCPE.aspx" rel="nofollow">CodeProject</a></p> http://stackoverflow.com/questions/1623545/block-specific-user-agent-in-iis-6-0 0 Block specific User-Agent in IIS 6.0 Espo 2009-10-26T07:51:44Z 2009-10-26T07:59:22Z <p>Is it possible to block a specific User-Agent in IIS 6.0 without installing urlscan on the server?</p> http://stackoverflow.com/questions/1614003/restricting-an-ip-if-it-is-between-an-ip-range/1614033#1614033 3 Answer by Espo for Restricting an IP if it is between an IP Range. Espo 2009-10-23T14:58:08Z 2009-10-23T15:03:12Z <p>Convert Each IP-address <a href="http://techtaxi.blogspot.com/1990/01/c-function-to-convert-ip-address-to-ip.html" rel="nofollow">to number</a>, and then check if the user ip address is between those numbers.</p> <pre><code>public double Dot2LongIP(string DottedIP) { int i; string [] arrDec; double num = 0; if (DottedIP == "") { return 0; } else { arrDec = DottedIP.Split('.'); for(i = arrDec.Length - 1; i &gt;= 0 ; i --) { num += ((int.Parse(arrDec[i])%256) * Math.Pow(256 ,(3 - i ))); } return num; } } </code></pre> http://stackoverflow.com/questions/1613929/preferred-approach-for-producing-ranked-sql-results/1613971#1613971 0 Answer by Espo for Preferred approach for producing ranked SQL results? Espo 2009-10-23T14:50:03Z 2009-10-23T14:50:03Z <p>Here is a quick sql-solution that matches you question. After creating this function you can<br /> <code>ORDER BY dbo.func_getWeightByColumn(@firstname, firstname, @lastname, lastname, @zipcode, zipcode) DESC</code></p> <pre><code>CREATE FUNCTION [dbo].[func_getWeightByColumn] ( @p1a varchar(50), @p1b varchar(50), @p2a varchar(50) = 'a', @p2b varchar(50) = 'b', @p3a varchar(50) = 'a', @p3b varchar(50) = 'b', ) RETURNS int AS BEGIN DECLARE @Result int SET @Result = 0 IF @p1a = @p1b BEGIN SET @Result = @Result + 1 END IF @p2a = @p2b BEGIN SET @Result = @Result + 1 END IF @p3a = @p3b BEGIN SET @Result = @Result + 1 END RETURN @Result END; </code></pre> http://stackoverflow.com/questions/1613786/jquery-tablesorter-js-sorting-mixed-type-columns/1613894#1613894 0 Answer by Espo for jquery.tablesorter.js > sorting mixed-type columns Espo 2009-10-23T14:36:38Z 2009-10-23T14:36:38Z <p>You need to create your own parser</p> <p>I am not sure this will work, but try searching for tablesorter and addParser and you should be good:</p> <pre><code>jQuery.tablesorter.addParser({ id: "SpecialNumber", is: function(s) { return /^TBD/.test(s); }, format: function(s) { return 0; }, type: "numeric" }); </code></pre> http://stackoverflow.com/questions/1613802/jquery-canceling-a-delayed-settimeout-event-if-something-happend/1613819#1613819 0 Answer by Espo for jquery Canceling a delayed (setTimeout) event if something happend Espo 2009-10-23T14:23:38Z 2009-10-23T14:23:38Z <p>This article covers many methods on fading/animating on hover:</p> <p><a href="http://greg-j.com/2008/07/21/hover-fading-transition-with-jquery/" rel="nofollow">http://greg-j.com/2008/07/21/hover-fading-transition-with-jquery/</a></p> <p>Also see the samples for how it looks:</p> <p><a href="http://greg-j.com/static-content/hover-fade-redux.html" rel="nofollow">http://greg-j.com/static-content/hover-fade-redux.html</a></p> <p>Also there is a similar question <a href="http://stackoverflow.com/questions/1089246/jquery-how-to-tell-hover-to-wait/1089258#1089258">here</a>, with this solution:</p> <pre><code>$('.icon').hover(function() { clearTimeout($(this).data('timeout')); $('li.icon &gt; ul').slideDown('fast'); }, function() { var t = setTimeout(function() { $('li.icon &gt; ul').slideUp('fast'); }, 2000); $(this).data('timeout', t); }); </code></pre> http://stackoverflow.com/questions/1613666/creating-and-appending-text-to-txt-file-in-vb-net/1613685#1613685 1 Answer by Espo for Creating and appending text to txt file in vb.net Espo 2009-10-23T14:03:31Z 2009-10-23T14:17:39Z <p>This should work for you without changing program logic (by not outputting "Start error" on the top of each file) like the other answers do :) Remember to add exception handling code.</p> <pre><code>Dim filePath As String = String.Format("C:\ErrorLog_{0}.txt", DateTime.Today.ToString("dd-MMM-yyyy")) Dim fileExists As Boolean = File.Exists(filePath) Using writer As New StreamWriter(filePath, True) If Not fileExists Then writer.WriteLine("Start Error Log for today") End If writer.WriteLine("Error Message in Occured at-- " &amp; DateTime.Now) End Using </code></pre> http://stackoverflow.com/questions/1606212/why-there-is-no-official-javascript-reference/1606220#1606220 6 Answer by Espo for Why there is no OFFICIAL JavaScript reference? Espo 2009-10-22T10:03:56Z 2009-10-22T10:03:56Z <p>I would say this one is the "official":</p> <p><a href="https://developer.mozilla.org/en/JavaScript" rel="nofollow">https://developer.mozilla.org/en/JavaScript</a></p> <p>You also have the <a href="http://www.ecma-international.org/publications/files/ECMA-ST/ECMA-262.pdf" rel="nofollow">ECMAScript Language Specification</a></p> http://stackoverflow.com/questions/1606175/how-do-i-extract-image-from-a-pdf-file-using-php/1606194#1606194 0 Answer by Espo for How do I extract image from a pdf file using php Espo 2009-10-22T09:59:22Z 2009-10-22T09:59:22Z <p>Take a look at <a href="http://linuxcommand.org/man%5Fpages/pdfimages1.html" rel="nofollow">pdfimages</a>. Here is the description from the page:</p> <blockquote> <p>Pdfimages saves images from a Portable Document Format (PDF) file as Portable Pixmap (PPM), Portable Bitmap (PBM), or JPEG files.</p> <p>Pdfimages reads the PDF file, scans one or more pages, PDF-file, and writes one PPM, PBM, or JPEG file for each image, image-root-nnn.xxx, where nnn is the image number and xxx is the image type (.ppm, .pbm, .jpg).</p> <p>NB: pdfimages extracts the raw image data from the PDF file, without performing any additional transforms. Any rotation, clipping, color inversion, etc. done by the PDF content stream is ignored.</p> </blockquote> http://stackoverflow.com/questions/1603054/how-can-i-convert-a-string-into-a-regular-expression-that-matches-itself-in-perl/1603085#1603085 3 Answer by Espo for How can I convert a string into a regular expression that matches itself in Perl? Espo 2009-10-21T19:32:41Z 2009-10-21T19:32:41Z <p>From <a href="http://www.regular-expressions.info/characters.html" rel="nofollow">http://www.regular-expressions.info/characters.html</a> :</p> <p>there are 11 characters with special meanings: the opening square bracket <code>[</code>, the backslash <code>\</code>, the caret <code>^</code>, the dollar sign <code>$</code>, the period or dot <code>.</code>, the vertical bar or pipe symbol <code>|</code>, the question mark <code>?</code>, the asterisk or star <code>*</code>, the plus sign <code>+</code>, the opening round bracket <code>(</code> and the closing round bracket <code>)</code></p> <p>In Perl (and PHP) there is a special function <a href="http://perldoc.perl.org/functions/quotemeta.html" rel="nofollow">quotemeta</a> that will escape all these for you.</p> http://stackoverflow.com/questions/1602880/should-i-allow-a-2-char-password/1602916#1602916 1 Answer by Espo for Should I allow a 2-char password? Espo 2009-10-21T19:02:22Z 2009-10-21T19:02:22Z <p>The people making the rainbow table will probably start with all 1-char length passwords and will then find the short passwords very quickly.</p> <p>Regarding maximum length you should have none.</p> http://stackoverflow.com/questions/1602707/force-a-logged-in-user-to-re-login-by-invalidating-his-session/1602725#1602725 3 Answer by Espo for Force a logged in user to re-login by invalidating his session Espo 2009-10-21T18:34:53Z 2009-10-21T18:48:24Z <p>You can not change a session variable from another session.</p> <p>One way to solve your problem is to store a list of logged in users in the Application-object, and then change the value in that variable. For this to work you must check at the top of each page that this user is in the list of logged in users.</p> <p>As <a href="http://stackoverflow.com/users/52502/cagdas">çağdaş</a> commented on this answer, performance would probably be better if you store a list of users you want to log out in your application-variable. Then on the top of your page do something like this (pseudo, this actuall code snippet will not work)</p> <pre><code>if(Application["SuspendedUsers"].Contains(Session["UserID"]) { Session["IsSignedIn"] = false; Application["SuspendedUsers"].Remove(Session["UserID"]); } </code></pre> http://stackoverflow.com/questions/1602586/on-which-operating-systems-or-browsers-are-css-font-family-names-case-sensitive/1602624#1602624 1 Answer by Espo for On which operating systems or browsers are CSS font-family names case-sensitive Espo 2009-10-21T18:17:57Z 2009-10-21T18:17:57Z <p>This guy seems to have problems when using flex, so there seems to be some truth to this:</p> <blockquote> <p>When using CSS in Flex to style components, the font-family property can be case sensitive on some operating systems. For example, the following CSS will not work on my Safari browser with Flash Player 10:</p> <pre><code>.content{font-family: arial;} </code></pre> <p>but this will work:</p> <pre><code>.content{font-family: Arial;} </code></pre> </blockquote> <p><a href="http://symmetri.blogsome.com/2009/10/01/flex-css-property-font-family-is-case-sensitive-2/" rel="nofollow">Source</a></p> <p>Also take a look at this page that you can use to check this in your own browsers/os:</p> <p><a href="http://meyerweb.com/eric/css/tests/font-name-case-test.html" rel="nofollow">http://meyerweb.com/eric/css/tests/font-name-case-test.html</a></p> http://stackoverflow.com/questions/1594306/how-to-do-operator-overloading/1594318#1594318 1 Answer by Espo for How to do operator overloading Espo 2009-10-20T12:39:24Z 2009-10-20T12:55:18Z <p>From <a href="http://www.parashift.com/c++-faq-lite/operator-overloading.html#faq-13.1" rel="nofollow">http://www.parashift.com/c++-faq-lite/operator-overloading.html#faq-13.1</a></p> <blockquote> <p>The idea is to call functions using the syntax of C++ operators. Such functions can be defined to accept parameters of user-defined types, giving the operators user-defined meaning. For example:</p> <pre><code>Matrix add(const Matrix&amp; x, const Matrix&amp; y); Matrix operator+(const Matrix&amp; x, const Matrix&amp; y); Matrix use_add(const Matrix&amp; a, const Matrix&amp; b, const Matrix&amp; c) { return add(a,add(b,c)); } Matrix use_plus(const Matrix&amp; a, const Matrix&amp; b, const Matrix&amp; c) { return a + b + c; } </code></pre> </blockquote> <p>Also, <a href="http://www.daniweb.com/forums/thread230114.html" rel="nofollow">this</a> forum thread from lansinwd discusses this in detail</p> http://stackoverflow.com/questions/1594359/mailer-utlity-in-java/1594378#1594378 1 Answer by Espo for Mailer utlity in java Espo 2009-10-20T12:49:38Z 2009-10-20T12:49:38Z <p>Change your from-address to <code>noreply@example.com</code> (replace example.com with your domain). Also remember to create that address in your mail-server software to make sure email to that mailbox will be discarded.</p> http://stackoverflow.com/questions/1589078/is-there-a-service-way-to-calculate-page-drop-off-rate/1589127#1589127 0 Answer by Espo for Is there a service/way to calculate page drop off rate? Espo 2009-10-19T14:50:37Z 2009-10-19T14:50:37Z <p>Depending on the technology you use, you can log this in the server-side. Using ASP.NET you could use the <a href="http://msdn.microsoft.com/en-us/library/system.web.httpresponse.isclientconnected.aspx" rel="nofollow">HttpResponse.IsClientConnected Property</a> at the bottom of your page and then log to your database if it's false.</p> <p>Another alternative would be to log all requests to your page with a column (loaded) with an initial value of "0". Then, when a 1x1 image on the page is loaded, update the request-record to "1".</p> http://stackoverflow.com/questions/1588521/how-to-limit-the-size-of-an-html-textarea-with-javascript/1588529#1588529 2 Answer by Espo for How to limit the size of an HTML textarea with JavaScript? Espo 2009-10-19T12:53:26Z 2009-10-19T12:53:26Z <p>Take a look at this page:</p> <p><a href="http://www.ajaxray.com/blog/2007/11/09/interactive-character-limit-for-textarea-using-jquery/" rel="nofollow">Interactive character limit for textarea using Jquery</a></p> <pre><code> &lt;script language="javascript"&gt; function limitChars(textid, limit, infodiv) { var text = $('#'+textid).val(); var textlength = text.length; if(textlength &gt; limit) { $('#' + infodiv).html('You cannot write more then '+limit+' characters!'); $('#'+textid).val(text.substr(0,limit)); return false; } else { $('#' + infodiv).html('You have '+ (limit - textlength) +' characters left.'); return true; } } &lt;/script&gt; </code></pre> <p>Then bind the function to the keyup event of your textarea. Do this in jQuery’s ready event of document like this:</p> <pre><code>$(function(){ $('#comment').keyup(function() { limitChars('comment', 20, 'charlimitinfo'); }) }); </code></pre> http://stackoverflow.com/questions/1588382/need-some-help-with-string-format/1588422#1588422 3 Answer by Espo for Need some help with String.format Espo 2009-10-19T12:30:48Z 2009-10-19T12:30:48Z <p>The format to pass to string.format is documented here:</p> <p><a href="http://java.sun.com/j2se/1.5.0/docs/api/java/util/Formatter.html#syntax" rel="nofollow">http://java.sun.com/j2se/1.5.0/docs/api/java/util/Formatter.html#syntax</a></p> <p>From the page:</p> <blockquote> <p>The format specifiers for general, character, and numeric types have the following syntax:</p> <pre><code> %[argument_index$][flags][width][.precision]conversion </code></pre> <p>The optional argument_index is a decimal integer indicating the position of the argument in the argument list. The first argument is referenced by "1$", the second by "2$", etc.</p> <p>The optional flags is a set of characters that modify the output format. The set of valid flags depends on the conversion.</p> <p>The optional width is a non-negative decimal integer indicating the minimum number of characters to be written to the output.</p> <p>The optional precision is a non-negative decimal integer usually used to restrict the number of characters. The specific behavior depends on the conversion.</p> <p>The required conversion is a character indicating how the argument should be formatted. The set of valid conversions for a given argument depends on the argument's data type.</p> </blockquote> http://stackoverflow.com/questions/1588273/php-timestamp-problem/1588304#1588304 2 Answer by Espo for php timestamp problem Espo 2009-10-19T12:04:19Z 2009-10-19T12:04:19Z <p>As long as your dates are between the years 1901-2038 the PHP native <code>date</code> functions should work OK. Timestamps should not be used for birth dates. If you need to use dates outside if this range, take a look at the <a href="http://phplens.com/phpeverywhere/adodb%5Fdate%5Flibrary" rel="nofollow">ADOdb Date Time Library</a>.</p> http://stackoverflow.com/questions/1587525/naming-database-tables-and-views/1587551#1587551 0 Answer by Espo for Naming Database Tables and Views Espo 2009-10-19T08:33:49Z 2009-10-19T08:33:49Z <p>From <a href="http://vyaskn.tripod.com/object%5Fnaming.htm" rel="nofollow">http://vyaskn.tripod.com/object%5Fnaming.htm</a> :</p> <p>There exist so many different naming conventions for database objects, none of them is wrong. It's more of a personal preference of the person who designed the naming convention. However, in an organization, one person (or a group) defines the database naming conventions, standardizes it and others will follow it whether they like it or not.</p> <p>Read the <a href="http://vyaskn.tripod.com/object%5Fnaming.htm" rel="nofollow">full article</a> for details on how to implement/create it in your organisation.</p> http://stackoverflow.com/questions/1587122/compatibility-between-browsers-in-aspnet/1587128#1587128 1 Answer by Espo for Compatibility between Browsers in ASPNET Espo 2009-10-19T05:43:40Z 2009-10-19T08:07:13Z <p><a href="http://ckeditor.com/" rel="nofollow">CKEditor</a> is supported by most browsers. I've also used CKEditor in Chrome.</p> <p>From <a href="http://docs.cksource.com/FCKeditor%5F3.x/Design%5Fand%5FArchitecture/Browsers%5FCompatibility" rel="nofollow">FCKeditor_3.x/Design_and_Architecture/Browsers_Compatibility</a>:</p> <p>Officially, we'll be declaring support for the following browsers: </p> <ul> <li>Internet Explorer 6+</li> <li>Firefox 2+</li> <li>Safari 3+</li> <li>Opera 9.5+ </li> </ul> <p>The editor can be downloaded from <a href="http://ckeditor.com/download" rel="nofollow">http://ckeditor.com/download</a> . After you download the file you will find a "samples"-folder to get you started.</p> http://stackoverflow.com/questions/1585918/jquery-live-works-but-not-with-datepicker/1585929#1585929 3 Answer by Espo for Jquery .live works but not with .datepicker Espo 2009-10-18T20:20:10Z 2009-10-18T20:20:10Z <p>Here is an article about the datepicker using the .live-event in jQuery:</p> <p><a href="http://www.vancelucas.com/blog/jquery-ui-datepicker-with-ajax-and-livequery/" rel="nofollow">http://www.vancelucas.com/blog/jquery-ui-datepicker-with-ajax-and-livequery/</a></p> <p>The problem is that the Datepicker works by binding to the focus() event by default, but as of jQuery 1.3.2, the ‘focus’ event cannot be monitored by the ‘live’ event function.</p> <p>Here is the work-around from the site::</p> <pre><code>&lt;script type="text/javascript"&gt; $(function(){ $('input.calendarSelectDate').live('click', function() { $(this).datepicker({showOn:'focus'}).focus(); }); }); &lt;/script&gt; </code></pre> http://stackoverflow.com/questions/1585887/css-overflow-inline-elements/1585895#1585895 1 Answer by Espo for css overflow / inline elements Espo 2009-10-18T20:06:19Z 2009-10-18T20:06:19Z <p>There are many methods that can be used to making a horizontal list. The main ingredient is "display: inline", applied to the "LI" element. </p> <p>Read this article for details:</p> <p><a href="http://css.maxdesign.com.au/listutorial/horizontal%5Fmaster.htm" rel="nofollow">http://css.maxdesign.com.au/listutorial/horizontal%5Fmaster.htm</a></p> http://stackoverflow.com/questions/1687718/iis-page-cannot-be-found-error/1687742#1687742 Comment by Espo on IIS Page cannot be found error Espo 2009-11-06T14:06:08Z 2009-11-06T14:06:08Z I Updated my answer to include the wildcard mapping http://stackoverflow.com/questions/1635528/securityexception-request-for-the-permission-of-type-aspnethostingpermission-fai/1635536#1635536 Comment by Espo on SecurityException: Request for the permission of type AspNetHostingPermission failed Espo 2009-10-28T06:55:49Z 2009-10-28T06:55:49Z That link refers to IIS, but I think Casini has the same restrictions. Have you tried to grant the FullTrust right to the remote share? http://stackoverflow.com/questions/1623545/block-specific-user-agent-in-iis-6-0 Comment by Espo on Block specific User-Agent in IIS 6.0 Espo 2009-10-27T06:46:39Z 2009-10-27T06:46:39Z Not specifically. Just wondered if it would be possible without installing anything on the server. http://stackoverflow.com/questions/1623545/block-specific-user-agent-in-iis-6-0/1623570#1623570 Comment by Espo on Block specific User-Agent in IIS 6.0 Espo 2009-10-26T08:08:54Z 2009-10-26T08:08:54Z It's not a robot, it is a spam-harvester. I don't think they obey the robots.txt file :) http://stackoverflow.com/questions/1602880/should-i-allow-a-2-char-password/1602914#1602914 Comment by Espo on Should I allow a 2-char password? Espo 2009-10-21T19:03:52Z 2009-10-21T19:03:52Z I disagree. I have used much longer passwords on sites that allow that by creating pass-phrases (sentences) and not passwords. http://stackoverflow.com/questions/1602707/force-a-logged-in-user-to-re-login-by-invalidating-his-session/1602725#1602725 Comment by Espo on Force a logged in user to re-login by invalidating his session Espo 2009-10-21T18:51:14Z 2009-10-21T18:51:14Z @ztech My code goes in addition to the existing code that checks the session-variable, not instead of. That way Bob will not have access because his session[&quot;isLoggedIn&quot;] is false. http://stackoverflow.com/questions/1588543/retrieve-date-time-of-an-http-request Comment by Espo on Retrieve date/time of an http request Espo 2009-10-19T13:00:38Z 2009-10-19T13:00:38Z The current request was probably issued at DateDate.Now? Or am i missing somehing? http://stackoverflow.com/questions/1588325/asp-net-filename-encoding-while-sending-file/1588340#1588340 Comment by Espo on ASP.NET Filename encoding while sending file Espo 2009-10-19T12:18:56Z 2009-10-19T12:18:56Z Try without the UrlEncode and just add quotes around the filename. See Anthony's answer for details on how. http://stackoverflow.com/questions/1587122/compatibility-between-browsers-in-aspnet/1587128#1587128 Comment by Espo on Compatibility between Browsers in ASPNET Espo 2009-10-19T08:07:53Z 2009-10-19T08:07:53Z I've added a link to the download in my answer that includes the sample code. http://stackoverflow.com/questions/1459208/is-it-possible-to-change-web-config-without-ending-all-user-sessions/1460036#1460036 Comment by Espo on Is it possible to change web.config without ending all user sessions? Espo 2009-09-23T12:40:07Z 2009-09-23T12:40:07Z This works well and I don't have to change my application to use something other than InProc. http://stackoverflow.com/questions/1454039/how-do-i-track-the-click-on-a-button-with-an-external-postbackurl/1454067#1454067 Comment by Espo on How do I track the click on a button with an external PostBackUrl? Espo 2009-09-21T11:49:18Z 2009-09-21T11:49:18Z I need the browser to submit/post the data (not the server), can I do that without having to have the user click the submit-button again? http://stackoverflow.com/questions/1367184/change-monitor-screen-position/1367193#1367193 Comment by Espo on Change monitor/screen position Espo 2009-09-02T11:43:51Z 2009-09-02T11:43:51Z Thanks, this looks like the thing i'm looking for: <a href="http://www.codeproject.com/KB/dotnet/Display_Settings.aspx" rel="nofollow">codeproject.com/KB/dotnet/&hellip;</a> http://stackoverflow.com/questions/1340515/create-a-virtual-folder-from-asp-net/1356564#1356564 Comment by Espo on Create a virtual folder from ASP.NET Espo 2009-08-31T09:16:14Z 2009-08-31T09:16:14Z -1 For using other peoples code without attribution. Original code here: <a href="http://www.codeproject.com/KB/cs/virtualdir.aspx" rel="nofollow">codeproject.com/KB/cs/virtualdir.aspx</a> http://stackoverflow.com/questions/1340515/create-a-virtual-folder-from-asp-net/1340743#1340743 Comment by Espo on Create a virtual folder from ASP.NET Espo 2009-08-27T13:03:41Z 2009-08-27T13:03:41Z My question is how do I do this from code, not how to do it in IIS manager. http://stackoverflow.com/questions/1332510/how-to-change-from-address-when-using-gmail-smtp-server/1332856#1332856 Comment by Espo on How to change from-address when using gmail smtp server Espo 2009-08-26T08:09:16Z 2009-08-26T08:09:16Z What ISP do you use? I have never heard of one that charges you to use their SMTP server?