User Alex - Stack Overflow most recent 30 from stackoverflow.com 2009-12-19T09:20:58Z http://stackoverflow.com/feeds/user/447 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/690358/hosted-user-control-in-ie-and-client-side-event-handling 0 Hosted User Control in IE and Client Side Event Handling Alex 2009-03-27T16:02:10Z 2009-08-30T11:00:01Z <p>I just upgraded a hosted control to .NET 2.0 and I had to enable the ComVisible to access methods from the client side using javascript.</p> <p>Should events also be accessible once I enable ComVisible? I was handling my events like this before with no issues:</p> <pre><code>&lt;OBJECT id="foo" ...&gt;&lt;/OBJECT&gt; &lt;script language="javascript"&gt; function document.all.foo::SampleEvent(res){ //do stuff here } &lt;/script&gt; </code></pre> <p>This won't work either:</p> <pre><code>&lt;script language="javascript" for="foo" event="SampleEvent(res)"&gt; alert(res); &lt;/script&gt; </code></pre> <p>For some reason I can't catch my events now. If I use my DLL in a WinForms project the event handles fine so I know I've set it all up properly.</p> <p>How can I expose this to the client side properly?</p> <p>Thanks</p> http://stackoverflow.com/questions/254558/improving-a-tooltip-code/1338585#1338585 0 Answer by Alex for Improving a tooltip code Alex 2009-08-27T02:37:56Z 2009-08-27T02:37:56Z <p>I've found that <a href="http://craigsworks.com/projects/qtip/" rel="nofollow">qTip</a> has met all of my tooltip needs:</p> http://stackoverflow.com/questions/1296004/how-templates-work-on-wordpress/1296045#1296045 1 Answer by Alex for how templates work on wordpress? Alex 2009-08-18T19:41:59Z 2009-08-18T19:41:59Z <p>Here are some frameworks to get you started:</p> <p><a href="http://www.catswhocode.com/blog/wordpress-theme-frameworks" rel="nofollow">Wordpress Theme Frameworks explained</a></p> http://stackoverflow.com/questions/1235456/asp-net-application-to-make-a-skype-call/1235480#1235480 1 Answer by Alex for ASP.NET application to make a skype call. Alex 2009-08-05T20:11:19Z 2009-08-05T20:11:19Z <p>Can't you setup your links with callto:// prefixes? If the user has the option enabled in Skype then the application will be associated with those links.</p> <p><a href="http://www.ehow.com/how%5F2008799%5Fuse-skype-links.html" rel="nofollow">How to Use the Skype Callto:// Links</a></p> <p>Perhaps you could build a link on the fly and initiate a call this way?</p> http://stackoverflow.com/questions/1235270/what-is-the-html-concept-called-that-links-2-select-boxes-together/1235281#1235281 9 Answer by Alex for What is the HTML concept called that links 2 select boxes together? Alex 2009-08-05T19:35:56Z 2009-08-05T19:35:56Z <p>There is no 'component' that will do this. This thread should help:</p> <p><a href="http://stackoverflow.com/questions/204140/how-to-add-move-one-list-box-items-to-another-listbox-items-in-javascript">Moving items in Dual Listboxes</a></p> <p>You have both a jQuery and native javascript example.</p> http://stackoverflow.com/questions/1200471/jquery-ui-dialog-confirmation/1200488#1200488 0 Answer by Alex for jquery ui dialog confirmation Alex 2009-07-29T14:01:58Z 2009-07-29T14:01:58Z <p>Here is some documentation on the jQuery UI dialog:</p> <p><a href="http://docs.jquery.com/UI/Dialog" rel="nofollow">UI/API/1.7.2/Dialog</a></p> http://stackoverflow.com/questions/1183523/how-to-properly-compress-jquery-and-lots-of-plugins/1183538#1183538 1 Answer by Alex for How to properly compress Jquery and lots of plugins? Alex 2009-07-26T01:58:12Z 2009-07-26T01:58:12Z <p>I've found that the Yahoo Compressor works best for minifying javascript. Here is a link: <a href="http://developer.yahoo.com/yui/compressor/" rel="nofollow">YUI Compressor</a></p> <p>Also, you might want to move all of those script file references to the bottom of your page so that the rest of your page can load faster and then those scripts can be pulled down.</p> http://stackoverflow.com/questions/1155621/placing-content-above-an-object 2 Placing content above an <OBJECT> Alex 2009-07-20T20:01:13Z 2009-07-21T18:55:50Z <p>I've tried setting the zIndex for my OBJECT and it seems that I cannot place any content above it. Is this an IE issue? Any workarounds? I'm trying to display a lightbox type dialog directly above the OBJECT.</p> http://stackoverflow.com/questions/1151205/server-mappath-beyond-the-webroot/1151245#1151245 1 Answer by Alex for Server.MapPath beyond the webroot Alex 2009-07-19T23:59:36Z 2009-07-20T20:48:06Z <p>Maybe creating a virtual will help solve this. I'm not really sure what you are trying to do.</p> <p>You can create a virtual path on your website that is mapped to another physical path on your machine (i.e another website)</p> <p><a href="http://support.microsoft.com/kb/172138" rel="nofollow">How To Create a Virtual Directory in Internet Information Services (IIS)</a></p> <p>Then when you use MapPath to access this virtual you can access another website.</p> <p><strong>Update:</strong> </p> <p>@me: You can do to IIS and create a virtual directory to access the other application. From your first application you would create an 'Application2' virtual and point it to C:\inetpub\wwwroot\website2.</p> <p>Now when you access <a href="http://www.mywebsite.com/Application2" rel="nofollow">http://www.mywebsite.com/Application2</a> you are looking at files in the other application (C:\inetpub\wwwroot\website2).</p> <p>Also, a Server.MapPath("./Application2") will return the path in C:\inetpub\wwwroot\website2\</p> <p>I hope that helps.</p> http://stackoverflow.com/questions/1143834/fileupload1-postedfile-filename-is-throwing-exception/1143893#1143893 1 Answer by Alex for FileUpload1.PostedFile.FileName is throwing exception Alex 2009-07-17T15:11:26Z 2009-07-17T15:11:26Z <p>I think you need to save the file before you can open it. You can use:</p> <pre><code>PostedFile.SaveAs() </code></pre> <p>to save it to the server.</p> <p>Did that help?</p> http://stackoverflow.com/questions/1139632/how-can-i-read-the-page-title-of-the-parent-page-from-an-iframe/1139636#1139636 2 Answer by Alex for How can I read the page title of the parent page from an iframe? Alex 2009-07-16T19:02:32Z 2009-07-16T19:02:32Z <p>You cannot communicate across servers like that.</p> http://stackoverflow.com/questions/1139354/closing-modal-box-with-iframe-inside-the-iframe/1139413#1139413 1 Answer by Alex for Closing modal box with iframe Inside the iframe Alex 2009-07-16T18:28:20Z 2009-07-16T18:28:20Z <p>You can't modify an element that "belongs" to the parent page from within that popup page. As far as I know you will have to issue your hide code from the parent. You could always have your code inside the dialog do something like this:</p> <pre><code>parent.$("#dialog").hide(); </code></pre> <p>I think that's what you're asking...</p> http://stackoverflow.com/questions/1105130/pageload-not-being-called-on-re-navigation/1139359#1139359 0 Answer by Alex for Page_Load not being called on re-navigation Alex 2009-07-16T18:19:58Z 2009-07-16T18:19:58Z <p>It sounds like your page is cached. This would cause the Page_Load not to fire. Check that you have not set that anywhere.</p> http://stackoverflow.com/questions/1138029/jquery-bind-same-function-to-3-different-textboxs-keyup-event/1138046#1138046 2 Answer by Alex for JQuery, bind same function to 3 different textbox's keyup event Alex 2009-07-16T14:34:36Z 2009-07-16T14:40:13Z <pre><code>$("#txt1, #txt2, #txt3").keyup(fn); </code></pre> http://stackoverflow.com/questions/1135112/document-location-not-adding-to-history/1135130#1135130 0 Answer by Alex for document.location - Not adding to history Alex 2009-07-16T02:26:45Z 2009-07-16T02:26:45Z <p>Try:</p> <pre><code> location.replace(www.google.com'); </code></pre> <p>This should put the page in your history.</p> http://stackoverflow.com/questions/1134052/help-me-fix-this-messed-up-html-table-please/1134090#1134090 0 Answer by Alex for Help me fix this messed up HTML table please Alex 2009-07-15T21:06:08Z 2009-07-15T21:06:08Z <p>Are you having a problem with greater than or less than signs?</p> <p>Try this:</p> <pre><code> &lt;table width="100%" border="0"&gt; &lt;tbody&gt; &lt;tr align="center"&gt; &lt;td bgcolor="#ffffff" color="white" align="center"&gt; &lt;!--some form elements go here!--&gt; &lt;font face="Arial" size="2"&gt;&lt;strong&gt;&amp;lt;-Previous&lt;/strong&gt;&lt;/font&gt; &lt;Input id='previuesButton' Type="image" alt="Previous" src="/eiv/images/prev.gif" Value="&lt;&lt;Previous" name=previuesButton ACCESSKEY="B"&gt; &lt;/td&gt; &lt;td bgcolor="#ffffff" color="white" align="center"&gt; &lt;font face="Arial" size="2"&gt;&lt;strong&gt;Next Group-&amp;gt;&lt;/strong&gt;&lt;/font&gt; &lt;Input id='nextButton' alt="Next" Type="image" src="/eiv/images/next.gif" Value=" Next&gt;&gt; "name=nextButton ACCESSKEY="B"&gt; &lt;/td&gt; &lt;/tr&gt; &lt;td align="center"&gt;&lt;font face="arial" size="2"&gt;&lt;b&gt;51 to 100 of 10151&lt;/b&gt; &lt;/font&gt; &lt;/td&gt; &lt;/tbody&gt; </code></pre> <p></p> <p>That help?</p> http://stackoverflow.com/questions/1133541/how-do-i-launch-an-exe-file-on-page-load-to-save-or-run/1133597#1133597 0 Answer by Alex for How do I launch an .exe file on page load to save or run? Alex 2009-07-15T19:53:18Z 2009-07-15T19:53:18Z <p>You cannot launch a file on the users machine unless you have some ActiveX control or Java applet with permissions to do so installed.</p> <p>You can create the file on your server and send it to the browser. The user will be prompted to save or open the file.</p> http://stackoverflow.com/questions/1133324/javascript-centering-a-div-on-the-page/1133366#1133366 0 Answer by Alex for Javascript centering a div on the page Alex 2009-07-15T19:14:42Z 2009-07-15T19:14:42Z <p>In order to keep it centered with scrolling you will need to attach a function to move it to your scroll position.</p> <p>You can do that with:</p> <pre><code>$(window).scroll(resize()) </code></pre> <p>Get your current position with:</p> <pre><code>$(window).scrollTop(); </code></pre> <p>This will comply with IE6 issues.</p> http://stackoverflow.com/questions/1131745/can-you-control-the-order-in-which-images-hidden-vs-visible-on-a-web-page-are-l/1131817#1131817 2 Answer by Alex for Can you control the order in which images (hidden vs visible) on a web page are loaded? Alex 2009-07-15T14:39:12Z 2009-07-15T14:39:12Z <p>The browser should be requesting the images in the order that the markup lists them in. So it would ask for a.jpg, b.jpg, etc.</p> <p>If you don't want the hidden DIV images to load with the page then you would have to insert that HTML from the client side once you want the images loaded.</p> http://stackoverflow.com/questions/1130357/combine-two-asp-net-web-site-into-one/1131612#1131612 1 Answer by Alex for Combine two asp.net web site into one. Alex 2009-07-15T14:04:05Z 2009-07-15T14:04:05Z <p>I'm not 100% sure I understand your question but I think what you want to do is setup a host header for 2 different applications so that you can access them from the same IIS instance. Here is an article that shows you how to configure the hosts:</p> <p><a href="http://www.gafvert.info/iis/article/iis%5Fmultiple%5Fwebsites.htm" rel="nofollow">Using Host Headers to host multiple websites on IIS 6.0</a></p> <p>If you are testing this locally you probably want to make a host file entry to simulate the environment.</p> <p>If you want it to be localhost/firstapplication and localhost/secondapplication.firstapplication/ then you could create a virtual for each application. Here is how you can do that:</p> <p><a href="http://support.microsoft.com/kb/172138" rel="nofollow">How To Create a Virtual Directory in Internet Information Services (IIS)</a></p> http://stackoverflow.com/questions/1109258/email-form-stopped-working-suddenly-when-its-been-working-fine/1109265#1109265 0 Answer by Alex for Email Form Stopped Working Suddenly? When its been working fine? Alex 2009-07-10T12:35:27Z 2009-07-10T12:35:27Z <p>If you haven't changed any code it looks like something is wrong on your server. Check the DNS on that machine to make sure you can ping your mail server. It looks like it can't resolve the name.</p> http://stackoverflow.com/questions/1102385/asp-net-gridviews-viewstates/1104406#1104406 1 Answer by Alex for ASP.net GridView's ViewStates Alex 2009-07-09T14:54:19Z 2009-07-09T14:54:19Z <p>If you can't reduce the size of your viewstate you could try an alternate solution. You can store your viewstate on the server. This blog post shows how to implement this:</p> <p><a href="http://aspguy.wordpress.com/2008/07/09/reducing-the-page-size-by-storing-viewstate-on-server/" rel="nofollow">Reducing the page size by storing ViewState on Server</a></p> <p>I've implemented something similar to this on a page that had a huge viewstate and it worked great. I would try to optimize the viewstate before moving to something like this since it is creating a bit of overhead.</p> <p>I think I used this article (it's been a while) and had to modify it for SQL as this uses the filesystem: <a href="http://aspalliance.com/472%5FPersisting%5FView%5FState%5Fto%5Fthe%5FFile%5FSystem.all" rel="nofollow">Persisting View State to the File System</a></p> http://stackoverflow.com/questions/1104023/asp-net-textbox-avoid-copy-paste-of-few-characters/1104098#1104098 0 Answer by Alex for ASP.NET Textbox - Avoid Copy Paste of few characters Alex 2009-07-09T14:03:16Z 2009-07-09T14:03:16Z <p>Are you trying to modify what is in the users clipboard before the paste? Why not attach a onchange event that does any validation that you require? You could replace out any characters that you don't want in there.</p> http://stackoverflow.com/questions/690358/hosted-user-control-in-ie-and-client-side-event-handling/1098848#1098848 0 Answer by Alex for Hosted User Control in IE and Client Side Event Handling Alex 2009-07-08T15:31:57Z 2009-07-08T15:31:57Z <p>Just following up on this in case someone runs into it in the future. I had 2 mismatched data types in the user control which was causing the event not to fire properly.</p> <p><strong>Check your data types!</strong></p> http://stackoverflow.com/questions/1098548/axd-files-generate-a-404-error/1098761#1098761 0 Answer by Alex for .axd files generate a 404 error Alex 2009-07-08T15:19:46Z 2009-07-08T15:19:46Z <p>You need to create a MIME type for that extension in IIS:</p> <p>To define a MIME type for a specific extension, follow these steps:</p> <ol> <li>Open the IIS Microsoft Management Console (MMC), right-click the local computer name, and then click Properties.</li> <li>Click HTTP Headers.</li> <li>Click MIME Types.</li> <li>Click New.</li> <li>In the Extension box, type the file name extension that you want (for example, .axed)</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. In this example, IIS now serves files with the .axed extension.</li> </ol> http://stackoverflow.com/questions/586327/asp-net-1-1-web-services-jquery 1 ASP.NET 1.1 Web Services & jQuery Alex 2009-02-25T15:01:54Z 2009-02-25T20:29:22Z <p>I've been looking for an example of a 1.1 web service getting called using jQuery. I'd like to call a web service and pass a few parameters to it.</p> <p>Can someone point me in the right direction?</p> <p>Thanks!</p> http://stackoverflow.com/questions/2770/global-exception-handling-for-winforms-control 4 Global Exception Handling for winforms control Alex 2008-08-05T20:05:22Z 2008-11-08T16:10:17Z <p>When working on ASP.NET 1.1 projects I always used the Global.asax to catch all errors. I'm looking for a similar way to catch all exceptions in a WinForms user control which ends up being a hosted IE control. What is the proper way to go about doing something like this?</p> http://stackoverflow.com/questions/123095/what-are-the-best-practices-to-push-site-updates-from-dev-stage-testing-environme/123146#123146 0 Answer by Alex for What are the best practices to push site updates from dev/stage/testing environment to production? Alex 2008-09-23T19:14:22Z 2008-09-23T19:14:22Z <p>As far as pushing files out to all the web servers I find that good old robocopy does the trick. My dev/stage/prod environments are all identical of course. Just put up a temporary page that tells users the site will be right back.</p> http://stackoverflow.com/questions/15573/choosing-a-new-development-machine 1 Choosing a new development machine Alex 2008-08-19T02:33:17Z 2008-09-15T23:58:50Z <p>I'm not sure how this question will be recieved here but lets give it a shot...</p> <p>It's time for me to get a new dev PC. What's the best choice these days?</p> <p>I typically have 2-3 Visual Studios open along with mail and all that stuff. Ideally I would imagine 2+ GB of RAM would be nice as my current XP box is dying. =)</p> <p>I hopped on the Dell site (my days of building PC's are behind me. I just need something that gets the job done.) and started browsing around only to be confused from all the processor choices. What does a typical dev box need these days? Duo? Quad?</p> <p>Is it worth going to 64 bit Vista as well?</p> <p>It's been a while since I got a new machine so I'm just looking for some guidance.</p> <p>Thanks</p> http://stackoverflow.com/questions/33478/can-you-recommend-an-asp-net-control-library/33494#33494 0 Answer by Alex for Can you recommend an ASP.NET control library? Alex 2008-08-28T21:56:54Z 2008-08-28T21:56:54Z <p><a href="http://www.componentart.com" rel="nofollow">ComponentArt</a> has some pretty cool controls. You might want to check out <a href="http://www.telerik.com" rel="nofollow">Telerik</a> as well. Both companies offer pretty easy to use controls that look nice.</p> http://stackoverflow.com/questions/1151205/server-mappath-beyond-the-webroot/1151245#1151245 Comment by Alex on Server.MapPath beyond the webroot Alex 2009-07-20T20:48:40Z 2009-07-20T20:48:40Z @me see edit. Did that clear it up for you? http://stackoverflow.com/questions/1155621/placing-content-above-an-object Comment by Alex on Placing content above an <OBJECT> Alex 2009-07-20T20:17:58Z 2009-07-20T20:17:58Z It's a hosted user control, not flash so the wmode parameter won't do it. http://stackoverflow.com/questions/1151205/server-mappath-beyond-the-webroot/1151245#1151245 Comment by Alex on Server.MapPath beyond the webroot Alex 2009-07-20T00:07:19Z 2009-07-20T00:07:19Z See edit. Boo for downvote! http://stackoverflow.com/questions/1139354/closing-modal-box-with-iframe-inside-the-iframe/1139413#1139413 Comment by Alex on Closing modal box with iframe Inside the iframe Alex 2009-07-16T19:09:02Z 2009-07-16T19:09:02Z My example will do that. Then you can manipulate whatever you need from there. http://stackoverflow.com/questions/1130357/combine-two-asp-net-web-site-into-one Comment by Alex on Combine two asp.net web site into one. Alex 2009-07-16T18:22:40Z 2009-07-16T18:22:40Z Is that what you were looking for? http://stackoverflow.com/questions/1138078/webservice-not-all-properties-showing-on-client Comment by Alex on Webservice: not all properties showing on client Alex 2009-07-16T14:41:47Z 2009-07-16T14:41:47Z Please post some sample code. http://stackoverflow.com/questions/1133541/how-do-i-launch-an-exe-file-on-page-load-to-save-or-run/1133597#1133597 Comment by Alex on How do I launch an .exe file on page load to save or run? Alex 2009-07-15T20:31:57Z 2009-07-15T20:31:57Z I understand that. I was clarifying that this cannot be done programmatically. The user will get the prompt and they can do what they want with it. http://stackoverflow.com/questions/1104620/how-to-store-file-on-server-asp-net Comment by Alex on How to store file on server ASP.net Alex 2009-07-09T15:28:22Z 2009-07-09T15:28:22Z Your question is unclear. Can you post some code? http://stackoverflow.com/questions/1098548/axd-files-generate-a-404-error/1098761#1098761 Comment by Alex on .axd files generate a 404 error Alex 2009-07-09T14:17:48Z 2009-07-09T14:17:48Z I'm thinking you might have a permissions issue? Can you see anything else on that server? .aspx? Anything? http://stackoverflow.com/questions/1098548/axd-files-generate-a-404-error/1098761#1098761 Comment by Alex on .axd files generate a 404 error Alex 2009-07-09T12:32:54Z 2009-07-09T12:32:54Z What version of IIS are you running? http://stackoverflow.com/questions/690358/hosted-user-control-in-ie-and-client-side-event-handling Comment by Alex on Hosted User Control in IE and Client Side Event Handling Alex 2009-04-14T14:42:18Z 2009-04-14T14:42:18Z No ideas on this?