User Jon - Stack Overflowmost recent 30 from stackoverflow.com2009-12-21T04:16:40Zhttp://stackoverflow.com/feeds/user/4764http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/338225/annoying-exception-in-asp-net/338241#3382410Answer by Jon for Annoying exception in asp.netJon2008-12-03T18:32:24Z2008-12-03T18:32:24Z<p>My initial guess is that ViewState remembers the error message. Try disabling ViewState on the JSLiteral control.</p>
http://stackoverflow.com/questions/59926/mssql-server-2005-encryption-asp-net-and-stored-procedures3MSSQL Server 2005 Encryption, asp.net and stored proceduresJon2008-09-12T20:51:38Z2008-11-17T21:42:57Z
<p>I need to write a web application using MSSQL Server 2005, asp.net, and ado.net. Much of the user data stored in this application must be encrypted (read HIPAA).</p>
<p>In the past for projects that required encryption, I encrypted/decrypted in the application code. However, this was generally for encrypting passwords or credit card information, so only a handful of columns in a couple tables. For this application, far more columns in several tables need to be encrypted, so I suspect pushing the encryption responsibilities into the data layer will be better performing, especially given MSSQL 2005's native support for several encryption types. (I could be convinced otherwise if anyone has real, empirical evidence.)</p>
<p>I've consulted BOL, and I'm fairly adept at using google. So I don't want links to online articles or MSDN documentation (its likely I've already read it).</p>
<p>One approach I've wrapped my head around so far is to use a symmetric key which is opened using a certificate.</p>
<p>So the one time setup steps are (performed by a DBA in theory):</p>
<ol>
<li>Create a Master Key </li>
<li>Backup the Master Key to a file, burn to CD and store off site.</li>
<li>Open the Master Key and create a certificate.</li>
<li>Backup the certificate to a file, burn to CD and store off site.</li>
<li>Create the Symmetric key with encryption algorithm of choice using the certificate.</li>
</ol>
<p>Then anytime a stored procedure (or a human user via Management Studio) needs to access encrypted data you have to first open the symmetric key, execute any tsql statements or batches, and then close the symmetric key.</p>
<p>Then as far as the asp.net application is concerned, and in my case the application code's data access layer, the data encryption is entirely transparent.</p>
<p>So my questions are:</p>
<ol>
<li><p>Do I want to open, execute tsql statements/batches, and then close the symmetric key all within the sproc? The danger I see is, what if something goes wrong with the tsql execution, and code sproc execution never reaches the statement that closes the key. I assume this means the key will remain open until sql kills the SPID that sproc executed on.</p></li>
<li><p>Should I instead consider making three database calls for any given procedure I need to execute (only when encryption is necessary)? One database call to open the key, a second call to execute the sproc, and a third call to close the key. (Each call wrapped in its own try catch loop in order to maximize the odds that an open key ultimately is closed.)</p></li>
<li><p>Any considerations should I need to use client side transactions (meaning my code is the client, and initiates a transaction, executes several sprocs, and then commits the transaction assuming success)?</p></li>
</ol>
http://stackoverflow.com/questions/159356/why-is-f-so-special10Why is F# so special?Jon2008-10-01T19:41:51Z2008-11-10T15:01:13Z
<p>In the microsoft and .net world, is there an industry trend towards F# and functional programming, moving away from C# and VB.NET?</p>
<p>What is it about F# that is so special? What does it provide that C# does not provide? Does it mean you can code solutions faster and build in more features in the same time frame? Can you code more reliably, with fewer bugs, in F# versus C#? What makes F# better than the current languages available in the .net world?</p>
http://stackoverflow.com/questions/257112/autoeventwireup-performance-cost/262176#2621762Answer by Jon for autoeventwireup performance costJon2008-11-04T15:29:16Z2008-11-04T15:29:16Z<p>From MSDN article.</p>
<p><a href="http://msdn.microsoft.com/en-us/library/ms973839.aspx" rel="nofollow">Performance Tips and Tricks in .NET Applications</a></p>
<p><strong>Avoid the Autoeventwireup Feature</strong></p>
<p>Instead of relying on autoeventwireup, override the events from Page. For example, instead of writing a Page_Load() method, try overloading the public void OnLoad() method. This allows the run time from having to do a CreateDelegate() for every page.</p>
<p>Knowledge Base article:</p>
<p><a href="http://kbalertz.com/324151/AutoEventWireup-attribute-using-Visual.aspx" rel="nofollow">How to use the AutoEventWireup attribute in an ASP.NET Web Form by using Visual C# .NET</a></p>
<p><strong>When to avoid setting the value of the AutoEventWireup attribute to true</strong></p>
<p><em>If performance is a key consideration, do not set the value of the AutoEventWireup attribute to true.</em> The AutoEventWireup attribute requires the ASP.NET page framework to make a call to the CreateDelegate function for every ASP.NET Web Form page. Instead of using automatic hookup, you must manually override the events from the page.</p>
http://stackoverflow.com/questions/149876/how-to-transfer-sql-encrypted-data-between-sql-server-2005-databases5How to transfer sql encrypted data between SQL Server 2005 databases?Jon2008-09-29T17:55:16Z2008-10-20T20:28:44Z
<p>I have an existing SQL Server 2005 database that contains data encrypted using a Symmetric key. The symmetric key is opened using a password. I am working on an upgrade to the front end applications that use this database, which include adding dozens of new tables, stored procedures, UDFs, etc. and dozens of modifications to existing tables and database objects. To that end I am making a copy of the existing development database, so that the current system can be independently supported, maintained, and updated while new development takes place.</p>
<p>What is a good way to go about copying the database? Normally, I'd take a backup of the existing database, and then restore it to the new database. However, will this be feasible given the encrypted data? Will I still be able to encrypt and more importantly decrypt data in the new database using the existing symmetric key and password? </p>
<p>Might I instead want to use DTS to transfer the existing schema only. Create a new symmetric key/password in the new database. Then write ad hoc queries to transfer the data, decrypting using existing key/password, and encrypting using new key/password in new database. </p>
<p>I guess at the heart of this is, are symmetric keys good for encrypting/decrypting data in a single database or in many databases on the same server?</p>
http://stackoverflow.com/questions/52566/mssql-server-2000-debugging-deadlocks2MSSQL Server 2000 - Debugging DeadlocksJon2008-09-09T18:42:07Z2008-10-14T05:55:08Z
<p>I'm looking for suggestions on how to debug and chase down deadlock issues in an MSSQL Server 2000 database. I've had it recommended to me to use trace flags 1024 and 3605, which I have found give me the following:</p>
<p>1024 - this trace flag returns the type of locks participating in the deadlock and the current command affected. </p>
<p>3605 - this trace flag sends trace output to the error log.</p>
<p>The specific stored procedures, tables and indexes still need to be uncovered, so the goal is to use these trace flags to do so. And then from there I'll know better what indexes need tuning, locking hints for tuning queries, and potential sproc bugs to fix.</p>
<p>Any other suggestions or happy ending war stories on chasing down this all to common problem?</p>
http://stackoverflow.com/questions/184840/asp-net-session-and-storing-objects-that-use-com-interop0ASP.NET session and storing objects that use COM interopJon2008-10-08T20:51:18Z2008-10-08T23:43:32Z
<p>I'm working on an asp.net web site. We have to use com interop to interact with legacy vb6 activex components. The components in many cases rely on receiving a context object (which is itself a vb6 activex component) as a parameter. The context object is fairly costly to construct.</p>
<p>Therefore one idea is that a context object is constructed once and stored in asp.net session. However, if this object is just a .net wrapper around an activex component, is it wise or advisible to persist such an object in session?</p>
<p>Additionally the context object contains user specific information, so persisting using .net HttpRuntime Caching could be used, but would require a user specific key. </p>
<p>I understand the other limitations and things you need to be aware of with asp.net session, <a href="http://stackoverflow.com/questions/133236/aspnet-session">aspnet-session question</a>.</p>
<p>To ask the question a slightly different way: are their any issues or problems with storing an .net object that is just a wrapper around a com object? </p>
http://stackoverflow.com/questions/127427/common-naming-conventions/130961#1309611Answer by Jon for Common Naming ConventionsJon2008-09-25T01:21:36Z2008-09-25T13:45:55Z<p>To add on to the answer from @Aku authors of the Framework Design Guidelines have published on online digest version of their guidelines, with an emphasis on naming convetions.</p>
<p><a href="http://blogs.msdn.com/kcwalina/archive/2008/04/09/FDGDigest.aspx" rel="nofollow">Framework Design Guidelines Digest v2</a></p>
<p><a href="http://code.msdn.microsoft.com/fds/Release/ProjectReleases.aspx?ReleaseId=873" rel="nofollow">Download here</a></p>
<p>Consistency is key. Depending on the size of your development team, using a consistent and documented convetion will make it easier to pick up someone elses code and for others to pick up your own code.</p>
http://stackoverflow.com/questions/83313/how-much-time-do-you-spend-in-reflector-net/83479#834791Answer by Jon for How much time do you spend in Reflector? (.NET)Jon2008-09-17T13:56:03Z2008-09-22T20:43:54Z<p>For me it depends. When I'm learning a new technology stack or API I'll typically break out Reflector, and my usage of it goes up.</p>
<p>For instance I recently started working with the Commerce Server 2007 API. I found much of the documentation around the Profile System incomplete or lacking in sufficient detail for my curiousity. So I broke out reflector, and used it to inspect the Commerce Membership Provider implementation (not to mention the implementation of the native asp.net sql membership provider). </p>
<p>Inspecting the code helped me much better understand how and why the membership providers work the way they do, versus just relying on what the documentation said.</p>
<p>I was then able to go on and implement a custom membership provider for commerce server that I believe made up for some of the limitations of the stock commerce server membership provider. Granted my implementation was not looking to be as generic and feature rich, as my goal was to establish "standard" setup and configuration of the commerce user profile for my company.</p>
<p>So when I was initially working with commerce server, I spent probably 20% of my time in reflector. Now that I have better understanding I rarely use it to inspect commerce server at least.</p>
<p>Secondly, when i first started working with asp.net ajax and the ajax web control toolkit. The toolkit is open source. I spend a fair amount of time in the control toolkit code initially, the documentation was ok, but the samples were very weak. Dividing into the source code helped me better understand use its various web controls to their full capacity. It also helped me better and more deeply learn how to work with the asp.net ajax javascript libraries. Initially I spent about probably 10% of my time in the source code of the toolkit.</p>
<p>Day to day how much time do I spend using reflector? Not that much, depends on the project and if the technology involved is familiar or new.</p>
http://stackoverflow.com/questions/116736/what-event-to-trigger-javascript-form-field-validation-and-formatting/116873#1168732Answer by Jon for What Event to Trigger Javascript Form Field Validation and Formatting?Jon2008-09-22T19:15:15Z2008-09-22T19:20:39Z<blockquote>
<p>Validate and format it when the user exits the field. </p>
</blockquote>
<p>Yes. Provide noninvasive feedback to the user if validation or formatting rules fail. By noninasive I mean don't popup an alert or modal dialog box, thereby forcing the user to click something. Rather dynamically display a message adjacent or underneath the field where validation or formatting failed.</p>
<blockquote>
<p>Validate and format on every character entered. </p>
</blockquote>
<p>No. I think that hinders usability. Instead provide the user with a tooltip or some other hint as to what the formatting rules are or validation rules are. E.g. for a "required" field the practically ubiquitious asterisk, and for fields with formatting tell the user up front what the expected format is.</p>
<blockquote>
<p>Intercept keystrokes and prevent the user from entering characters that are wrong. </p>
</blockquote>
<p>If you are going to prevent the user from entering invalid characters, tell the user why you just blocked their input, noninvasively. Also,do not steal focus of the field. </p>
<p>So for me the general principles are:</p>
<ol>
<li>Inform the user up front about your validation and formatting rules.</li>
<li>Do not assume the user is sighted, so keep web accessiblity and screen readers in mind. (Unless you are developing a web site that has a limited target audience such as an Intranet.)</li>
<li>Provide the user with noninvasive feedback, meaning do not make the user click on an alert box or modal dialog upon each failure.</li>
<li>Make it obvious which input box failed validation or formatting rules, and tell the user why their input failed.</li>
<li>Do not steal the mouse/pointer focus, when providing feedback.</li>
<li>Keep tab order in mind, so that when keyboard oriented users complete a field, they can hit tab and go to the next logical input/selection field.</li>
</ol>
http://stackoverflow.com/questions/52702/sharepoint-stream-file-for-preview/77958#779582Answer by Jon for SharePoint stream file for previewJon2008-09-16T22:30:28Z2008-09-16T22:30:28Z<p>Ok, I resolved the problem, several factors at play here.</p>
<p>Firstly this support Microsoft article was beneficial:
<a href="http://support.microsoft.com/default.aspx?scid=kb;en-us;316431" rel="nofollow">Internet Explorer is unable to open Office documents from an SSL Web site</a>.</p>
<blockquote>
<p><em>In order for Internet Explorer to open documents in Office (or any out-of-process, ActiveX document server), Internet Explorer must save the file to the local cache directory and ask the associated application to load the file by using IPersistFile::Load. If the file is not stored to disk, this operation fails.</em></p>
<p><em>When Internet Explorer communicates with a secure Web site through SSL, Internet Explorer enforces any no-cache request. If the header or headers are present, Internet Explorer does not cache the file. Consequently, Office cannot open the file.</em> </p>
</blockquote>
<p>Secondly, something earlier in the page processing was causing the "no-cache" header to get written. So Response.ClearHeaders needed to be added, this cleared out the no-cache header, and the output of the page needs to allow caching.</p>
<p>Thirdly for good measure, also added on Response.End, so that no other processing futher on in the request lifetime attempts to clear the headers I've set and re-add the no-cache header. </p>
<p>Fourthly, discovered that content expiration had been enabled in IIS. I've left it enabled at the web site level, but since this one aspx page will serve as a gateway for downloading the files, I disabled it at the download page level.</p>
<p>So here is the code snippet that works (there are a couple other minor changes which I believe are inconsequential):</p>
<pre><code>System.IO.FileStream fs = new System.IO.FileStream(Server.MapPath(".") + "\\" + "TestMe.doc", System.IO.FileMode.Open);
long byteNum = fs.Length;
byte[] fileBytes = new byte[byteNum];
fs.Read(fileBytes, 0, (int)byteNum);
Response.ClearContent();
Response.ClearHeaders();
Response.AppendHeader("Content-disposition", "attachment; filename=Testme.doc");
Response.Cache.SetCacheability(HttpCacheability.Public);
Response.ContentType = "application/octet-stream";
Response.OutputStream.Write(fileBytes, 0, fileBytes.Length);
Response.Flush();
Response.Close();
fs.Close();
Response.End();
</code></pre>
<p>Keep in mind too, this is just for illustration. The real production code will include exception handling and likely read the file a chunk at a time (perhaps 10K).</p>
<p>Mauro, thanks for catching a detail that was missing from the code as well.</p>
http://stackoverflow.com/questions/52702/sharepoint-stream-file-for-preview2SharePoint stream file for previewJon2008-09-09T19:32:41Z2008-09-16T22:30:28Z
<p>I am looking to stream a file housed in a SharePoint 2003 document library down to the browser. Basically the idea is to open the file as a stream and then to "write" the file stream to the reponse, specifying the content type and content disposition headers. Content disposition is used to preserve the file name, content type of course to clue the browser about what app to open to view the file. </p>
<p>This works all good and fine in a development environment and UAT environment. However, in the production environment, things do not always work as expected,however only with IE6/IE7. FF works great in all environments. </p>
<p>Note that in the production environment SSL is enabled and generally used. (When SSL is not used in the production environment, file streams, is named as expected, and properly dislays.)</p>
<p>Here is a code snippet:</p>
<pre><code>System.IO.FileStream fs = new System.IO.FileStream(Server.MapPath(".") + "\\" + "test.doc", System.IO.FileMode.Open);
long byteNum = fs.Length;
byte[] pdfBytes = new byte[byteNum];
fs.Read(pdfBytes, 0, (int)byteNum);
Response.AppendHeader("Content-disposition", "filename=Testme.doc");
Response.CacheControl = "no-cache";
Response.ContentType = "application/msword; charset=utf-8";
Response.Expires = -1;
Response.OutputStream.Write(pdfBytes, 0, pdfBytes.Length);
Response.Flush();
Response.Close();
fs.Close();
</code></pre>
<p>Like I said, this code snippet works fine on the dev machine and in the UAT environment. A dialog box opens and asks to save, view or cancel Testme.doc. But in production onnly when using SSL, IE 6 & IE7 don't use the name of the attachment. Instead it uses the name of the page that is sending the stream, testheader.apx and then an error is thrown. </p>
<p>IE does provide an advanced setting "Do not save encrypted pages to disk". </p>
<p>I suspect this is part of the problem, the server tells the browser not to cache the file, while IE has the "Do not save encrypted pages to disk" enabled.</p>
<p>Yes I am aware that for larger files, the code snippet above will be a major drag on memory and this implimentation will be problematic. So the real final solution will not open the entire file into a single byte array, but rather will open the file as a stream, and then send the file down to the client in bite size chunks (e.g. perhaps roughly 10K in size).</p>
<p>Anyone else have similar experience "streaming" binary files over ssl? Any suggestions or recommendations?</p>
http://stackoverflow.com/questions/72541/one-update-panel-vs-multiple-update-panels/73080#730805Answer by Jon for One Update Panel vs. Multiple Update PanelsJon2008-09-16T14:41:55Z2008-09-16T14:41:55Z<p>I'd caution that with multiple update panels you'll want to be careful. Make sure you set the UpdateMode to Conditional. Otherwise, when one update panel is "posted back" to the server, all of them are posted back. </p>
<p>I'd highly suggest using these tools</p>
<p><a href="http://projects.nikhilk.net/WebDevHelper/Default.aspx" rel="nofollow">Web Development Helper</a> (here's a brief tutorial <a href="http://www.nikhilk.net/WebDevHelperHTTPTracingUpdates.aspx" rel="nofollow">Web Development Helper and ASP.NET Ajax</a>)</p>
<p><a href="http://www.fiddlertool.com/fiddler/" rel="nofollow">Fiddler</a></p>
http://stackoverflow.com/questions/72406/what-development-book-made-the-most-impact-on-you-as-a-developer/72554#7255418Answer by Jon for What development book made the most impact on you as a developer?Jon2008-09-16T13:59:52Z2008-09-16T13:59:52Z<p><a href="http://www.bookpool.com/ss?qs=patterns+enterprise+architecture" rel="nofollow">Patterns of Enterprise Application Architecture</a></p>
http://stackoverflow.com/questions/63875/sql-server-2005-has-problems-connecting-to-a-website-running-on-the-same-server/66287#662871Answer by Jon for SQL Server 2005 has problems connecting to a website running on the same server.Jon2008-09-15T19:56:25Z2008-09-15T19:56:25Z<blockquote>
<p>The only thing that I'm suspicious on is that the server has two Database engines: SERVER and server\sqlexpress</p>
</blockquote>
<p>I think this is the source of the problem. Which one do you intend to connect to? You need to specify the "instance" you are connecting to.</p>
<p>Assuming you intend to connect to the SERVER instance, you connection string should then look like this (assuming the default instance name):</p>
<p>Data Source=<strong>YOURSERVER\MSSQLSERVER</strong>; Initial Catalog=db; User ID=sa; Password=xxxxx;</p>
<p>Or for sql express the connection string looks like this:
Data Source=<strong>YOURSERVER\sqlexpress</strong>; Initial Catalog=db; User ID=sa; Password=xxxxx;</p>
http://stackoverflow.com/questions/63875/sql-server-2005-has-problems-connecting-to-a-website-running-on-the-same-server/65843#658430Answer by Jon for SQL Server 2005 has problems connecting to a website running on the same server.Jon2008-09-15T19:14:20Z2008-09-15T19:14:20Z<p>Did you try specifying the instance name in the connection string? Apparently sql server express, in particular, is finicky about having the instance name. </p>
<p>I've also started to poke around with the SQL Server Configuration Manager. So did you click into "SQL Server 2005 Network Configuration" and then look at "Protocols for <em>InstanceName</em>"? And you enabled TCP/IP and Named Pipes? </p>
<p>Did you also look at the "SQL Native Client Configuration" --> "Client Protocols", and you see that TCP/IP and Named Pipes is enabled there as well?</p>
<p>Using the SQL Server 2005 Surface Area Configuration tool, click the "Surface Area Configuration for Services and Connections", then under "Database Engine" --> "Remote Connections" what is selected? Since it appears that you are attempting to connect using Named Pipes you will need to make sure that "Local and remote connections" and "using both tcp/ip and named pipes" is selected.</p>
<p>As you probably know, once any changes are made, you have to stop and restart the sql server instance via Management Studio (you don't need to reboot the entire machine, although rebooting the entire machine will get you there).</p>
<p>And my last piece of advice. Step away from this for a while, and get your mind off of it for a few minutes. When you dive back in, you may find something you missed or overlooked before.</p>
http://stackoverflow.com/questions/63875/sql-server-2005-has-problems-connecting-to-a-website-running-on-the-same-server/64222#642220Answer by Jon for SQL Server 2005 has problems connecting to a website running on the same server.Jon2008-09-15T16:02:18Z2008-09-15T16:09:15Z<p>Based on the error looks like the code is attempting to connect using named pipes, rather than TCPIP. You may actually need to specifically indicate in your connection string that the sql provider should connect using tcpip, so your connection string would look like the below.</p>
<p>Using Integrated Authentication (windows):</p>
<p>Integrated Security=SSPI; Data Source=<em>SERVERNAME</em>; Initial Catalog=<em>DATABASENAME</em>; <strong>Network Library=DBMSSOCN</strong>;</p>
<p>Using SQL Authentication:</p>
<p>UID=<em>USERNAME</em>; PWD=<em>PASSWORD</em>; Data Source=<em>SERVERNAME</em>; Initial Catalog=<em>DATABASENAME</em>; <strong>Network Library=DBMSSOCN</strong>;</p>
<p>I've seen something akin to this happen before, where for some reason "named pipes" is used by default as the transport/connection layer, especially since both the web application and sql server are running on the same machine. I generally always use tcpip as the transport, or network library.</p>
<p>Another troubleshooting technique is to use a UDL (or data link file) to troubleshoot the connection. This allows you to switch between connection providers (ODBC, OLEDB, etc) and to set other connection options.</p>
<ol>
<li>On the desk top of the machine right click and choose new -> text document.</li>
<li>Rename the *.txt file to TestConnect.udl (name doesn't matter just needs to be .udl extension). You should see the icon change from a text file icon to an icon that shows a computer on top of a data grid, or something like that (in other words windows should have an icon for it.).</li>
<li>Now double click the file and you will see a "Data Link Properties" applet appear.</li>
<li>Click the Provider tab, and you will see a list of different connection providers. I'd start by just choosing "Microsoft OLE DB Provider for SQL Server". We can use this to confirm that OLE DB can connect or not.</li>
<li>Click next, and enter the servername or ip address. Select Windows NT Integrated security. (You can always come back and change it to use a sql login.) At this point you can click "Test Connection". If the connection succeeds, then select a database name from the drop down list.</li>
<li>Lastly, if the connection fails, select the "All" tab, and then look for "Network Library" and edit its value, setting it to "DBMSSOCN".</li>
<li>Go back to the connection tab and click "test connection" again.</li>
<li>Repeat steps 4 and 5 this time with the "SQL Native Client" selected.</li>
</ol>
<p>Hope this helps.</p>
http://stackoverflow.com/questions/59986/xmlserialization-in-c/59994#599941Answer by Jon for XMLSerialization in C#Jon2008-09-12T21:21:39Z2008-09-12T21:21:39Z<p>Try adding IXmlSerializable to your IMessageHeader declaration, although I don't think that will work.</p>
<p>From what I recall, the .net xml serializer only works for concrete classes that have a default constructor.</p>
http://stackoverflow.com/questions/59951/asp-server-variable-not-working-on-local-iis/59979#599792Answer by Jon for ASP Server variable not working on local IISJon2008-09-12T21:13:13Z2008-09-12T21:13:13Z<p>What authentication do you have enabled in IIS? Anonmyous, Basic, Digest, Integrated Windows? Sounds to me like anonymous access is enabled/allowed, and nothing else. This would means that LOGON_USER is not populated. </p>
<p>When you access your local IIS, trying using <a href="http://127.0.0.1" rel="nofollow">http://127.0.0.1</a> in particular if you use IE. IE will recognize "localhost" as being in your local trusted zone and will automatically pass your XP login credentials through when Integrated Windows auth is enabled.</p>
http://stackoverflow.com/questions/36407/firefox-add-ons/52280#522808Answer by Jon for Firefox add-onsJon2008-09-09T16:25:43Z2008-09-09T16:25:43Z<p>Here are mine (developer centric):</p>
<ol>
<li><p><a href="http://getfirebug.com/" rel="nofollow">FireBug</a> - a myriad of productivity enhancing tools, includes javascript debugger, DOM inspector, allows you to edit the CSS/HTML on the fly which is highly valuable for troubleshooing layout and display problems. </p></li>
<li><p><a href="https://addons.mozilla.org/en-US/firefox/addon/60" rel="nofollow">Web Developer</a> - again another great developer productivity tool. I mostly use it for quickly validating pages, disabling javascript (yes I disable javascript sometimes, don't you?), viewing cookies, etc.</p></li>
<li><p><a href="https://addons.mozilla.org/en-US/firefox/addon/966" rel="nofollow">Tamper Data</a> - lets you tamper with http headers, form values, cookies, etc. prior to posting back to a page, or getting a page. Incredibly valuable for poking and prodding your pages, and seeing how your web app responds when used with slightly malicious intent.</p></li>
<li><p><a href="https://addons.mozilla.org/en-US/firefox/addon/216" rel="nofollow">JavaScript Debugger</a> - has a few more features than javascript debugger provided by firebug. Although I must admit, I sparingly use this one since firebug has largely won me over.</p></li>
<li><p><a href="https://addons.mozilla.org/en-US/firefox/addon/3829" rel="nofollow">Live HTTP Headers</a> - invaluable for troubleshooting, use it frequently. Lets you spy on all HTTP headers communicated back and forth between client and server. It has helped me track down nefarious problems, especially when debugging issues when deploying your web app between environments.</p></li>
<li><p><a href="https://addons.mozilla.org/en-US/firefox/addon/4276" rel="nofollow">Header Spy</a> - nice addon for the geeky types, shows you the web server and platform a web site runs on in the status bar.</p></li>
<li><p><a href="https://addons.mozilla.org/en-US/firefox/addon/539" rel="nofollow">MeasureIt</a> - I don't use this all too frequently, but I've still found it valuable from time to time.</p></li>
<li><p><a href="https://addons.mozilla.org/en-US/firefox/addon/271" rel="nofollow">ColorZilla</a> - again, not something I use all that frequently, but when I need it, I need it. Valuable when you want to know a color and you don't want to dig through a CSS file, or open up a graphics editing app to get a color embedded in some image.</p></li>
<li><p><a href="https://addons.mozilla.org/en-US/firefox/addon/573" rel="nofollow">Add N Edit Cookies</a> - this has been a great debugging tool in web farms where the load balancer writes a cookie, and uses the cookie value to keep your session "sticky". It allowed me to switch at will between servers to track down problems on specific machine. Also a good tool if you want to try to mess with a site that uses cookies to track your login status/account, and you want to see how your code responds to malformed or hacked info.</p></li>
<li><p><a href="https://addons.mozilla.org/en-US/firefox/addon/1944" rel="nofollow">Yellowpipe Lynx Viewer Tool</a> - yeah I know what your thinking, lynx, who needs it, its so 1994. But if you are developing a site that needs to take web accessibility into account (meaning accessible to users with visual impairments who use screen readers), or if you need to get a sense of how a web spider/indexer "sees" your site, this tool is invaluable. Granted, you could always just go out and grab Lynx for yourself<a href="http://www.vordweb.co.uk/standards/download_lynx.htm" rel="nofollow">here's the windows xp port that I use</a>.</p></li>
</ol>
<p>I've got a handful of other addons that I've used from time to time that I'll just quickly mention: FireFTP (one I installed wasn't stable and I've not tried a newer release), Html Validator (also found this one unstable, least back when I installed like a year ago), IE Tab (I usually just have both IE and FireFox open concurrently, but that is just me, I know many others that find this addon useful).</p>
http://stackoverflow.com/questions/46489/referencing-embedded-resources-from-other-resources-in-c/47750#477502Answer by Jon for Referencing Embedded resources from other resources in c#Jon2008-09-06T19:13:54Z2008-09-06T19:13:54Z<p>I concur with Jason's assessment of the initial solution I proposed, it can definitely be improved. My solution represents an older school javascript mentality (read, pre the emergence of ajax and json). There are always better ways to solve a problem, which one of the reasons why stackoverflow is so cool. Collectively we are better at the craft of programming than anyone of us on our own.</p>
<p>Based on Jason's ideas I'd revise my initial code, and revise some of what Jason suggested. Implement a C# class with two properties, the img resource "id" and a property that contains the WebResourceUrl. Then, where I differ some from Jason is that rather than using a Dictionary I'd propose using a List, which you can then in turn serialize to JSON (using <a href="http://msdn.microsoft.com/en-us/library/bb412170.aspx" rel="nofollow">DataContractJsonSerializer</a>), and emit the JSON as the dynamic script, rather than manually generating the javascript using a string buider. </p>
<p>Why a List? I think you may find that dictionaries when serialized to json, at least using the DataContractJsonSerializer (fyi available with the 3.5 framework only, with the 2.0 or 3.0 framework you'd need to bolt on aspnet ajax and use is json serializer), are a little more cumbersome to work with than how a list would serialize. Although that is subjective. </p>
<p>There are implications too with your client side code. Now on the client side you'll have an array of the json serialized MyImageResourceClass instances. You'd need to iterate through this array creating your "img" tags as you go.</p>
<p>Hopefully these ideas and suggestions can help get you going! And no doubt there are other solutions. I'm interested to see what comes of this.</p>
http://stackoverflow.com/questions/46489/referencing-embedded-resources-from-other-resources-in-c/47242#472422Answer by Jon for Referencing Embedded resources from other resources in c#Jon2008-09-06T03:57:02Z2008-09-06T03:57:02Z<p>I'd suggest that you emit the web resources as a dynamic javascript associative array.</p>
<p>Server side code:</p>
<pre><code>StringBuilder script = new StringBuilder();
script.Append("var imgResources = {};");
script.AppendFormat("imgResources['{0}'] = '{1}';",
"drophint",
Page.ClientScript.GetWebResourceUrl(Page.GetType(), "assembly.location.dragdrophint.gif"));
script.AppendFormat("imgResources['{0}'] = '{1}';",
"anotherimg",
Page.ClientScript.GetWebResourceUrl(Page.GetType(), "assembly.location.anotherimg.gif"));
Page.ClientScript.RegisterClientScriptBlock(
Page.GetType(),
"imgResources",
script.ToString(),
true);
</code></pre>
<p>Then your client side code looks like this:</p>
<pre><code>this.drophint = document.createElement('img');
this.drophint.src = imgResources['drophint'];
this.anotherimg = document.createElement('img');
this.anotherimg.src = imgResources['anotherimg'];
</code></pre>
<p>Hope this helps.</p>
http://stackoverflow.com/questions/35479/exception-in-web-service-locks-dll-and-prevents-publishing-workaround/47221#472212Answer by Jon for Exception in Web Service locks DLL and prevents publishing. Workaround?Jon2008-09-06T03:09:26Z2008-09-06T03:09:26Z<p>Using the IISReset command line tool will only restart IIS on the local machine, not on a remote server to which you are publishing.</p>
<p>Assuming that you are publishing to a Windows 2003 server, I'd suggest trying the slightly less drastic step of stopping and restarting the IIS AppPool in the web site or virtual folder in which the web service runs. (That way you are not taking all sites that run on the target server offline.) This too assumes that the web service runs in its own app pool. Ideally it should, so you keep it isolated.</p>
<p>I'd recommend getting away from using the Publishing process and to look into using a Web Deployment Project. Here is a post on ScottGu's blog detailing <a href="http://weblogs.asp.net/scottgu/archive/2005/11/06/429723.aspx" rel="nofollow" title="VS 2005 Web Deployment Projects">VS 2005 Web Deployment Projects</a>.</p>
<p>The advantage to the Web Deployment Project approach is that it provides you with all the power and capability of MSbuild, as it is really just a convenience wrapper around MSBuild. Here's a post from the MSBuild team about <a href="http://blogs.msdn.com/msbuild/archive/2005/10/12/480212.aspx" rel="nofollow">pre-build and post-build capabilities</a></p>
<p>Hope this helps.</p>
http://stackoverflow.com/questions/44359/how-do-i-get-the-current-location-of-an-iframe/47190#471901Answer by Jon for How do I get the current location of an iframe?Jon2008-09-06T02:10:05Z2008-09-06T02:10:05Z<p>Ok, so in this application, there is an iframe in which the user is supplied with links or some capacity that allows that iframe to browse to some external site. You are then looking to capture the URL to which the user has browsed.</p>
<p>Something to keep in mind. Since the URL is to an external source, you will be limited in how much you can interact with this iframe via javascript (or an client side access for that matter), this is known as browser cross-domain security, as apparently you have discovered. There are clever work arounds, as presented here <a href="http://www.hackszine.com/blog/archive/2007/11/crossdomain_crossframe_javascr.html" rel="nofollow" title="Cross-domain, cross-frame Javascript">Cross-domain, cross-frame Javascript</a>, although I do not think this work around applies in this case. </p>
<p>About all you can access is the location, as you need.</p>
<p>I would suggest making the code presented more resilitant and less error prone. Try browsing the web sometime with IE or FF configured to show javascript errors. You will be surprised just how many javascript errors are thrown, largely because there is a lot of error prone javascript out there, which just continues to proliferate.</p>
<p>This solution assumes that the iframe in question is the same "window" context where you are running the javascript. (Meaning, it is not embedded within another frame or iframe, in which case, the javascript code gets more involved, and you likely need to recursively search through the window hierarchy.)</p>
<pre><code><iframe name='frmExternal' id='frmExternal' src='http://www.stackoverflow.com'></frame>
<input type='text' id='txtUrl' />
<input type='button' id='btnGetUrl' value='Get URL' onclick='GetIFrameUrl();' />
<script language='javascript' type='text/javascript'>
function GetIFrameUrl()
{
if (!document.getElementById)
{
return;
}
var frm = document.getElementById("frmExternal");
var txt = document.getElementById("txtUrl");
if (frm == null || txt == null)
{
// not great user feedback but slightly better than obnoxious script errors
alert("There was a problem with this page, please refresh.");
return;
}
txt.value = frm.src;
}
</script>
</code></pre>
<p>Hope this helps.</p>
http://stackoverflow.com/questions/45827/how-do-you-automatically-set-the-focus-to-a-textbox-when-a-web-page-loads/45887#458874Answer by Jon for How do you automatically set the focus to a textbox when a web page loads?Jon2008-09-05T14:05:10Z2008-09-05T14:14:26Z<p>Using plain vanilla html and javascript</p>
<pre><code><input type='text' id='txtMyInputBox' />
<script language='javascript' type='text/javascript'>
function SetFocus()
{
// safety check, make sure its a post 1999 browser
if (!document.getElementById)
{
return;
}
var txtMyInputBoxElement = document.getElementById("txtMyInputBox");
if (txtMyInputBoxElement != null)
{
txtMyInputBoxElement.focus();
}
}
SetFocus();
</script>
</code></pre>
<p>For those out there using the .net framework and asp.net 2.0 or above, its trivial. If you are using older versions of the framework, you'd need to write some javascript similar to above.</p>
<p>In your OnLoad handler (generally page_load if you are using the stock page template supplied with visual studio) you can use:</p>
<p>C#</p>
<pre><code>protected void PageLoad(object sender, EventArgs e)
{
Page.SetFocus(txtMyInputBox);
}
</code></pre>
<p>VB.NET</p>
<pre><code>Protected Sub PageLoad(sender as Object, e as EventArgs)
Page.SetFocus(txtMyInputBox)
End Sub
</code></pre>
<p>(* Note I removed the underscore character from the function name that is generally Page_Load since in a code block it refused to render properly! I could not see in the markup documentation how to get underscores to render unescaped.)</p>
<p>Hope this helps.</p>
http://stackoverflow.com/questions/1559392/best-method-for-importing-csv-or-excel-file-to-sql-server-2005-using-net-mvc-vie/1559419#1559419Comment by Jon on Best method for importing csv or excel file to SQL Server 2005 using .net MVC viewJon2009-12-14T19:47:49Z2009-12-14T19:47:49ZIs this really advisable if you have say 1,000,000 records or more?http://stackoverflow.com/questions/257112/autoeventwireup-performance-cost/257123#257123Comment by Jon on autoeventwireup performance costJon2008-11-05T20:05:22Z2008-11-05T20:05:22Zwhat evidence do you have for this claim?http://stackoverflow.com/questions/184840/asp-net-session-and-storing-objects-that-use-com-interop/185051#185051Comment by Jon on ASP.NET session and storing objects that use COM interopJon2008-10-09T01:54:32Z2008-10-09T01:54:32ZThanks Mike, very useful information.http://stackoverflow.com/questions/184840/asp-net-session-and-storing-objects-that-use-com-interop/184846#184846Comment by Jon on ASP.NET session and storing objects that use COM interopJon2008-10-08T20:54:01Z2008-10-08T20:54:01ZIt contains user specific information. Therefore cannot be shared across sessions. Should have made that more clear.http://stackoverflow.com/questions/159356/why-is-f-so-special/159589#159589Comment by Jon on Why is F# so special?Jon2008-10-01T21:59:42Z2008-10-01T21:59:42ZThanks Vijesh, our questions are similar in nature.http://stackoverflow.com/questions/159356/why-is-f-so-special/159420#159420Comment by Jon on Why is F# so special?Jon2008-10-01T20:31:42Z2008-10-01T20:31:42ZI went through that paradigm shift some 6 years ago, moving from the old world of classic asp/VB6 to c#, asp.net and the .net framework. Time to soon shift again, or at least add another tool to the tool belt.http://stackoverflow.com/questions/159356/why-is-f-so-special/159424#159424Comment by Jon on Why is F# so special?Jon2008-10-01T20:07:16Z2008-10-01T20:07:16ZOk, so assuming equally skilled C# and F# programmers, given the same spec for an application to code. The F# programmer will be able to produce more features with fewer bugs in a shorter amount of time?http://stackoverflow.com/questions/159356/why-is-f-so-special/159420#159420Comment by Jon on Why is F# so special?Jon2008-10-01T20:02:08Z2008-10-01T20:02:08ZI generally program business oriented applications for the web, using asp.net and class libraries. I'm not sure F# is really the "tool of choice" for this. For me I'm not yet convinced F# is better for what I need than C#. Granted I need to learn more about F# before I can really decide. Thanks!http://stackoverflow.com/questions/149876/how-to-transfer-sql-encrypted-data-between-sql-server-2005-databases/151548#151548Comment by Jon on How to transfer sql encrypted data between SQL Server 2005 databases?Jon2008-09-30T12:22:42Z2008-09-30T12:22:42ZThanks Mitch, very useful. And yes, the restore of the backup to the new database worked. I was able to decrypt data in the new database formerly encrypted in the old database.http://stackoverflow.com/questions/36432/commenting-code/36450#36450Comment by Jon on Commenting codeJon2008-09-25T01:34:32Z2008-09-25T01:34:32ZFor those who use Visual Studio, ReSharper is a great tool to help you keep your comments in line with your code. In particular when paramater comments and names are out of sync, ReSharper highlights and clearly flags offending comments.http://stackoverflow.com/questions/127427/common-naming-conventions/127444#127444Comment by Jon on Common Naming ConventionsJon2008-09-25T01:14:14Z2008-09-25T01:14:14ZHere, here, I agree too. http://stackoverflow.com/questions/59926/mssql-server-2005-encryption-asp-net-and-stored-procedures/60374#60374Comment by Jon on MSSQL Server 2005 Encryption, asp.net and stored proceduresJon2008-09-16T03:45:09Z2008-09-16T03:45:09ZAdditionally, regarding transactions, my preference is generally to isolate those to the server side. My tendency is to believe that will scale better, although I cannot prove that claim.http://stackoverflow.com/questions/59926/mssql-server-2005-encryption-asp-net-and-stored-procedures/60374#60374Comment by Jon on MSSQL Server 2005 Encryption, asp.net and stored proceduresJon2008-09-16T03:42:57Z2008-09-16T03:42:57ZThanks Tyler. I appreciate the feedback. However, I have to think that executing a single command (sproc with open key, various sql statements, and closing the key) will perform better than executing three commands.http://stackoverflow.com/questions/59926/mssql-server-2005-encryption-asp-net-and-stored-procedures/60071#60071Comment by Jon on MSSQL Server 2005 Encryption, asp.net and stored proceduresJon2008-09-16T03:37:51Z2008-09-16T03:37:51ZAbout #2, I have a base "data access" class, that makes opening and closing the encryption key pretty much transparent. So I'm not worried too much about complexity, more about the additional database traffic, with each interaction with the database now requiring executing at least three commands.http://stackoverflow.com/questions/59926/mssql-server-2005-encryption-asp-net-and-stored-procedures/60104#60104Comment by Jon on MSSQL Server 2005 Encryption, asp.net and stored proceduresJon2008-09-16T03:30:35Z2008-09-16T03:30:35ZVery cool. Thanks Brannon.