User chrisofspades - Stack Overflowmost recent 30 from stackoverflow.com2009-12-07T01:30:00Zhttp://stackoverflow.com/feeds/user/2614http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/230662/insert-default-value-when-parameter-is-null5Insert default value when parameter is nullchrisofspades2008-10-23T17:34:49Z2009-06-16T21:00:21Z
<p>I have a table that has a column with a default value:</p>
<pre><code>create table t (
value varchar(50) default ('something')
)
</code></pre>
<p>I'm using a stored procedure to insert values into this table:</p>
<pre><code>create procedure t_insert (
@value varchar(50) = null
)
as
insert into t (value) values (@value)
</code></pre>
<p>The question is, how do I get it to use the default when <code>@value</code> is <code>null</code>? I tried:</p>
<pre><code>insert into t (value) values ( isnull(@value, default) )
</code></pre>
<p>That obviously didn't work. Also tried a <code>case</code> statement, but that didn't fair well either. Any other suggestions? Am I going about this the wrong way?</p>
<p>Update: I'm trying to accomplish this <strong>without</strong> having to:</p>
<ol>
<li>maintain the <code>default</code> value in multiple places, and</li>
<li>use multiple <code>insert</code> statements.</li>
</ol>
<p>If this isn't possible, well I guess I'll just have to live with it. It just seems that something this should be attainable.</p>
<p>Note: my actual table has more than one column. I was just quickly writing an example.</p>
http://stackoverflow.com/questions/358185/how-would-i-dynamically-add-a-new-xml-node-based-on-the-values-of-other-nodes1How would I dynamically add a new XML node based on the values of other nodes?chrisofspades2008-12-11T01:13:46Z2008-12-12T13:38:15Z
<p><strong>Background:</strong><br />
I have an old web CMS that stored content in XML files, one XML file per page. I am in the process of importing content from that CMS into a new one, and I know I'm going to need to massage the existing XML in order for the import process to work properly.</p>
<p>Existing XML:</p>
<pre><code><page>
<audience1>true</audience>
<audience2>false</audience>
<audience3>true</audience>
<audience4>false</audience>
<audience5>true</audience>
</page>
</code></pre>
<p>Desired XML:</p>
<pre><code><page>
<audience1>true</audience>
<audience2>false</audience>
<audience3>true</audience>
<audience4>false</audience>
<audience5>true</audience>
<audiences>1,3,5</audiences>
</page>
</code></pre>
<p><strong>Question:</strong><br />
The desired XML adds the node, with a comma-delimited list of the other nodes that have a "true" value. I need to achieve the desired XML for several files, so what is the best way to accomplish this? Some of my ideas:</p>
<ul>
<li>Use a text editor with a regex find/replace. But what expression? I wouldn't even know where to begin.</li>
<li>Use a programming language like ASP.NET to parse the files and append the desired node. Again, not sure where to begin here as my .NET skills are only average.</li>
</ul>
<p>Suggestions?</p>
http://stackoverflow.com/questions/82391/should-tables-be-avoided-in-html-at-any-cost/104059#1040590Answer by chrisofspades for Should Tables be avoided in HTML at any cost?chrisofspades2008-09-19T17:50:11Z2008-09-19T17:50:11Z<p>@toddhd, advocating the use of tables for layout simply to save time is a cop out. If time is the issue, then you can quickly create a columnar layout without tables using a framework like <a href="http://code.google.com/p/blueprintcss/" rel="nofollow">Blueprint CSS</a> or <a href="http://960.gs/" rel="nofollow">960 Grid</a>.</p>
http://stackoverflow.com/questions/103765/how-do-i-persist-the-value-of-a-label-through-a-response-redirect/103788#1037880Answer by chrisofspades for How do I persist the value of a label through a response.redirect?chrisofspades2008-09-19T17:13:47Z2008-09-19T17:13:47Z<p>Why exactly are you doing a redirect in this scenario? It seems unnecessary.</p>
http://stackoverflow.com/questions/54237/is-there-a-way-to-highlight-the-target-of-a-bookmark-www-site-com-page-htmboo/55530#555302Answer by chrisofspades for Is there a way to highlight the target of a bookmark? (www.site.com/page.htm#bookmark) ?chrisofspades2008-09-11T00:05:47Z2008-09-11T00:05:47Z<p>You can also use the <code>target</code> pseudo-class in CSS:</p>
<pre><code><html>
<head>
<style type="text/css">
div#test:target {
background-color: yellow;
}
</style>
</head>
<body>
<p><b><a href="#test">Link</a></b></p>
<div id="test">
Target
</div>
</body>
</html>
</code></pre>
<p>Unfortunately the target pseudo class isn't supported by IE or Opera, so if you're looking for a universal solution here this might not be sufficient.</p>
http://stackoverflow.com/questions/55363/best-tools-for-creating-website-wireframes/55494#554940Answer by chrisofspades for Best tools for creating website wireframeschrisofspades2008-09-10T23:33:58Z2008-09-10T23:33:58Z<p>Traditionally, I've heard Fireworks, Illustrator, OmniGraffle, and Photoshop tend to work pretty well. Here are some articles related to wireframing:</p>
<ul>
<li><a href="http://404uxd.com/2007/09/20/luis-stole-my-elephant-gun" rel="nofollow">http://404uxd.com/2007/09/20/luis-stole-my-elephant-gun</a></li>
<li><a href="http://www.thinkvitamin.com/features/design/deliverables-that-work-design-description-documents" rel="nofollow">http://www.thinkvitamin.com/features/design/deliverables-that-work-design-description-documents</a></li>
<li><a href="http://404uxd.com/2008/02/28/the-fine-art-of-wireframes" rel="nofollow">http://404uxd.com/2008/02/28/the-fine-art-of-wireframes</a></li>
<li><a href="http://mondaybynoon.com/2007/12/03/improving-your-process-how-wireframes-can-help/" rel="nofollow">http://mondaybynoon.com/2007/12/03/improving-your-process-how-wireframes-can-help/</a></li>
</ul>
http://stackoverflow.com/questions/50931/redirecting-non-www-url-to-www5Redirecting non-www URL to wwwchrisofspades2008-09-08T23:14:45Z2008-09-09T21:20:54Z
<p>I'm using <a href="http://www.helicontech.com/isapi_rewrite/" rel="nofollow">Helicon's ISAPI Rewrite 3</a>, which basically enables .htaccess in IIS. I need to redirect a non-www URL to the www version, i.e. example.com should redirect to www.example.com. I used the following rule from the examples but it affects subdomains:</p>
<pre><code>RewriteCond %{HTTPS} (on)?
RewriteCond %{HTTP:Host} ^(?!www\.)(.+)$ [NC]
RewriteCond %{REQUEST_URI} (.+)
RewriteRule .? http(?%1s)://www.%2%3 [R=301,L]
</code></pre>
<p>This works for most part, but is also redirect sub.example.com to www.sub.example.com. How can I rewrite the above rule so that subdomains do not get redirected?</p>
http://stackoverflow.com/questions/52360/how-can-you-determine-what-versions-of-net-are-running-on-a-system/52402#524020Answer by chrisofspades for How can you determine what version(s) of .NET are running on a system?chrisofspades2008-09-09T17:22:47Z2008-09-09T17:22:47Z<p>If you're using IIS6 and above, open up IIS and click on Web Service Extensions. It will list each framework installed. Granted, .NET 3.0 and 3.5 are both based on the 2.0 framework.</p>
http://stackoverflow.com/questions/52344/how-to-detect-using-aspx-if-javascript-is-enabled-on-browser/52379#523791Answer by chrisofspades for How to detect (using .ASPX) if Javascript is enabled on browserchrisofspades2008-09-09T17:16:41Z2008-09-09T17:16:41Z<p>In .net, you can use <code>Request.Browser.JavaScript</code> to detect if the browser supports JavaScript. However, the user may still have Javascript disabled. An ugly way to check to see if Javascript is enabled, is to use <code>window.location</code> to redirect to page.aspx?jscript=true, and then check <code>Request.Querystring</code> for that value.</p>
http://stackoverflow.com/questions/50931/redirecting-non-www-url-to-www/52235#522350Answer by chrisofspades for Redirecting non-www URL to wwwchrisofspades2008-09-09T15:58:02Z2008-09-09T16:04:33Z<p>@<a href="#50948" rel="nofollow">Vinko </a>- are you saying I should replace line 2 with your condition, or add your condition on a new line? Will adding it on a new line affect the <code>RewriteRule</code> using the %1, %2, and %3?</p>
http://stackoverflow.com/questions/24470/sql-server-pivot-examples/24526#245261Answer by chrisofspades for SQL Server PIVOT examples?chrisofspades2008-08-23T19:29:08Z2008-08-23T19:29:08Z<p>Here is a great discussion on pivots: <a href="http://www.sqlteam.com/forums/topic.asp?TOPIC_ID=6216" rel="nofollow"><a href="http://www.sqlteam.com/forums/topic.asp?TOPIC_ID=6216" rel="nofollow">http://www.sqlteam.com/forums/topic.asp?TOPIC_ID=6216</a></a></p>
<p>They discuss using <a href="http://www.sqlteam.com/forums/topic.asp?TOPIC_ID=6216" rel="nofollow">this stored procedure</a> to create the pivot. I've used it several times and it works great.</p>
http://stackoverflow.com/questions/22519/how-do-i-secure-a-folder-used-to-let-users-upload-files/24401#244010Answer by chrisofspades for How do I secure a folder used to let users upload files?chrisofspades2008-08-23T17:17:00Z2008-08-23T17:17:00Z<p>You'll have to grant write permissions, but you can check the file's mime type to ensure an image. You can use FSO as so:</p>
<pre><code>set fs=Server.CreateObject("Scripting.FileSystemObject")
set f=fs.GetFile("upload.jpg")
'image mime types or image/jpeg or image/gif, so just check to see if "image" is instr
if instr(f.type, "image") = 0 then
f.delete
end if
set f=nothing
set fs=nothing
</code></pre>
<p>Also, most upload COM objects have a type property that you could check against before writing the file.</p>
http://stackoverflow.com/questions/14697/what-url-rewriter-do-you-use-for-asp-net/24355#243551Answer by chrisofspades for What Url rewriter do you use for ASP.Net?chrisofspades2008-08-23T16:36:40Z2008-08-23T16:36:40Z<p>I just installed <a href="http://www.helicontech.com/isapi_rewrite/" rel="nofollow">Helicon's ISAPI Rewrite 3</a>. Works exactly like htaccess. I'm diggin it so far.</p>
http://stackoverflow.com/questions/230662/insert-default-value-when-parameter-is-null/230717#230717Comment by chrisofspades on Insert default value when parameter is nullchrisofspades2008-10-23T20:46:51Z2008-10-23T20:46:51ZI'm positive. I even took your sample code and still had the same error.http://stackoverflow.com/questions/230662/insert-default-value-when-parameter-is-null/230717#230717Comment by chrisofspades on Insert default value when parameter is nullchrisofspades2008-10-23T18:21:39Z2008-10-23T18:21:39ZI tried this method and received the error: 'column does not allow nulls'.http://stackoverflow.com/questions/230662/insert-default-value-when-parameter-is-null/230681#230681Comment by chrisofspades on Insert default value when parameter is nullchrisofspades2008-10-23T17:49:50Z2008-10-23T17:49:50ZThat would require writing an IF statement to determine if @value is null, which would lead to having two INSERT statements, which I'm hoping is avoidable.
Note: my actual table has more than one column. I was just quickly writing an example.http://stackoverflow.com/questions/230662/insert-default-value-when-parameter-is-null/230678#230678Comment by chrisofspades on Insert default value when parameter is nullchrisofspades2008-10-23T17:46:45Z2008-10-23T17:46:45ZPrecisely Tom, and I'd like to avoid doing that.http://stackoverflow.com/questions/103765/how-do-i-persist-the-value-of-a-label-through-a-response-redirect/103788#103788Comment by chrisofspades on How do I persist the value of a label through a response.redirect?chrisofspades2008-09-19T17:35:53Z2008-09-19T17:35:53ZThe other answers pretty much sum up why I felt the redirect was unnecessary, but I wanted to see if there were other reasons you took that approach. Academically, it didn't make sense to me, but sometimes we're forced to do things in an unorthodox manner.