User Tracker1 - Stack Overflow most recent 30 from stackoverflow.com 2009-12-11T15:24:43Z http://stackoverflow.com/feeds/user/43906 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1168222/hiding-showing-a-swf-in-a-div/1168480#1168480 1 Answer by Tracker1 for Hiding/Showing a swf in a div? Tracker1 2009-07-22T21:47:23Z 2009-07-22T21:47:23Z <p>I usually just force the height/width of the container to 1 by 1 px...</p> <pre><code>&lt;div style="height:1px; width:1px;" &gt;... flash goes here ...&lt;div&gt; </code></pre> <p>Then, when I need the flash, I will re-set the height/width as appropriate. Note, you may want to put this into a parent container if you want to just reset the hw to "100%" which will bind to a parent div, with a "position:relative; height:?px; width:?px" setting.</p> http://stackoverflow.com/questions/1067318/regarding-cell-click-in-datagrid/1067485#1067485 0 Answer by Tracker1 for Regarding cell click in datagrid Tracker1 2009-07-01T05:57:10Z 2009-07-01T05:57:10Z <p>First: "javascript:" is invalid javascript, it is a protocol directive, if you were assigning an href attribute to an A tag, this would be appropriate.</p> <p>Second: try "onclick" instead of "OnClick" </p> <p>Third: You can probably handle this data binding in your row template tag...</p> <pre><code>&lt;asp:Button ... OnClientClick="PassBack('&lt;%#Eval(...)%&gt;','&lt;%#Eval(...)%&gt;'); return false;" .../&gt; </code></pre> <p>Fourth you should probably have a " return false;" after your PassBack call, to prevent the default handler from triggering.</p> http://stackoverflow.com/questions/1053697/jquery-not-working-with-html-actionlink/1060985#1060985 0 Answer by Tracker1 for jQuery not working with Html.ActionLink? Tracker1 2009-06-29T22:57:36Z 2009-06-29T22:57:36Z <p>Just made a blog post with a few HtmlHelper extension methods for dealing with adding libraries. <a href="http://frugalcoder.us/post/2009/06/29/Handling-Scripts-in-ASPNet-MVC.aspx" rel="nofollow">Frugal Code blog - Handling Scripts in ASP.Net MVC</a></p> http://stackoverflow.com/questions/1024202/better-practice-how-do-you-put-json-result-in-asp-net-mvc-framework/1024230#1024230 0 Answer by Tracker1 for (Better practice) How do you put JSON result in ASP.net MVC Framework? Tracker1 2009-06-21T16:13:12Z 2009-06-21T16:13:12Z <p>I usually set my results for JsonResults in the controller itself. I feel it's up to the Model/DAL/BLL to give me the data/ienumerable filtered as requested, but the controller/view frob &amp; return it. In the case if a JsonResult, the framework handles the view/encoding piece. I would reserve views for formatted textual (html mainly) output. Use the built in handler/result for JSON and File/Image responses. XML output can reall go either way imo.</p> http://stackoverflow.com/questions/1024114/location-of-ini-config-files-in-linux-unix/1024216#1024216 3 Answer by Tracker1 for Location of ini/config files in linux/unix? Tracker1 2009-06-21T16:03:50Z 2009-06-21T16:03:50Z <p>User specific configuration is usually in...</p> <p><em>~/.yourapp</em> file for a single file</p> <p><em>~/.yourapp/</em> for multiple files + data usually in <em>~/.yourapp/config</em></p> <p>Global configurations are generally in <em>/etc/appname</em> file or <em>/etc/appname/</em> directory.</p> <p>Global App data: <em>/var/lib/yourapp/</em></p> <p>Cache data: <em>/var/cache/</em></p> <p>Log data: <em>/var/log/yourapp/</em></p> <p>Some additional info from <a href="http://www.tutorialhelpdesk.com/tutorials/tech-talk/linux/the-linux-directory-structure-explained.html" rel="nofollow">tutorialhelpdesk.com</a></p> <p><hr /></p> <p>The directory structure of Linux/other Unix-like systems and directory details.</p> <p>In Windows, almost all programs install their files (all files) in the directory named: 'Program Files' Such is not the case in Linux. The directory system categorises all installed files. All configuration files are in /etc, all binary files are in /bin or /usr/bin or /usr/local/bin. Here is the entire directory structure along with what they contain:</p> <p>/ - Root directory that forms the base of the file system. All files and directories are logically contained inside the root directory regardless of their physical locations.</p> <p>/bin - Contains the executable programs that are part of the Linux operating system. Many Linux commands, such as cat, cp, ls, more, and tar, are locate in /bin</p> <p>/boot - Contains the Linux kernel and other files needed by LILO and GRUB boot managers.</p> <p>/dev - Contains all device files. Linux treats each device as a special file. All such files are located in /dev.</p> <p>/etc - Contains most system configuration files and the initialisation scripts in /etc/rc.d subdirectory.</p> <p>/home - Home directory is the parent to the home directories of users.</p> <p>/lib - Contains library files, including loadable driver modules needed to boot the system.</p> <p>/lost+found - Directory for lost files. Every disk partition has a lost+found directory.</p> <p>/media - Directory for mounting files systems on removable media like CD-ROM drives, floppy disks, and Zip drives.</p> <p>/mnt - A directory for temporarily mounted filesystems.</p> <p>/opt - Optional software packages copy/install files here.</p> <p>/proc - A special directory in a virtual filesystem. It contains the information about various aspects of a Linux system.</p> <p>/root - Home directory of the root user.</p> <p>/sbin - Contains administrative binary files. Commands such as mount, shutdown, umount, reside here.</p> <p>/srv - Contains data for services (HTTP, FTP, etc.) offered by the system.</p> <p>/sys - A special directory that contains information about the devices, as seen by the Linux kernel.</p> <p>/tmp - Temporary directory which can be used as a scratch directory (storage for temporary files). The contents of this directory are cleared each time the system boots.</p> <p>/usr - Contains subdirectories for many programs such as the X Window System.</p> <p>/usr/bin - Contains executable files for many Linux commands. It is not part of the core Linux operating system.</p> <p>/usr/include - Contains header files for C and C++ programming languages</p> <p>/usr/lib - Contains libraries for C and C++ programming languages.</p> <p>/usr/local - Contains local files. It has a similar directories as /usr contains.</p> <p>/usr/sbin - Contains administrative commands.</p> <p>/usr/share - Contains files that are shared, like, default configuration files, images, documentation, etc.</p> <p>/usr/src - Contains the source code for the Linux kernel.</p> <p>/var - Contains various system files such as log, mail directories, print spool, etc. which tend to change in numbers and size over time.</p> <p>/var/cache - Storage area for cached data for applications.</p> <p>/var/lib - Contains information relating to the current state of applications. Programs modify this when they run.</p> <p>/var/lock - Contains lock files which are checked by applications so that a resource can be used by one application only.</p> <p>/var/log - Contains log files for different applications.</p> <p>/var/mail - Contains users' emails.</p> <p>/var/opt - Contains variable data for packages stored in /opt directory.</p> <p>/var/run - Contains data describing the system since it was booted.</p> <p>/var/spool - Contains data that is waiting for some kind of processing.</p> <p>/var/tmp - Contains temporary files preserved between system reboots.</p> http://stackoverflow.com/questions/1024070/c-eval-support/1024122#1024122 0 Answer by Tracker1 for C# Eval() support Tracker1 2009-06-21T15:11:06Z 2009-06-21T15:17:21Z <p>Here's something similar I'm using to find dynamically nested properties.. you'd need to addthe logic for indexers... and some extra checking... i'm catching nulls/errors in my calling method...</p> <pre> public static object FindDottedProperty(this object input, string propertyName) { if (input == null) return null; if (string.IsNullOrEmpty(propertyName)) return null; Queue props = new Queue(propertyName.Split('.')); if (props.Count == 0) return null; //start with input object and roll out property stack from there. object ret = input; while (props.Count > 0) { var prop = props.Dequeue(); if (string.IsNullOrEmpty(prop)) return null; /*** ADD INDEXER LOGIC HERE ***/ //get the property's value based on the current named item ret = ret.GetType().GetProperty(prop).GetValue(ret, null); if (null.Equals(ret)) return null; } //return looked up value return ret; } </pre> http://stackoverflow.com/questions/902637/formating-data-in-php/902648#902648 1 Answer by Tracker1 for formating data in php Tracker1 2009-05-23T22:36:07Z 2009-06-21T14:51:43Z <p>Your best bet is <a href="http://us3.php.net/preg%5Freplace" rel="nofollow">preg_replace</a>.</p> <p>Regular expressions take some getting used to, but this is probably your best bet...</p> <p><em>EDIT:</em></p> <pre><code>//initial parsing $val = preg_replace( '/(\d*?)(\d{1,2}?)(\d{1,3}?)(\d{1,4})$/', '${1}-${2}-$[3}-${4}', $inputString ); //nuke leading dashes $val - preg_replace('^\-+', '', $val); </code></pre> <p>The key is to make every set, except the righ-most one non-greedy, allowing for a right-side oriented pattern match.</p> http://stackoverflow.com/questions/726334/asp-mvc-jsonresult-date-format/726729#726729 0 Answer by Tracker1 for ASP MVC JsonResult Date Format Tracker1 2009-04-07T17:17:02Z 2009-06-21T13:57:12Z <p>If you doing eval("(" + jsonResult + ")") on the result, it should work. You may be best to, as mentioned, do a cusom serialization of the date/time to a client specific GMT/UTC string. Dates aren't defined within the JSON specification, but using Date(TIME_T) will work unless you are doing client-side validation of JSON responses.</p> <p>Edit:example</p> <pre><code> var o = eval("({ dtm: new Date('1990/01/05') })"); alert(o.dtm); //milliseconds from 1970-01-01 to 1990-01-05 aka TIME_T * 1000 o = eval("({ dtm: new Date(631522800000) })"); alert(o.dtm); </code></pre> <p>both work...</p> http://stackoverflow.com/questions/918822/what-if-any-technology-is-going-to-replace-asp-net/918947#918947 2 Answer by Tracker1 for What, if any, technology is going to replace ASP.NET? Tracker1 2009-05-28T02:31:30Z 2009-05-28T02:31:30Z <p>I would say ASP.net MVC, and/or WCF+REST are the main things to look into, in terms of a reboot of how web applications are written on the server. If you like MVC, but not webforms, there are other view engines that can be plugged in pretty easily.</p> http://stackoverflow.com/questions/903002/how-to-style-nested-panel-controls-in-asp-net/903010#903010 0 Answer by Tracker1 for How to style nested panel controls in ASP.NET Tracker1 2009-05-24T03:29:51Z 2009-05-24T17:11:00Z <p>Panels should usually, but not always, render as div tags, the IDs get borked by the naming container, so easier to add a cssclass attribute.. the set your css accordingly.</p> <p>If you want overfow to allow for scrolling, you'll want your positioning, and height set to allow for that.</p> <pre><code>.myContainter { position: relative; /* or absolute, or a float */ height: 700px; overflow: auto; } </code></pre> <p>should do it. :)</p> http://stackoverflow.com/questions/902789/how-to-get-the-start-and-and-end-times-of-a-day/902937#902937 2 Answer by Tracker1 for How to get the start and and end times of a day Tracker1 2009-05-24T02:29:02Z 2009-05-24T02:29:02Z <pre><code>startDate = DateTime.ParseExact(dates[0], "yyyyMMdd"); endDate = DateTime.ParseExact(dates[1], "yyyyMMdd").AddDays(1).AddSeconds(-1); </code></pre> <p>You really don't need to concatenate extra values onto the string for the time portion.</p> http://stackoverflow.com/questions/902678/parse-an-xml-string-in-mysql/902753#902753 1 Answer by Tracker1 for Parse an XML string in MySQL Tracker1 2009-05-24T00:04:37Z 2009-05-24T00:22:57Z <pre><code>DECLARE i INT DEFAULT 1; DECLARE count DEFAULT ExtractValue(xml, 'count(//child)'); WHILE i &lt;= count DO SELECT ExtractValue(xml, '//child[$i]'); SET i = i+1; END WHILE </code></pre> <p>Alternatively...</p> <pre><code>DECLARE v VARCHAR(500) DEFAULT ''; DECLARE i INT DEFAULT 1; REPEAT SET v = ExtractValue(xml, '//child[$i]') SET i = i+1; IF v IS NOT NULL THEN -- do something with v END IF UNTIL v IS NULL </code></pre> <p>Sorry if the syntax is a bit shakey in here, not much of a mysql guru...</p> http://stackoverflow.com/questions/902652/exchange-mail-attachment-extraction-using-managed-code/902668#902668 0 Answer by Tracker1 for Exchange mail attachment extraction using managed code Tracker1 2009-05-23T22:52:16Z 2009-05-23T22:52:16Z <p>There are a number of free/opensourse, not to mention commercial imap, and pop3 libraries that can expose the functionality you are looking for. Personally, I would setup a delivery rule to flow said emails to a given folder, and use IMAP for the client downloader.</p> <p><a href="http://www.google.com/searchq=c%23%2Bimap%2Bsite%3Acodeplex.com" rel="nofollow">IMAP on Codeplex</a></p> http://stackoverflow.com/questions/902597/jquery-checking-to-see-if-div-contains-text-then-action/902632#902632 0 Answer by Tracker1 for Jquery: Checking to see if div contains text, then action Tracker1 2009-05-23T22:23:49Z 2009-05-23T22:23:49Z <pre><code>if( $("#field &gt; div.field-item").text().indexOf('someText') &gt;= 0) </code></pre> <p>Some browsers will include whitespace, others won't. <code>&gt;=</code> is appropriate here. Otherwise equality is double equals <code>==</code></p> http://stackoverflow.com/questions/902524/how-to-respond-to-sound-in-another-application/902615#902615 0 Answer by Tracker1 for How to Respond to Sound In Another Application? Tracker1 2009-05-23T22:18:37Z 2009-05-23T22:18:37Z <p>Does the other process exit after completion? You can always keep a handle on it and tie an event handler to it's exit</p> http://stackoverflow.com/questions/902541/what-is-the-best-default-location-for-projects-in-visual-studio/902609#902609 1 Answer by Tracker1 for What is the best default location for projects in Visual Studio? Tracker1 2009-05-23T22:15:14Z 2009-05-23T22:15:14Z <p>I think it depends on your use... I prefer to have my development projects on a separate drive/partition, so will usually use the following convention <code>D:\projects\{company-name}\({client-name}|internal)\{project-name}</code> Where the client-name comes into play is when the work is by a given company, but for another. I keep my projects under <code>D:\projects\personal\...</code> This allows for a better structure.</p> <p>As to backup strategies, imho this is what source control is for. I prefer subversion, and have a backup strategy for the svn server. Although I didn't much care for ankh 1.x, the 2.x version, along with TortoiseSVN have worked pretty well for me. As a matter of practice, I tend to checkin often, and try to only checkin code in a runnable state (though new features/code may not work).</p> http://stackoverflow.com/questions/902501/permission-denied-to-call-method-location-tostring/902536#902536 0 Answer by Tracker1 for Permission denied to call method Location.toString Tracker1 2009-05-23T21:35:48Z 2009-05-23T21:35:48Z <p>If the script is executed from a different domain, or you are trying to access the contents of a frame/window/iframe of a different domain, you will see this error. Safari's behavior was a little different, at least in the v1-2 era (iirc), so you will probably want to test in that as well.</p> <p>If you are including scripts via a different domain, you need to make sure your actual triggers/events are tied in and executed from inline scripts, or from a script file loaded from the same domain as your html for best results.</p> http://stackoverflow.com/questions/427051/how-to-set-the-principal-in-an-asp-net-app/900761#900761 0 Answer by Tracker1 for How to set the Principal in an ASP.Net app Tracker1 2009-05-23T03:07:17Z 2009-05-23T03:07:17Z <p>Assign an "incomplete" role when authenticating against the temporary token, then restrict access to only that role... when the account is created, send them to a re-login page (terminating the authentication token). This will simplify your security model.</p> http://stackoverflow.com/questions/896743/best-way-to-propagate-opener-variable-across-page-navigation/900742#900742 0 Answer by Tracker1 for Best way to propagate opener variable across page navigation? Tracker1 2009-05-23T02:52:35Z 2009-05-23T02:52:35Z <p>iirc, even after you navigate away from the original document in a window opened by window.open, window.opener is still available.</p> http://stackoverflow.com/questions/897157/phone-style-password-entry-with-javascript/900730#900730 0 Answer by Tracker1 for 'Phone' style password entry with javascript Tracker1 2009-05-23T02:41:41Z 2009-05-23T02:41:41Z <p>I think you should have a <em>real</em> password field with a syle of display:none; instead of a hidden field; and an onchange event for that field that runs only once, putting a mask into your proof of concept text field.. so that the browser's built in save password can work. As others have suggested a "show password" toggle box wouldn't hurt either. The problem is that the autofill on saved form data tends to happen after the window's load event, also after the dom-ready event (used by jquery), so tying into the onchange of the hidden password field is necessary.</p> http://stackoverflow.com/questions/897603/learning-javascript-vs-jquery/900705#900705 2 Answer by Tracker1 for Learning Javascript vs. jQuery Tracker1 2009-05-23T02:22:41Z 2009-05-23T02:22:41Z <p>I would say the statement is akin to you reading a C#/VB.Net book and having your boss say "Don't bother, just learn ASP.Net". You really don't get much from the latter without the former.</p> http://stackoverflow.com/questions/898282/process-xml-returned-via-ajax-with-e4x/900678#900678 0 Answer by Tracker1 for Process XML returned via Ajax with E4X? Tracker1 2009-05-23T02:08:16Z 2009-05-23T02:08:16Z <p>Just use xhr.responseXML which is already an XML object with DOM support after the request is fullfilled. If the browser supports the XmlHttpRequest object, this should work directly. Also, IIRC, you can use jQuery to wrap the object and use it's own find/each methods for traversing the object.</p> http://stackoverflow.com/questions/900117/is-getelementbyclass-safe-to-use-across-browsers-like-getelementbyid/900655#900655 1 Answer by Tracker1 for Is getElementByClass safe to use across browsers like getElementById? Tracker1 2009-05-23T01:48:59Z 2009-05-23T01:48:59Z <p>I would suggest using a wrapper library like prototype.js or jQuery, which both support a css selector model, and handle browser compatibility issues (IE6-7 being the bigger issues usually)</p> http://stackoverflow.com/questions/900241/closing-a-popup-window-in-firefox-2-within-an-ajax-response-handler/900650#900650 1 Answer by Tracker1 for Closing a popup window in Firefox 2 within an AJAX response handler Tracker1 2009-05-23T01:45:00Z 2009-05-23T01:45:00Z <p>just wrap your close in a short timeout..</p> <pre><code>setTimeout(window.close, 100); </code></pre> <p>It shoould be enough time for the socket to finish closing, and the poopup to self-close.</p> http://stackoverflow.com/questions/900572/scrollheight-not-updating-in-ie8-using-jquery/900639#900639 1 Answer by Tracker1 for ScrollHeight not updating in IE8 using JQuery Tracker1 2009-05-23T01:37:03Z 2009-05-23T01:37:03Z <p>try using jQuery's innerHeight() value, also Ibeleive you need 'px' with the value.</p> <pre><code>node.animate({ scrollTop: node.innerHeight() + 'px' }, 500); </code></pre> http://stackoverflow.com/questions/448005/whats-an-easy-way-to-read-random-line-from-a-file-in-unix-command-line/448019#448019 1 Answer by Tracker1 for What's an easy way to read random line from a file in Unix command line? Tracker1 2009-01-15T19:06:24Z 2009-05-23T01:30:13Z <p>cat + perl &lt;<a href="http://snippets.openminds.be/posts/show/8" rel="nofollow">http://snippets.openminds.be/posts/show/8</a>&gt;</p> <p>edit: perl -e 'srand; rand($.) &lt; 1 &amp;&amp; ($line = $_) while &lt;>; print $line;' filename</p> <p>thanks Mr. Muskrat</p> http://stackoverflow.com/questions/852281/iis7-deployed-mvc-doesnt-redirect-despite-wwwfilter/894621#894621 1 Answer by Tracker1 for IIS7 deployed MVC doesn't redirect despite WWWfilter Tracker1 2009-05-21T19:18:52Z 2009-05-22T00:23:41Z <p>I would look into using the built in <a href="http://learn.iis.net/page.aspx/460/using-url-rewrite-module/" rel="nofollow">IIS7 URL Rewrite Module</a>'s support for redirects. Also, it could also be caching in the client browser... If you do a forced refresh (Shift+F5) does the redirect work?</p> <p>Beyond this, if you want to do performance optimizations within sub-domains for images, scripts and css, you may want to keep the www. Since cookies set to the parent domain (mydomain.ext), will also be sent to subdomains (images.mydomain.ext).</p> http://stackoverflow.com/questions/361620/asp-net-mvc-vs-webforms-for-first-page-load-speed-for-big-projects/894767#894767 0 Answer by Tracker1 for ASP.NET MVC vs WebForms for First Page Load Speed for Big Projects Tracker1 2009-05-21T19:48:13Z 2009-05-21T19:48:13Z <p>There are a lot of things thhat can be done to improve performance, the enhancements in order to provide for a separation of concerns in MVC apps can help a lot. Though the default view engine re-uses webforms, Views have a far simpler control stack than typical webforms, which helps a lot, not to even mention alternative view engines.</p> <p>the hit for 'first view' comes from having to JIT a large set of classes/objects that are used in your project and it's first page.</p> http://stackoverflow.com/questions/894473/does-asp-net-mvc-use-the-regular-toolbox-controls/894547#894547 2 Answer by Tracker1 for Does ASP.NET MVC use the regular toolbox controls? Tracker1 2009-05-21T19:04:54Z 2009-05-21T19:04:54Z <p>For the most part, use of MVC is explicitly not a drag/drop affair. There isn't a level of auto-wiring data-bound controls either. The purpose within MVC's structure is to give more direct control over the markup. There are some helper methods that can be used with rendering Form controls. MVC is a very different development model server-side. NOTE, you can combine ASP.Net with MVC into a hybrid project.</p> <p>I would suggest that you need to be very comfortable with HMTL markup, and how HTTP + HTML communication works in order to be successful with an MVC project. The use of javascript is also very explicit. MVC is very nice with regards to a separation of concerns from back end, and front end in web based applications. This makes it easier to design and test the back-end logic, in comparison to the front-end rendering. It is a framework for web developers (web based applications are the first concern), not a developer framework for a web front end (ASP.Net controls based).</p> http://stackoverflow.com/questions/863125/regular-expression-to-count-number-of-in-string/863179#863179 0 Answer by Tracker1 for Regular expression to count number of , in string Tracker1 2009-05-14T12:57:30Z 2009-05-14T13:08:06Z <pre><code>var valid = ((" " + input + " ").split(",").length == 22); </code></pre> <p>or...</p> <pre><code>var valid = 21 == (function(input){ var ret = 0; for (var i=0; i&lt;input.length; i++) if (input.substr(i,1) == ",") ret++; return ret })(); </code></pre> <p>Will perform better than...</p> <pre><code>var valid = (/^([^,]*,){21}[^,]*$/).test(input); </code></pre> http://stackoverflow.com/questions/1603524/override-javascript-window-opener/1603571#1603571 Comment by Tracker1 on Override javascript Window.opener Tracker1 2009-10-21T23:07:24Z 2009-10-21T23:07:24Z or something to that effect. http://stackoverflow.com/questions/1603524/override-javascript-window-opener/1603571#1603571 Comment by Tracker1 on Override javascript Window.opener Tracker1 2009-10-21T23:06:51Z 2009-10-21T23:06:51Z var tempWin = window.open('javascript:void(window.open(&quot;&quot;,&quot;path-to/subwindow.html&quot;));','temp'); tempWin.close(); http://stackoverflow.com/questions/1599726/problem-accessing-global-javascript-variables/1602249#1602249 Comment by Tracker1 on Problem accessing global javascript variables Tracker1 2009-10-21T22:29:01Z 2009-10-21T22:29:01Z Might be better to pass references to the constructor for parent/related object... note: this can cause a memory leak within your page as objects are created/destroyed, not a huge issue as it's limited to the one page, but in a large application open for an entire day or more, this can become an issue. Especially in older browsers. http://stackoverflow.com/questions/1603686/javascript-identity-operator-on-strings/1603736#1603736 Comment by Tracker1 on JavaScript identity operator on strings Tracker1 2009-10-21T22:08:33Z 2009-10-21T22:08:33Z Would also add that 0, false, &quot;&quot;, null and sometimes undefined match with equality operations, which can cause some head scratching. http://stackoverflow.com/questions/1053697/jquery-not-working-with-html-actionlink/1053924#1053924 Comment by Tracker1 on jQuery not working with Html.ActionLink? Tracker1 2009-06-29T22:18:42Z 2009-06-29T22:18:42Z &lt;script type=&quot;text/javascript&quot; src=&quot;&lt;%=Page.ResolveClientUrl(&quot;~/Scripts/...js&quot;)%&gt;&quot;&gt;&lt;/script&gt; http://stackoverflow.com/questions/902637/formating-data-in-php/902648#902648 Comment by Tracker1 on formating data in php Tracker1 2009-06-21T14:59:09Z 2009-06-21T14:59:09Z read your updates... you could wrap his into a function where the pattern, format, and input string are passed in, and the results returned... http://stackoverflow.com/questions/902637/formating-data-in-php Comment by Tracker1 on formating data in php Tracker1 2009-06-21T14:52:38Z 2009-06-21T14:52:38Z updated the example below to 4 sections... http://stackoverflow.com/questions/918822/what-if-any-technology-is-going-to-replace-asp-net/918835#918835 Comment by Tracker1 on What, if any, technology is going to replace ASP.NET? Tracker1 2009-06-21T14:28:57Z 2009-06-21T14:28:57Z @Adrian, the development/project structure in ASP.Net MVC is dramatically different than ASP.Net Webforms.. far more than an MVC design pattern over ASP.Net webforms. http://stackoverflow.com/questions/848556/issue-with-parsing-json-string/862385#862385 Comment by Tracker1 on issue with parsing JSON string Tracker1 2009-06-21T14:13:47Z 2009-06-21T14:13:47Z Is the url being requested *really*returning '{}', or is it returning an error? just the same... objlist = g_onjList.parseJSON() || {}; should work.. forcing the ocject. Also, what JSON parser are you using? (json.org, asp.net ajax, prototype.js)? http://stackoverflow.com/questions/859009/asp-net-mvc-equivalent-to-response-redirect-click-event/859888#859888 Comment by Tracker1 on ASP.NET MVC Equivalent to Response.Redirect Click Event Tracker1 2009-06-21T14:09:44Z 2009-06-21T14:09:44Z window.location.replace(window.location.href) should work, but will remove the original entry in the browser history. http://stackoverflow.com/questions/726334/asp-mvc-jsonresult-date-format/726729#726729 Comment by Tracker1 on ASP MVC JsonResult Date Format Tracker1 2009-06-21T13:58:26Z 2009-06-21T13:58:26Z added sample, should be 'new Date(Time_T * 1000)' which is pretty easily calculated. http://stackoverflow.com/questions/918819/cookieless-session-temporary-internet-files-asp-net/918858#918858 Comment by Tracker1 on cookieless session temporary internet files (asp.net) Tracker1 2009-05-28T02:34:19Z 2009-05-28T02:34:19Z moving images to another domain/pool does have the side-effect of allowing for more connections from the browser, and a potentially faster load time. http://stackoverflow.com/questions/900117/is-getelementbyclass-safe-to-use-across-browsers-like-getelementbyid/900655#900655 Comment by Tracker1 on Is getElementByClass safe to use across browsers like getElementById? Tracker1 2009-05-28T02:20:50Z 2009-05-28T02:20:50Z if it's loaded into the opener... window.opener.$('...') works ;) http://stackoverflow.com/questions/903002/how-to-style-nested-panel-controls-in-asp-net/903010#903010 Comment by Tracker1 on How to style nested panel controls in ASP.NET Tracker1 2009-05-25T00:25:01Z 2009-05-25T00:25:01Z what about position, or float? are they set? http://stackoverflow.com/questions/902637/formating-data-in-php/902648#902648 Comment by Tracker1 on formating data in php Tracker1 2009-05-23T23:47:56Z 2009-05-23T23:47:56Z @scott, not sure what you mean? You can do a pattern match without the end string marker <code>$/</code> ... i would suggest some reading on the use of regular expressions...