User Grant Wagner - Stack Overflowmost recent 30 from stackoverflow.com2009-12-14T20:32:24Zhttp://stackoverflow.com/feeds/user/9254http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1478462/unable-to-obtain-physical-memory-informatin-using-powershell/1522352#15223521Answer by Grant Wagner for Unable to obtain physical memory informatin using powershellGrant Wagner2009-10-05T20:56:55Z2009-10-05T20:56:55Z<p>I think your call to <code>Get-WmiObject</code> is incorrect. The following seems to work:</p>
<pre><code>$strComputer = “.”
$colItems = Get-WmiObject Win32_PhysicalMemory -namespace root\CIMV2 -computername $strComputer
#$colItems = get-wmiobject -class “Win32_PhysicalMemory” -namespace “root CIMV2" -computername $strComputer
foreach ($objItem in $colItems) {
Write-Host "BankLabel " $objItem.BankLabel
Write-Host "Capacity " $objItem.Capacity
Write-Host "Caption " $objItem.Caption
Write-Host "DataWidth " $objItem.DataWidth
Write-Host "Description " $objItem.Description
Write-Host "DeviceLocator" $objItem.DeviceLocator
Write-Host "FormFactor " $objItem.FormFactor
}
</code></pre>
http://stackoverflow.com/questions/1475471/how-to-generate-word-documentdoc-docx-in-asp-net/1521937#15219372Answer by Grant Wagner for How to generate Word document(doc,docx) in ASP.NET?Grant Wagner2009-10-05T19:28:39Z2009-10-05T19:28:39Z<p>You can create OpenXML documents using the <a href="http://www.microsoft.com/downloads/details.aspx?FamilyId=C6E744E5-36E9-45F5-8D8C-331DF206E0D0&displaylang=en" rel="nofollow">Open XML SDK 2.0 for Microsoft Office</a>. Note that this only applies to <code>.docx</code>, not <code>.doc</code> binary files from earlier versions of Word.</p>
<p>Documentation can be found <a href="http://msdn.microsoft.com/en-us/library/bb448854.aspx" rel="nofollow">here</a>.</p>
http://stackoverflow.com/questions/1464721/javascript-waiting-for-an-iframe-page-to-load-before-writing-to-it-but-not-from/1499099#14990990Answer by Grant Wagner for javascript: waiting for an iframe page to load before writing to it (but not from the page that's triggered the load)Grant Wagner2009-09-30T16:01:13Z2009-09-30T16:01:13Z<p>If I understand your problem correctly, and you control the content of all the frames, and all the frame content is from the same domain, you can trigger an <code>onload</code> event on the <code>bottomright</code> frame to <em>pull</em> the data from <code>topright</code>, rather than trying to <em>push</em> it.</p>
<p><code>bottomright</code> can even invoke a function in <code>topright</code> and ask it to <em>push</em> the data (which in my mind is still a form of <em>pull</em>).</p>
<p>Something like this:</p>
<pre><code>// topright
function pushData(frame, form, name, value) {
frame.document.forms[form].elements[name] = value;
}
// bottomright
window.onload = function () {
top.frames['topright'].pushData(window, 'sub_form', 'ID_client', 'client');
}
</code></pre>
<p>Untested. I'm not 100% sure passing <code>window</code> from <code>bottomright</code> will work, in which case this might be an alternative:</p>
<pre><code>// topright
function pushData(frame, form, name, value) {
top.frames[frame].document.forms[form].elements[name] = value;
}
// bottomright
window.onload = function () {
top.frames['topright'].pushData('bottomright', 'sub_form', 'ID_client', 'client');
}
</code></pre>
http://stackoverflow.com/questions/1464756/javascript-get-value-of-dropdown/1499013#14990130Answer by Grant Wagner for JavaScript: get value of dropdownGrant Wagner2009-09-30T15:51:11Z2009-09-30T15:51:11Z<p>To do this not using jQuery:</p>
<pre><code>function getSelectValues() {
var values = [];
for (var i = 0; i < arguments.length; i++) {
var select = document.getElementById(arguments[i]);
if (select) {
values[i] = select.options[select.selectedIndex].value;
} else {
values[i] = null;
}
}
return values;
}
</code></pre>
<p>This function returns an array of values that correspond to the <code>id</code>s you pass into the funtion, as follows:</p>
<pre><code>var selectValues = getSelectValues('id1', 'id2', 'id3');
</code></pre>
<p>If a <code><select></code> with one of your specified <code>id</code>s does not exist the array contains <code>null</code> for the value for that position.</p>
<p>There are a couple of other ways to do this, you could pass the function an array of <code>id</code> values: <code>getSelectValues([ 'id1', 'id2', 'id3' ])</code>, in which case the function would be changed:</p>
<pre><code>function getSelectValues(ids) {
var values = [];
for (var i = 0; i < ids.length; i++) {
// ...
</code></pre>
<p>You could also pass the function a map of <code>id</code>s and populate the values:</p>
<pre><code>var myMap = { 'id1': null, 'id2': null, 'id3': null };
getSelectValues(myMap);
// myMap['id1'] contains the value for id1, etc
</code></pre>
<p>This would change the function to be:</p>
<pre><code>function getSelectValues(map) {
for (var id in map) {
var select = document.getElementById(id);
if (select) {
map[id] = select.options[select.selectedIndex].value;
} else {
map[id] = null;
}
}
}
</code></pre>
http://stackoverflow.com/questions/1459170/what-is-13/1472847#14728471Answer by Grant Wagner for What is ?Grant Wagner2009-09-24T16:35:32Z2009-09-24T16:35:32Z<p><a href="http://www.asciitable.com/" rel="nofollow">AsciiTable</a> is a good place to look up decimal, hex and octal values for each ASCII character.</p>
<p><a href="http://www.w3.org/TR/html4/sgml/entities.html" rel="nofollow">Character entity references in HTML 4</a> is also a good resource for determining what various character entities are.</p>
http://stackoverflow.com/questions/1456112/known-issues-with-gzip-and-ie6/1456264#14562642Answer by Grant Wagner for Known issues with gzip and IE6Grant Wagner2009-09-21T19:08:07Z2009-09-21T19:08:07Z<p>The problem is described <a href="http://stackoverflow.com/questions/1241822/1265795#1265795">in this answer</a>.</p>
<p>If you are using Apache there is information at the <a href="http://www.virtuosimedia.com/tutorials/ultimate-ie6-cheatsheet-how-to-fix-25-internet-explorer-6-bugs#gzip-ie6" rel="nofollow">Ultimate IE6 > Cheatsheet: How To Fix 25+ Internet Explorer 6 Bugs</a> on how to work around it:</p>
<blockquote>
<p>Some versions of IE6 prior to the XP
SP2 update may have trouble with files
that have been served using GZip
compression. Fortunately, <a href="http://sebduggan.com/" rel="nofollow">Seb
Duggan</a> found a <a href="http://sebduggan.com/posts/ie6-gzip-bug-solved-using-isapi-rewrite" rel="nofollow">IE6 GZip bug
solution</a> using <a href="http://www.helicontech.com/isapi%5Frewrite/" rel="nofollow">ISAPI_Rewrite</a>
for Apache.</p>
<p>Seb's solution is to place the
following code in the <em>httpd.conf</em>
file in the ISAPI_Rewrite installation
directory:</p>
</blockquote>
<pre><code>RewriteEngine on
RewriteCond %{HTTP:User-Agent} MSIE\ [5<span class="highlight">6</span>]
RewriteCond %{HTTP:User-Agent} !SV1
RewriteCond %{REQUEST_URI} \.(css|js)$
RewriteHeader Accept-Encoding: .* $1
</code></pre>
http://stackoverflow.com/questions/1455801/form-field-outlining/1456109#14561090Answer by Grant Wagner for Form Field OutliningGrant Wagner2009-09-21T18:41:28Z2009-09-21T18:41:28Z<p>I believe the style of all the form elements are stored in the <code>forms.css</code> file. In OS X, I think it is located here:</p>
<pre><code>/Applications/Firefox.app/Contents/MacOS/res/forms.css
</code></pre>
<p>You may want to browse through that file and see if there is any obvious CSS that is affecting the appearance you are seeing. For example, on Windows the <code>input</code> element has <code>-moz-appearance: textfield;</code>, which I couldn't find any documentation on, so perhaps there is some "native" <code>-moz-*</code> style on those fields that is controlling the glow, something you could possibly override.</p>
<p>The other thing to try might be to override everything in that file by changing the <code>input</code> definitions to <code>input2</code> or something (after making a copy of course). Then you can see if you can get the glow to stop at all by manipulating the default CSS.</p>
<p>Once you've determined you can make it stop (if you can), you can add styles back in a bit at a time until you find the one that causes the effect you don't want. You can probably speed up that process by eliminating styles from your testing that obviously aren't related (e.g. - <code>line-height: normal !important;</code> is almost certainly not responsible for a blue glow around the fields).</p>
http://stackoverflow.com/questions/1455575/passing-hidden-field-from-one-page-to-another-in-querystring/1455984#14559840Answer by Grant Wagner for Passing hidden field from one page to another in querystringGrant Wagner2009-09-21T18:16:06Z2009-09-21T18:16:06Z<p>If you are using aspx, you do not need to parse the query string using JavaScript, or even use <code><form method="GET" ...></code>. You can POST the form to the second <code>aspx</code> page, extract the value in C# or VB then write it to a client-side JavaScript variable. Something like this:</p>
<p><strong>page1.aspx</strong>:</p>
<pre><code><form method="POST" action="page2.aspx">
<input type="hidden" name="myHiddenServerField" value="myHiddenServerValue">
<input type="submit">
</form>
</code></pre>
<p><strong>page2.aspx</strong>:</p>
<pre><code><script type="text/javascript">
var myHiddenClientValue = '<%= Request.Form['myHiddenServerField']; %>';
</script>
</code></pre>
<p>The above would set the client-side JavaScript variable called <code>myHiddenClientValue</code> to a value of <code>'myHiddenServerValue'</code> after the POST.</p>
<p>This can be a bad idea because if <code>myHiddenServerField</code> contains single quotes or a newline character, then setting it on the client in <code>page2.aspx</code> can fail. <a href="http://www.west-wind.com/WebLog/posts/252178.aspx" rel="nofollow">Embedding ASP.NET Server Variables in Client JavaScript</a> and <a href="http://www.west-wind.com/weblog/posts/259442.aspx" rel="nofollow">Embedding ASP.NET Server Variables in Client JavaScript, Part 2</a> deals with specifically these issues, and solves them with a server-side class that ensures values being written to the client are escaped correctly.</p>
http://stackoverflow.com/questions/1448223/how-to-check-a-particular-browser-add-on-is-installed-or-not-in-ie-with-javascri/1455432#14554320Answer by Grant Wagner for How to check a particular browser add-on is installed or not in IE with javascript/vbScriptGrant Wagner2009-09-21T16:26:43Z2009-09-21T16:26:43Z<p>Assuming your add-on is registered as an ActiveX component, you can just try to instantiate an instance of it. If it succeeds it is installed, if it throws an exception it is not installed. Something like the following:</p>
<pre><code><body>
<pre>
<script type="text/javascript">
try {
new ActiveXObject("ShockwaveFlash.ShockwaveFlash");
document.writeln("ShockwaveFlash is installed");
} catch (err) {
document.writeln("ShockwaveFlash is not installed");
}
// OR
try {
new ActiveXObject("AcroPDF.PDF");
document.writeln("Adobe Reader is installed");
} catch (err) {
document.writeln("Adobe Reader is not installed");
}
</script>
</pre>
</body>
</code></pre>
http://stackoverflow.com/questions/1446323/bing-maps-how-can-i-turn-off-street-labels-in-birds-eye-view/1446730#14467300Answer by Grant Wagner for Bing maps - how can I turn off street labels in Bird's Eye view?Grant Wagner2009-09-18T20:39:16Z2009-09-18T20:44:25Z<p>I'm putting everything in the <code><body></code> for demonstration purposes. You'd probably put the loading of the external <code>mapcontrol</code> library and your <code>GetMap()</code> function in the <code><head></code>. You might even want to put your own script in an external file.</p>
<pre><code><body onload="GetMap();">
<div id='myMap' style="position:relative; width:400px; height:400px;"></div>
<script type="text/javascript" src="http://ecn.dev.virtualearth.net/mapcontrol/mapcontrol.ashx?v=6.2"></script>
<script type="text/javascript">
var map = null;
function GetMap() {
map = new VEMap('myMap');
map.LoadMap(new VELatLong(47.6, -122.33), 10, VEMapStyle.Birdseye, false);
}
</script>
</body>
</code></pre>
<p>The parameters for <a href="http://msdn.microsoft.com/en-us/library/bb412546.aspx" rel="nofollow">VEMap.LoadMap(<em>VELatLong</em>, <em>zoom</em>, <em>style</em>, <em>fixed</em>, <em>mode</em>, <em>showSwitch</em>, <em>tileBuffer</em>, <em>mapOptions</em>)</a> are:</p>
<p><em>VELatLong</em> A VELatLong Class object that represents the center of the map. Optional.</p>
<p><em>zoom</em> The zoom level to display. Valid values range from 1 through 19. Optional. Default is 4. <strong>Note that <em>VEMapStyle.Birdseye</em> seems to only support two zoom levels: 1 gives you the wide view, anything else gives you the close-up view.</strong></p>
<p><em>style</em> A VEMapStyle Enumeration value specifying the map style. Optional. Default is VEMapStyle.Road. <strong>I changed this to <em>VEMapStyle.Birdseye</em></strong> as documented at <em><a href="http://msdn.microsoft.com/en-us/library/bb412515.aspx" rel="nofollow">VEMapStyle</a></em>.</p>
<p><em>fixed</em> A Boolean value that specifies whether the map view is displayed as a fixed map that the user cannot change. Optional. Default is false.</p>
<p><em>mode</em> A VEMapMode Enumeration value that specifies whether to load the map in 2D or 3D mode. Optional. Default is VEMapMode.Mode2D.</p>
<p><em>showSwitch</em> A Boolean value that specifies whether to show the map mode switch on the dashboard control. Optional. Default is true (the switch is displayed).</p>
<p><em>tileBuffer</em> How much tile buffer to use when loading map. Default is 0 (do not load an extra boundary of tiles). This parameter is ignored in 3D mode.</p>
<p><em>mapOptions</em> A VEMapOptions Class that specifies other map options to set. </p>
<p><hr /></p>
<p>Lastly, the <a href="http://www.microsoft.com/maps/isdk/ajax/" rel="nofollow">Bing Maps Interactive SDK</a> is a great resource for playing around and trying to figure out how things work and the <a href="http://msdn.microsoft.com/en-us/library/bb429565.aspx" rel="nofollow">Bing Map Control Class Reference</a> documents the entire API.</p>
http://stackoverflow.com/questions/1442663/weird-spacing-issues-ie8-works-great-ie6-and-ie7-bite/1446524#14465241Answer by Grant Wagner for Weird spacing issues - IE8 works great, IE6 and IE7 biteGrant Wagner2009-09-18T19:51:28Z2009-09-18T19:51:28Z<p>I used the <a href="http://www.microsoft.com/downloadS/details.aspx?familyid=E59C3964-672D-4511-BB3E-2D5E1DB91038&displaylang=en" rel="nofollow">Internet Explorer Developer Toolbar</a> in IE 6 to determine that the spacing issue started on the <code><li class="subType subType##"</code> surrounding each <em>part</em> (inside <code><ul class="partType partType##"></code>).</p>
<p>When I used the Developer Toolbar to change the style to be <code>display: inline</code> the extra vertical spacing went away in IE 6.</p>
<p>I modified cartSideBar.css and redefined:</p>
<pre><code>#cartComputer LI {
PADDING-RIGHT: 0px;
PADDING-LEFT: 0px;
PADDING-BOTTOM: 0px;
MARGIN: 0px;
PADDING-TOP: 0px;
LIST-STYLE-TYPE: none;
}
</code></pre>
<p>as:</p>
<pre><code>#cartComputer LI {
PADDING-RIGHT: 0px;
PADDING-LEFT: 0px;
PADDING-BOTTOM: 0px;
MARGIN: 0px;
PADDING-TOP: 0px;
LIST-STYLE-TYPE: none;
DISPLAY: inline;
}
</code></pre>
<p>I tested the result in IE 6, 7 & 8, Firefox 2, 3 & 3.5, Opera 9.6 & 10, Safari for Windows 3 & 4 and Google Chrome. It seemed to be okay in all of them. You'll want to perform more in-depth testing to make sure it doesn't negatively affect other layout.</p>
<p>You may want to isolate the change to just the <code>subType</code> class just to make sure it doesn't affect other <code>li</code> elements under <code>#cartComputer</code>:</p>
<pre><code>#cartComputer LI.subType {
display: inline;
}
</code></pre>
http://stackoverflow.com/questions/1445263/changing-url-through-html-select/1446357#14463571Answer by Grant Wagner for Changing URL through html select Grant Wagner2009-09-18T19:08:37Z2009-09-18T19:08:37Z<pre><code><script type="text/javascript">
function navigateTo(sel, target, newWindow) {
var url = sel.options[sel.selectedIndex].value;
if (newWindow) {
window.open(url, target, '--- attributes here, see below ---');
} else {
window[target].location.href = url;
}
}
</script>
<select onchange="navigateTo(this, 'window', false);">
<option selected="selected" value="http://www.example.com/#X">Change to URL X</option>
<option value="http://www.example.com/#Y">Change to URL Y</option>
</select>
</code></pre>
<p>Some useful values of <code>target</code> might be <code>'window'</code> (the current window) or <code>'top'</code> (to break out of a frameset or iframe). If you want to open a new window instead, you could use <code>navigateTo(this, 'someWindow', true);</code></p>
<p>The value of <em>'--- attributes ---'</em> is set using various properties as documented <a href="https://developer.mozilla.org/en/Window.open#Position%5Fand%5Fsize%5Ffeatures" rel="nofollow">here for Mozilla</a> and <a href="http://msdn.microsoft.com/en-us/library/ms536651.aspx" rel="nofollow">here for IE</a>. For example:</p>
<pre><code>'height=300,width=400,top=100,left=100,statusbar=0,toolbar=1'
</code></pre>
http://stackoverflow.com/questions/1439895/add-a-hash-with-javascript-to-url-without-scrolling-page/1440326#14403260Answer by Grant Wagner for add a hash with javascript to url without scrolling page?Grant Wagner2009-09-17T17:48:35Z2009-09-17T17:48:35Z<p>Either of the examples below should do what you want:</p>
<pre><code><br> <br> <br> <br> <br> <br> <br> <br> <br> <br> <br> <br>
<br> <br> <br> <br> <br> <br> <br> <br> <br> <br> <br> <br>
<br> <br> <br> <br> <br> <br> <br> <br> <br> <br> <br> <br>
<a href="pleaseEnableJS.html"
onclick="window.location.hash = '#test1';return false;">Test 1</a>
<a href="#test2">Test 2</a>
<br> <br> <br> <br> <br> <br> <br> <br> <br> <br> <br> <br>
<br> <br> <br> <br> <br> <br> <br> <br> <br> <br> <br> <br>
<br> <br> <br> <br> <br> <br> <br> <br> <br> <br> <br> <br>
</code></pre>
<p>If there is any element with <code>id="test1"</code> or <code>id="test2"</code> or <code><a name="test1"></a></code> or <code><a name="test2"></a></code> on your page, it will scroll to that element, otherwise it should work as you requested.</p>
<p>If you have code that is not working as expected, please <a href="http://stackoverflow.com/posts/1439895/edit">edit your question</a> and include a small example of the HTML and JavaScript that isn't working as expected.</p>
http://stackoverflow.com/questions/1430108/how-to-turn-screensaver-on-windows-7-by-a-code-in-cmd/1433591#14335912Answer by Grant Wagner for How to turn screensaver on (windows 7) by a code (in cmd)?Grant Wagner2009-09-16T15:05:58Z2009-09-17T16:53:29Z<p>Does the following meet your requirements?</p>
<pre><code>start logon.scr /s
</code></pre>
<p>As long as the <code>.scr</code> is on the PATH the above command should work.</p>
<p>EDIT: I don't know if Windows 7 comes with <code>logon.scr</code>, make sure you're testing it with a <code>.scr</code> that is actually installed in Windows 7.</p>
<p>Note that I got the idea of just invoking the <code>.scr</code> with <code>/s</code> from <a href="http://msdn.microsoft.com/en-us/library/ms686421.aspx#ss%5Fcmdline" rel="nofollow">Screensaver Sample Command Line Options</a>:</p>
<blockquote>
<p>When Windows runs your screensaver, it
launches it with one of three command
line options:</p>
<ul>
<li>/s – Start the screensaver in full-screen mode.</li>
<li>/c – Show the configuration settings dialog box.</li>
<li>/p #### – Display a preview of the screensaver using the specified
window handle.</li>
</ul>
</blockquote>
<p>EDIT 2:</p>
<p>I did some additional searching and found that you could create <code>lock.cmd</code>:</p>
<pre><code>@start /wait logon.scr /s & rundll32 user32.dll,LockWorkStation
</code></pre>
<p>Or <code>lock.vbs</code>:</p>
<pre><code>Set objShell = CreateObject("Wscript.Shell")
' The "True" argument will make the script wait for the screensaver to exit
returnVal = objShell.Run("logon.scr", 1, True)
' Then call the lock functionality
objShell.Run "rundll32.exe user32.dll,LockWorkStation"
</code></pre>
<p>Neither of these answers is perfect, both reveal a flicker of the desktop after the screen saver is disabled and just prior to the workstation being locked.</p>
<p>It may not be possible to reproduce the system behaviour of starting the screen saver and password protecting on resume. Even <a href="http://stackoverflow.com/questions/267728/267735#267735">the answer to Launch System Screensaver from C# Windows Form</a> only starts the screen saver, it does not password protect on resume.</p>
http://stackoverflow.com/questions/1430108/how-to-turn-screensaver-on-windows-7-by-a-code-in-cmd/1440047#14400472Answer by Grant Wagner for How to turn screensaver on (windows 7) by a code (in cmd)?Grant Wagner2009-09-17T16:52:38Z2009-09-17T16:52:38Z<p>Putting together <a href="http://stackoverflow.com/questions/1430108/1433591#1433591">the <code>cmd</code> and <code>vbs</code> script ideas</a> with the code from <a href="http://stackoverflow.com/questions/267728/267735#267735">the answer to Launch System Screensaver from C# Windows Form</a> I came up with the following:</p>
<pre><code>using System;
using System.Runtime.InteropServices;
public static class LockDesktop
{
[DllImport("user32.dll", EntryPoint = "GetDesktopWindow")]
private static extern IntPtr GetDesktopWindow();
[DllImport("user32.dll")]
private static extern IntPtr SendMessage(IntPtr hWnd, uint Msg, int wParam, int lParam);
[DllImport("user32.dll", EntryPoint = "LockWorkStation")]
private static extern IntPtr LockWorkStation();
private const int SC_SCREENSAVE = 0xF140;
private const int WM_SYSCOMMAND = 0x0112;
public static void SetScreenSaverRunning()
{
SendMessage(GetDesktopWindow(), WM_SYSCOMMAND, SC_SCREENSAVE, 0);
LockWorkStation();
}
public static void Main()
{
LockDesktop.SetScreenSaverRunning();
}
}
</code></pre>
<p>To build it, <a href="http://smallestdotnet.com/" rel="nofollow">install the .NET Framework</a>, copy and paste the above code into <code>lock.cs</code>, then run:</p>
<pre><code>%SystemRoot%\Microsoft.NET\Framework\v3.5\csc.exe lock.cs
</code></pre>
<p>Put the created <code>lock.exe</code> in your path, after that, typing <code>lock</code> should engage the configured screen saver and lock your workstation.</p>
http://stackoverflow.com/questions/1439588/cp-parents-in-batch-file-vbscript/1439672#14396722Answer by Grant Wagner for "cp --parents" in batch file/VBScriptGrant Wagner2009-09-17T15:43:17Z2009-09-17T15:43:17Z<p>This should work:</p>
<pre><code>for /r %%a in (*.cmd) do xcopy %%a C:\DESTINATION%%~pa
</code></pre>
<p>Note that <code>DESTINATION</code> should <em>never</em> be a subdirectory of the directory you are trying to copy from, otherwise <code>for /r</code> goes into a recursive loop copying files it has already copied creating longer and longer directory paths (don't ask me how I know).</p>
<p>You could make it slightly more robust using <code>xcopy /c</code> (to continue copying even if errors occur). You may also want to look at <code>xcopy /?</code> to see if there is anything else of value there (<code>/q</code>, <code>/r</code>, <code>/o</code>, etc).</p>
http://stackoverflow.com/questions/1433212/replace-method-doesnt-work/1439482#14394820Answer by Grant Wagner for Replace method doesn't workGrant Wagner2009-09-17T15:11:00Z2009-09-17T15:11:00Z<p>The OP doesn't say why it isn't working, but there seems to be problems related to the encoding of the file. If I have an ANSI encoded file and I do:</p>
<pre><code>var s = "“This is a test” ‘Another test’";
s = s.replace(/[“”]/g, '"').replace(/[‘’]/g,"'");
document.writeln(s);
</code></pre>
<p>I get:</p>
<pre><code>"This is a test" "Another test"
</code></pre>
<p>I converted the encoding to UTF-8, fixed the smart quotes (which broke when I changed encoding), then converted back to ANSI and the problem went away.</p>
<p>Note that when I copied and pasted the double and single smart quotes off this page into my test document (ANSI encoded) and ran this code:</p>
<pre><code>var s = "“This is a test” ‘Another test’";
for (var i = 0; i < s.length; i++) {
document.writeln(s.charAt(i) + '=' + s.charCodeAt(i));
}
</code></pre>
<p>I discovered that all the smart quotes showed up as <code>? = 63</code>.</p>
<p>So, to the OP, determine where the smart quotes are originating and make sure they are the character codes you expect them to be. If they are not, consider changing the encoding of the source so they arrive as <code>“ = 8220</code>, <code>” = 8221</code>, <code>‘ = 8216</code> and <code>’ = 8217</code>. Use my loop to examine the source, if the smart quotes are showing up with any <code>charCodeAt()</code> values other than those I've listed, <code>replace()</code> will not work as written.</p>
http://stackoverflow.com/questions/1435749/javascript-html-dropdown-selector-change-to-targetblank/1435765#14357651Answer by Grant Wagner for [Javascript + HTML] Dropdown selector, change to target="_blank"Grant Wagner2009-09-16T22:10:14Z2009-09-17T14:08:57Z<pre><code>function dropdown(mySel) {
var myVal = mySel.options[mySel.selectedIndex].value;
if (myVal) {
if (mySel.form.target) {
window.open(myVal, mySel.form.target, '_attributes_');
} else {
window.location.href = myVal;
}
}
return false;
}
</code></pre>
<p>A list of <code>_attributes_</code> can be found <a href="https://developer.mozilla.org/en/Window.open#Position%5Fand%5Fsize%5Ffeatures" rel="nofollow">here for Mozilla</a> or <a href="http://msdn.microsoft.com/en-us/library/ms536651.aspx" rel="nofollow">here for IE</a>. There are a few differences in some of the options available, so it is best to review both lists.</p>
<p>You can also leave the third parameter off the function call and it should behave like <code>target="_blank"</code> on your <code><form></code>:</p>
<pre><code>// behaves as if you submitted <form ... target="_blank">:
window.open(myVal, mySel.form.target);
</code></pre>
<p>Here is an example using a set of <code>_attributes_</code> as documented at the links provided to open a window of a specific size and position with specific parts of the UI suppressed:</p>
<pre><code>// this opens a window that is 400 pixels by 300 pixels
// it is positioned 100 pixels from the top and the left
// it will have no statusbar, no menu but the new window will have a toolbar:
window.open(myVal, mySel.form.target,
'height=300,width=400,top=100,left=100,statusbar=0,menu=0,toolbar=1');
</code></pre>
http://stackoverflow.com/questions/1435583/automatically-login-google-web-crawler/1435613#14356133Answer by Grant Wagner for Automatically Login Google Web CrawlerGrant Wagner2009-09-16T21:33:43Z2009-09-16T21:33:43Z<p>This seems like a really bad idea for several reasons, not the least of which is that Google will cache copies of your pages, so that even if I do not authenticate against your site, I will be able to see the content of web pages and other documents served from behind the protected portion of your web site.</p>
<p>As far as detecting web crawlers goes, I wouldn't trust any User Agent. You could probably compile a list of IP addresses the crawlers originate from, but as soon as Google adds another IP address, you will be denying that crawler access.</p>
<p>Doing a reverse DNS lookup on every request to ensure the domain of the visitor is <code>googlebot.com</code> as suggested at <a href="http://www.google.com/support/webmasters/bin/answer.py?hl=en&answer=80553" rel="nofollow">Verifying Googlebot</a> could be a big performance hit if your site is busy.</p>
http://stackoverflow.com/questions/1435558/jquery-variables-as-key-in-keypair-css-attributes/1435575#14355754Answer by Grant Wagner for jQuery Variables as Key in Key:Pair CSS attributesGrant Wagner2009-09-16T21:27:45Z2009-09-16T21:27:45Z<p><code>{ "top": var1, "height": var2 }</code> creates a JavaScript Object that has two user-defined properties. Unfortunately, JavaScript does not allow you to use variables as property names when defining an Object in this way.</p>
<p>You should be able to do it like this:</p>
<pre><code>var o = {};
o[dir] = var1;
o[length] = var2;
$("div").css(o);
</code></pre>
http://stackoverflow.com/questions/1435015/how-can-i-make-the-browser-wait-to-display-the-page-until-its-fully-loaded/1435087#14350872Answer by Grant Wagner for How can I make the browser wait to display the page until it's fully loaded?Grant Wagner2009-09-16T19:49:00Z2009-09-16T19:49:00Z<p>This is a very bad idea for all of the reasons given, and more. That said, here's how you do it using <a href="http://jquery.com/" rel="nofollow">jQuery</a>:</p>
<pre><code><body>
<div id="msg" style="font-size:largest;">
<!-- you can set whatever style you want on this -->
Loading, please wait...
</div>
<div id="body" style="display:none;">
<!-- everything else -->
</div>
<script type="text/javascript">
$(document).ready(function() {
$('#body').show();
$('#msg').hide();
});
</script>
</body>
</code></pre>
<p>If the user has JavaScript disabled, they never see the page. If the page never finishes loading, they never see the page. If the page takes too long to load, they may assume something went wrong and just go elsewhere instead of <em>please wait...</em>ing.</p>
http://stackoverflow.com/questions/1430628/cannot-type-in-text-input-in-ie/1433644#14336441Answer by Grant Wagner for Cannot type in text input in IEGrant Wagner2009-09-16T15:16:29Z2009-09-16T15:16:29Z<p>The problem is probably that you are testing it using <a href="http://multipleies.en.softonic.com/" rel="nofollow">multipleIEs</a> on XP. Installing multiple instances of IE in Windows is known to cause all sorts of problems. IE relies on certain versions of certain DLLs, including IME (Input Method Editors) and others.</p>
<p>Installing multiple versions of IE on the same copy of Windows can and has lead to all sorts of "interesting" problems.</p>
<p>I'd suggest you try the same test with a copy of Windows with only a single version of IE installed. It may be inconvenient, but you would be better off using the <a href="http://www.microsoft.com/Downloads/details.aspx?FamilyID=21eabb90-958f-4b64-b5f1-73d0a413c8ef&displaylang=en" rel="nofollow">Internet Explorer Application Compatibility VPC Images</a>.</p>
http://stackoverflow.com/questions/1433360/overflow-in-asp-classic/1433545#14335453Answer by Grant Wagner for Overflow in ASP ClassicGrant Wagner2009-09-16T14:58:25Z2009-09-16T14:58:25Z<p>The answer appears to be at <a href="http://support.microsoft.com/kb/205053" rel="nofollow">PRB: "Overflow" with Integer Division and MOD Operator</a>:</p>
<blockquote>
<p>The Visual Basic Help topic for the
Mod operator and the integer division
operator () explains that if floating
point numbers are used in the
expression, they are converted to
Longs first. Thus, if the floating
point number is greater than the
maximum value of a Long
(2,147,483,647), or less than the
minimum value for a long
(-2,147,483,648), an overflow error
will occur.</p>
</blockquote>
<p>The answer is available there as well:</p>
<blockquote>
<p>The following code demonstrates how to
perform integer division and modulo
arithmetic when the size of an operand
is sufficiently large to cause
overflow:</p>
</blockquote>
<pre><code>Dim dblX as Double
Dim dblY as Double
dblX = 2147483648 ' numerator
dblY = 123 ' denominator
' round off the numerator and denominator (ensure number is .0)
dblX = INT(dblX + .5)
dblY = INT(dblY + .5)
' Emulate integer division
MsgBox FIX(dblX / dblY)
' Emulate modulo arithmetic
MsgBox dblX - ( dblY * FIX(dblX / dblY) )
</code></pre>
http://stackoverflow.com/questions/1428290/can-i-call-a-static-method-inside-another-method/1428395#14283953Answer by Grant Wagner for Can I call a static method inside another method?Grant Wagner2009-09-15T16:58:41Z2009-09-15T17:21:50Z<p>I expanded your sample into a fully working example:</p>
<pre><code>using System;
public static class Class1
{
public static void Main()
{
Console.WriteLine(RenderCompareStatus());
}
public static string RenderCompareStatus()
{
String id = "test";
bool isFound = Found(id);
return "Test: " + isFound;
}
private static bool Found(string id)
{
return false;
}
}
</code></pre>
<p>And the results:</p>
<pre><code>Test: False
</code></pre>
<p>EDIT: If the above example is similar to your code but your code is not working, please <a href="http://stackoverflow.com/posts/1428290/edit">edit your question</a>, supplying more details such as the precise error you are getting and a more complete sample of the code that is producing the error.</p>
<p>EDIT: Changed <code>public static bool Found(string id)</code> to <code>private static bool Found(string id)</code> recompiled and it still works.</p>
http://stackoverflow.com/questions/1417852/problem-images-firefox/1423464#14234641Answer by Grant Wagner for Problem images firefoxGrant Wagner2009-09-14T19:32:55Z2009-09-14T19:32:55Z<p>Perhaps the user has accidentally blocked images from your domain.</p>
<p>In Firefox:</p>
<p><strong>Tools</strong> > <strong>Options</strong> > <strong>Content</strong> tab > <strong>Load images automatically</strong> should be checked > click <strong>Exceptions...</strong> make sure the <em>Site</em> list does not include <code>mowen-world.com</code>. If it is there, highlight it and click <strong>Remove Site</strong>.</p>
http://stackoverflow.com/questions/1422217/how-to-get-desktop-heap-free-size/1423005#14230051Answer by Grant Wagner for How to get desktop heap free size ?Grant Wagner2009-09-14T17:57:25Z2009-09-14T17:57:25Z<p>I'm not sure how much good it will do knowing how much desktop heap is free. From <a href="http://blogs.msdn.com/oldnewthing/archive/2006/09/01/735298.aspx" rel="nofollow">On the unanswerability of the maximum number of user interface objects a program can create</a>:</p>
<blockquote>
<p>Although one could come up with a
theoretical maximum number of window
classes that can fit in the desktop
heap, that number is not achievable in
practice because the desktop heap is
shared with all other user interface
objects on the desktop.</p>
</blockquote>
<p>The point is that at any given time, knowing the amount of free desktop heap will not give you any indication of how many more objects you can create.</p>
<blockquote>
<p>Typically, when somebody asks this
question, the real problem is that
they designed a system to the point
where desktop heap exhaustion has
become an issue, and they need to
redesign the program so they aren't so
wasteful of desktop heap resources in
general.</p>
</blockquote>
<p>Ideally you shouldn't need to know how much free desktop heap you have. If it is an issue, you should probably be looking at redesigning your application. <a href="http://weblogs.asp.net/fmarguerie/archive/2009/08/07/cannot-create-window-handle-desktop-heap.aspx" rel="nofollow">The "Error creating window handle" exception and the Desktop Heap</a> says the same thing in other words:</p>
<blockquote>
<p>Increasing the Desktop Heap is an
effective solution, but that's not the
ultimate one. The real solution is to
consume less resources...</p>
</blockquote>
<p>And provides examples of how to redesign your application:</p>
<ul>
<li>Use TabControls and create the content of each tab on the fly, when it becomes visible;</li>
<li>Use expandable/collapsible regions, and again fill them with controls and data only when needed;</li>
<li>Release resources as soon as possible (using the Dispose method). When a region is collapsed, it's possible to clear it's child controls. The same for a tab when it becomes hidden;</li>
<li>Use the MVP design pattern, which helps in making the above possible because it separates data from views;</li>
<li>Use layout engines, the standard FlowLayoutPanel and TableLayoutPanel ones, or custom ones, instead of creating deep hierarchies of nested panels, GroupBoxes and Splitters (an empty splitter itself consumes three window handles...).</li>
</ul>
http://stackoverflow.com/questions/1412956/show-and-hide-divs-javascript-works-in-ie-but-not-ff-or-chrome/1413032#14130320Answer by Grant Wagner for Show and Hide div's javascript works in IE but not FF or ChromeGrant Wagner2009-09-11T20:14:06Z2009-09-11T20:14:06Z<p><code>pass</code> is an ID. In Firefox, element ids in the DOM aren't available as global references. You can't do <em>id</em><code>.style.visibility = 'visible';</code> Instead your function should look something like this:</p>
<pre><code>function showDiv(pass) {
var divs = document.getElementsByTagName('span');
for (i = 0; i < divs.length; i++) {
if (divs[i].id.match(pass)) {
divs[i].style.visibility = 'hidden';
}
}
document.getElementById(pass).style.visibility = 'visible';
}
</code></pre>
<p>You should be able to set the <code>visibility</code> of <code>pass</code> outside the loop since you only need to do it once.</p>
http://stackoverflow.com/questions/1412391/what-character-replacements-should-be-performed-to-make-base-64-encoding-url-safe/1412419#14124195Answer by Grant Wagner for What character replacements should be performed to make base 64 encoding URL safe?Grant Wagner2009-09-11T18:02:03Z2009-09-11T18:15:11Z<p>There does appear to be a standard, it is <a href="http://www.faqs.org/rfcs/rfc3548.html" rel="nofollow">RFC 3548</a>, Section 4, <em>Base 64 Encoding with URL and Filename Safe Alphabet</em>:</p>
<blockquote>
<p>This encoding is technically identical
to the previous one, except for the
62:nd and 63:rd alphabet character, as
indicated in table 2.</p>
</blockquote>
<p><code>+</code> and <code>/</code> should be replaced by <code>- (minus)</code> and <code>_ (understrike)</code> respectively. Any incompatible libraries should be wrapped so they conform to RFC 3548.</p>
<p>Note that this requires that you URL encode the <code>(pad) =</code> characters, but I prefer that over URL encoding the <code>+</code> and <code>/</code> characters from the standard base64 alphabet.</p>
http://stackoverflow.com/questions/1412083/where-in-the-filesystem-does-ie8-store-values-stored-in-localstorage/1412136#14121362Answer by Grant Wagner for Where in the filesystem does IE8 store values stored in localStorage?Grant Wagner2009-09-11T17:02:47Z2009-09-11T17:21:44Z<p>The location of local storage on the file system is most likely an implementation detail that is not guaranteed to always be the same from version to version (it could even change with a service pack or update to IE).</p>
<p>To clear local storage using the approved methods, see <a href="http://msdn.microsoft.com/en-us/library/cc197062.aspx#%5Fclear" rel="nofollow">Clearing the Storage Areas</a> on the <a href="http://msdn.microsoft.com/en-us/library/cc197062.aspx" rel="nofollow">Introduction to DOM Storage MSDN page</a>:</p>
<blockquote>
<p><strong>Clearing the Storage Areas</strong></p>
<p>Session state is released as soon as
the last window to reference that data
is closed. However, users can clear
storage areas at any time by selecting
<strong>Delete Browsing History</strong> from the <strong>Tools</strong>
menu in Internet Explorer, selecting
the <strong>Cookies</strong> check box, and clicking
<strong>OK</strong>. This clears session and local
storage areas for all domains that are
not in the Favorites folder and resets
the storage quotas in the registry.
Clear the <strong>Preserve Favorite Site Data</strong>
check box to delete all storage areas,
regardless of source.</p>
<p>To delete key/value pairs from a
storage list, iterate over the
collection with <a href="http://msdn.microsoft.com/en-us/library/cc197047.aspx" rel="nofollow">removeItem</a> or use
<a href="http://msdn.microsoft.com/en-us/library/cc288131.aspx" rel="nofollow">clear</a> to remove all items at once.
Keep in mind that changes to a local
storage area are saved to disk
asynchronously.</p>
</blockquote>
<p>An alternative to using the approved methods is to use a tool like <a href="http://technet.microsoft.com/en-us/sysinternals/bb896645.aspx" rel="nofollow">Process Monitor</a> to watch disk and Registry accesses while you write something to <code>window.localStorage</code>. Unfortunately, if you see it writing to a file like <code>%userprofile%\Cookies\index.dat</code> it would probably be unwise to delete that file (since it contains information about all the other cookies IE knows about).</p>
<p>EDIT: Using my own suggestion I found that local storage seems to be at <code>%userprofile%\Local Settings\Application Data\Microsoft\Internet Explorer\DOMStore</code> (in Windows XP, Vista and Windows 7 will be slightly different). They are just XML files but I'm not sure how safe they are to delete because of the <code>index.dat</code> (which may retain information about the existence of the XML files or their contents).</p>
http://stackoverflow.com/questions/1411545/how-to-attach-event-handlers-to-document-elements-on-the-fly-using-javascript/1411643#14116431Answer by Grant Wagner for How to attach event handlers to document elements on the fly using Javascript?Grant Wagner2009-09-11T15:31:39Z2009-09-11T15:31:39Z<pre><code><body>
<input type="image" id="myImageInput">
<script type="text/javascript">
var theImageInput = document.getElementById('myImageInput');
theImageInput.onclick = function () { alert('myImageInput onclick invoked!'); }
</script>
</body>
</code></pre>
<p>Tested and working in Firefox 3.5.3.</p>
<p>Important points:</p>
<ul>
<li>You have to obtain a reference to the element after it has been rendered in the document.</li>
<li>Firefox is not like Internet Explorer in that it does not make the name/id of each element a global variable. <code>myImageInput.onclick = ...</code> will not work in Firefox, you must use <code>document.getElementById(theID)</code> or <code>document.forms['formName'].elements['elementNAME']</code> (if it is in a <code><form></code>) to obtain a reference to it.</li>
</ul>
<p>If the sample above copied and pasted into a document is not working for you in Firefox 3.5, please disable all your add-ons (maybe one of them is causing a problem). If that still does not work, please <a href="http://stackoverflow.com/posts/1411545/edit">edit your question</a> to show us your exact source so we can help determine why it isn't working.</p>
http://stackoverflow.com/questions/1473611/what-do-and-mean-inside-params/1473614#1473614Comment by Grant Wagner on What do { and } mean inside params?Grant Wagner2009-10-01T22:15:20Z2009-10-01T22:15:20ZI won't debate whether it is or isn't a JSON object, but I think it is a bit confusing (to someone new to JS) to mix the language concept of an anonymous object literal (<code>{ a: 1 }</code>) and what you can <i>compose</i> with that language concept (combine those anonymous object literals to create JSON).http://stackoverflow.com/questions/1467115/internet-explorer-8-navigate-to-users-home-page/1468104#1468104Comment by Grant Wagner on Internet Explorer 8: Navigate to users home pageGrant Wagner2009-10-01T19:29:26Z2009-10-01T19:29:26Z@NuSkooler: What you are doing is documented here: <a href="http://msdn.microsoft.com/en-us/library/ms531398.aspx" rel="nofollow">msdn.microsoft.com/en-us/library/…</a> http://stackoverflow.com/questions/1462321/10-gig-ethernet-in-java/1462520#1462520Comment by Grant Wagner on 10 gig ethernet in Java?Grant Wagner2009-09-24T20:52:05Z2009-09-24T20:52:05Z+1. It seems likely JSR 203 is what the OP was talking about.http://stackoverflow.com/questions/1457733/nested-quotes-in-javascript/1457988#1457988Comment by Grant Wagner on nested quotes in javascriptGrant Wagner2009-09-24T16:21:55Z2009-09-24T16:21:55Z@Scozzard: And what happens if the data contains <code>"</code>?http://stackoverflow.com/questions/1455575/passing-hidden-field-from-one-page-to-another-in-querystring/1455984#1455984Comment by Grant Wagner on Passing hidden field from one page to another in querystringGrant Wagner2009-09-22T14:23:19Z2009-09-22T14:23:19Z@archana: View > Source of <i>page1.aspx</i>, find the <code>name="the_name"</code> of the field you want to capture, then you can use <code><script>var clientSideJSVariable = '<%= Request.Form['the_name'] %>';</script></code> on <i>page2.aspx</i> to assign the value to a client-side JavaScript variable.http://stackoverflow.com/questions/1457001/convert-kilobytes-to-bytes-in-phpComment by Grant Wagner on Convert kilobytes to bytes in PHPGrant Wagner2009-09-21T21:42:03Z2009-09-21T21:42:03Z@liori: Actually <code>kb</code> is an Intel kilobyte: <a href="http://xkcd.com/394/" rel="nofollow">xkcd.com/394</a>http://stackoverflow.com/questions/1454213/should-i-accept-ie-5-0-as-a-browser-requirement-for-a-project/1454219#1454219Comment by Grant Wagner on Should I accept IE 5.0 (!) as a browser requirement for a project?Grant Wagner2009-09-21T17:30:25Z2009-09-21T17:30:25Z+1. But use progressive enhancement ( <a href="http://www.alistapart.com/articles/understandingprogressiveenhancement" rel="nofollow">alistapart.com/articles/…</a> , <a href="http://www.alistapart.com/articles/progressiveenhancementwithcss" rel="nofollow">alistapart.com/articles/…</a> and <a href="http://www.alistapart.com/articles/progressiveenhancementwithjavascript" rel="nofollow">alistapart.com/articles/…</a> ) instead of graceful degradation. Start with a plain HTML and minimal CSS site that works in all browsers, then add more advanced CSS and JavaScript on browsers that support more advanced features. That is a lot easier than starting with an advanced site and trying to make it work gracefully when advanced functionality isn't available.http://stackoverflow.com/questions/1452871/how-can-i-access-iframe-elements-with-javascriptComment by Grant Wagner on How can I access iFrame elements with Javascript?Grant Wagner2009-09-21T17:13:02Z2009-09-21T17:13:02Z@archana: RaYell's answer <a href="http://stackoverflow.com/questions/1451208/1451455#1451455" rel="nofollow" title="1451455%231451455">stackoverflow.com/questions/1451208/…</a> includes a comment from the first time you asked this question. If you do not know the frame id or name, you can use <code>document.frames[0].document.getElementById()</code> (or some other index if it is not the first <code><iframe></code> on the page.http://stackoverflow.com/questions/1452871/how-can-i-access-iframe-elements-with-javascriptComment by Grant Wagner on How can I access iFrame elements with Javascript?Grant Wagner2009-09-21T17:10:26Z2009-09-21T17:10:26ZExact duplicate: <a href="http://stackoverflow.com/questions/1451208" rel="nofollow">stackoverflow.com/questions/1451208</a>http://stackoverflow.com/questions/1452824/is-there-any-advantage-to-using-1-instead-of-2/1452843#1452843Comment by Grant Wagner on Is there any advantage to using '<< 1' instead of '* 2' ?Grant Wagner2009-09-21T17:08:17Z2009-09-21T17:08:17Z+1. Express your <b>intent</b> in your code, don't try to second guess the compiler (unless you've profiled the code and determined that doing it one way or the other makes a significant difference in the performance).http://stackoverflow.com/questions/1452313/why-null-myvar-instead-of-myvar-nullComment by Grant Wagner on Why null == myVar instead of myVar == null?Grant Wagner2009-09-21T17:03:43Z2009-09-21T17:03:43ZDuplicate: <a href="http://stackoverflow.com/questions/271561" rel="nofollow">stackoverflow.com/questions/271561</a>http://stackoverflow.com/questions/1439588/cp-parents-in-batch-file-vbscript/1439672#1439672Comment by Grant Wagner on "cp --parents" in batch file/VBScriptGrant Wagner2009-09-21T15:37:40Z2009-09-21T15:37:40Z@exalted: If what you need is the relative directories from your current directory to a new location, preserving the paths, then [mjv's answer][<a href="http://stackoverflow.com/questions/1439588/1439636#1439636]" rel="nofollow" title="1439636%231439636%5d">stackoverflow.com/questions/1439588/…</a> <code>xcopy /s *.cmd C:\DESTINATION</code> should work as long as you run it in the source directory. If you run it from another directory <code>xcopy /s [source_dir]*.cmd C:\DESTINATION</code> you'll get <code>C:\DESTINATION\[source_dir]\directories_and_files</code>.http://stackoverflow.com/questions/1442760/vs-2010-performance-problem/1442779#1442779Comment by Grant Wagner on VS 2010 performance problemGrant Wagner2009-09-18T19:25:46Z2009-09-18T19:25:46Z@anirudha: According to <a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=75cbcbcd-b0e8-40ea-adae-85714e8984e3&displaylang=en" rel="nofollow">microsoft.com/downloads/…</a> <i>1024MB RAM</i> is the system requirement for VS2010. Most Microsoft products perform poorly on the stated requirements, I would expect Visual Studio is no different. Check your Total Commit Charge (Task Manager > Performance tab) with VS2010 running. If it is near the amount of physical RAM you have, performance will be degraded. The only solution would be to add more physical memory.http://stackoverflow.com/questions/1445263/changing-url-through-html-select/1445335#1445335Comment by Grant Wagner on Changing URL through html select Grant Wagner2009-09-18T18:58:21Z2009-09-18T18:58:21Z-1. Don't use <code>eval()</code>. It isn't necessary here and it is really bad practice. <a href="http://blogs.msdn.com/ericlippert/archive/2003/11/01/53329.aspx" rel="nofollow">blogs.msdn.com/ericlippert/archive/…</a> ... <a href="http://www.jslint.com/lint.html" rel="nofollow">jslint.com/lint.html</a> and othershttp://stackoverflow.com/questions/1441447/iis-ping-fine-but-not-loading-in-browserComment by Grant Wagner on IIS ping fine but not loading in browserGrant Wagner2009-09-17T21:35:56Z2009-09-17T21:35:56Z@David: The operating system is responding to the ping, it does not mean that IIS is running, or if it is running that it is properly configured. You're probably better off on serverfault where they can help you get IIS running and configured to respond to requests.