User Wayne - Stack Overflowmost recent 30 from stackoverflow.com2009-11-28T11:39:49Zhttp://stackoverflow.com/feeds/user/8236http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/123092/underused-features-of-html19Underused Features of HTMLWayne2008-09-23T19:06:02Z2009-02-22T14:00:57Z
<p>Yes, many web developers live and breathe HTML, but there are still tags and tricks that aren't used as often as they could be. What are some of your favorites?</p>
http://stackoverflow.com/questions/205190/select-from-same-table-as-an-insert-or-update/205262#2052620Answer by Wayne for Select from same table as an Insert or UpdateWayne2008-10-15T15:48:58Z2008-10-15T15:48:58Z<p>I think your statement should look like this...</p>
<pre><code>INSERT INTO `aTable` (`A`,`B`)
SELECT MAX(`A`)^2,'name' FROM `aTable`
</code></pre>
http://stackoverflow.com/questions/201724/easy-way-to-turn-javascript-array-into-comma-separated-list/201733#20173311Answer by Wayne for Easy way to turn Javascript array into comma-separated list?Wayne2008-10-14T15:48:48Z2008-10-14T15:48:48Z<p>The <a href="http://www.w3schools.com/jsref/jsref_join.asp" rel="nofollow">join</a> function:</p>
<pre><code>var arr = new Array(3);
arr[0] = "Zero";
arr[1] = "One";
arr[2] = "Two";
document.write(arr.join(","));
</code></pre>
http://stackoverflow.com/questions/201530/how-should-i-add-multiple-identical-elements-to-a-div-with-jquery/201564#2015642Answer by Wayne for How should I add multiple identical elements to a div with jQueryWayne2008-10-14T15:07:03Z2008-10-14T15:07:03Z<p>You can use a regular loop with the Jquery <a href="http://docs.jquery.com/Manipulation/append#content" rel="nofollow">append</a> function.</p>
<pre><code>for(i=0;i<10; i++){
$('#container').append("<div></div>");
}
</code></pre>
http://stackoverflow.com/questions/199142/passing-a-outside-variable-into-a-aspsqldatasource-tag-asp-net-2-0/199148#1991483Answer by Wayne for Passing a outside variable into a <asp:sqldatasource> tag. ASP.NET 2.0Wayne2008-10-13T21:51:20Z2008-10-13T21:57:06Z<p>I believe Oracle uses the colon ":", not the at-symbol "@".
<hr>
"user" is probably a reserved word. Change it to "userID", or something similar.</p>
http://stackoverflow.com/questions/198670/jquery-select-box-and-loop-help/198950#1989503Answer by Wayne for JQuery Select Box and Loop HelpWayne2008-10-13T20:38:58Z2008-10-13T20:38:58Z<p>I was able to replicate your results for all selects on a page in IE7 using this code, which I find much simpler than the span method you are using, but you can replace the "resize" function with whatever code suits your needs.</p>
<pre><code>function resize(selectId, size){
var objSelect = document.getElementById(selectId);
var maxlength = 0;
if(objSelect){
if(size){
objSelect.style.width = size;
} else {
for (var i=0; i< objSelect.options.length; i++){
if (objSelect[i].text.length > maxlength){
maxlength = objSelect[i].text.length;
}
}
objSelect.style.width = maxlength * 9;
}
}
}
$(document).ready(function(){
$("select").focus(function(){
resize($(this).attr("id"));
});
$("select").blur(function(){
resize($(this).attr("id"), 40);
});
});
</code></pre>
http://stackoverflow.com/questions/193540/has-anyone-used-created-fisheye-table-columns/193857#1938572Answer by Wayne for Has anyone used/created "fisheye" table columns?Wayne2008-10-11T08:38:43Z2008-10-11T22:28:16Z<p>While not a table-based solution, this is a quick proof-of-concept I whipped up using JQuery just to see if I could do a column based accordion effect. Maybe it can give you some inspiration...</p>
<pre><code><html>
<head>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript">
$(document).ready(function() {
$("#table > div:even").addClass("row");
$("#table > div:odd").addClass("altrow");
$("#table > div > div").addClass("normal");
$("div[class*='col']").hover(
function () {
var myclass = $(this).attr("class");
$("div[class*='col']").css("width","20px");
$("div[class*='"+myclass+"']").css("width","80px").css("overflow","auto");
},
function () {
$("div[class*='col']").css("width","40px").css("overflow","hidden");
}
)
});
</script>
<style type="text/css">
.row{
background-color: #eee;
float:left;
}
.altrow{
background-color: #fff;
float:left;
}
.normal{
width: 40px;
overflow: hidden;
float:left;
padding :3px;
text-align:center;
}
</style>
</head>
<body>
<div id="table">
<div>
<div class="col1">Column1</div>
<div class="col2">Column2</div>
<div class="col3">Column3</div>
</div>
<br style="clear:both" />
<div>
<div class="col1">Column1</div>
<div class="col2">Column2</div>
<div class="col3">Column3</div>
</div>
<br style="clear:both" />
<div>
<div class="col1">Column1</div>
<div class="col2">Column2</div>
<div class="col3">Column3</div>
</div>
</div>
</body>
</html>
</code></pre>
http://stackoverflow.com/questions/193773/what-are-the-most-important-parts-of-the-net-framework-for-a-beginner/193793#193793-1Answer by Wayne for What are the most important parts of the .Net framework for a beginner?Wayne2008-10-11T07:10:26Z2008-10-11T07:10:26Z<p>System.Data, particularly Datatable, </p>
http://stackoverflow.com/questions/192028/from-string-to-blob/192057#1920571Answer by Wayne for From String to BlobWayne2008-10-10T16:06:46Z2008-10-10T17:05:50Z<p>You need to cast as a char..</p>
<pre><code>SELECT item.title, GROUP_CONCAT( CAST(CONCAT_WS(',', attachments.id,
attachments.type, attachments.name ) as CHAR ) ) as attachments
FROM story AS item
LEFT OUTER JOIN story_attachment AS attachments
ON item.id = attachments.item_id GROUP BY item.id
</code></pre>
http://stackoverflow.com/questions/187482/how-can-i-use-the-button-tag-with-asp-net/187944#1879443Answer by Wayne for How can I use the button tag with ASP.NET?Wayne2008-10-09T15:59:18Z2008-10-09T17:21:20Z<p>You can use the <a href="http://msdn.microsoft.com/en-us/library/system.web.ui.webcontrols.button.usesubmitbehavior.aspx" rel="nofollow">Button.UseSubmitBehavior</a> property as discussed in <a href="http://www.xerratus.com/2006/11/22/HowToGetASPNET20ButtonWebControlToRenderAsInputTypebutton.aspx" rel="nofollow">this article about rendering an ASP.NET Button control as a button</a>.
<hr>
EDIT: Sorry.. that's what I get for skimming questions on my lunch break. Are there reasons why you wouldn't just use a <button runat="server"> tag or an <a href="http://msdn.microsoft.com/en-us/library/a8fd2268(VS.80).aspx" rel="nofollow">HtmlButton</a>? </p>
http://stackoverflow.com/questions/188162/what-is-the-most-useful-script-youve-written-for-everyday-life/188190#1881903Answer by Wayne for What is the most useful script you've written for everyday life?Wayne2008-10-09T16:58:23Z2008-10-09T16:58:23Z<p>Various Shortcuts to "net start" and "net stop" commands so I can start and stop services without having to go into the Services MMC</p>
http://stackoverflow.com/questions/175782/how-useful-is-a-mcad-certification/175804#1758047Answer by Wayne for How Useful is a MCAD Certification?Wayne2008-10-06T19:28:36Z2008-10-06T19:28:36Z<p>I would say that if you're going to pursue a MS certification that you go after your <a href="http://www.microsoft.com/Learning/MCP/MCPD/default.mspx" rel="nofollow">MCPD</a>. MCAD is for .Net 1.1 and they're already on .Net 3.5.</p>
<p>That said, I don't think it really helps you that much. MCPDs are fairly easy to get by using BrainDumps (bascially copies of the tests, so you can memorize the answers) so most people hiring aren't too impressed by them.</p>
<p>If you don't take the the short cut and actually study and learn the material to pass, then you will have a much deeper understanding of the Framework which can only help you become a better .Net programmer.</p>
<p>I didn't get certified until this job (after ~4 years as .NET developer) and that was only because of the incentives my job offered for getting certified. Having hired consultants before, I paid very little attention to any certifications, only glanced at the formal education and put a lot more stock on portfolios and the technical questioning parts of the interview.</p>
http://stackoverflow.com/questions/175247/microsoft-certified-partner-important-to-developers/175275#1752755Answer by Wayne for Microsoft Certified Partner? Important to Developers?Wayne2008-10-06T17:23:01Z2008-10-06T17:23:01Z<p>Yes. As a partner, you not only get access to the software, but the company gets vouchers for certification testing, making it more likely that your employer would not only support, but encourage you to get certified. I work for a MS Gold Partner and every single developer here is MCPD certified.</p>
http://stackoverflow.com/questions/168802/where-can-i-find-a-tutorial-to-get-started-learning-jquery/168808#1688083Answer by Wayne for Where can I find a tutorial to get started learning jQuery?Wayne2008-10-03T20:43:40Z2008-10-03T20:43:40Z<p>Here's a 4 part (so far) series on <a href="http://dotnetslackers.com/Community/blogs/xun/archive/2008/09/13/jquery-the-very-very-basics-lesson-1.aspx" rel="nofollow">Jquery Basics</a>.</p>
http://stackoverflow.com/questions/168486/whats-your-1-way-to-be-careful-with-a-live-database/168526#1685263Answer by Wayne for What's your #1 way to be careful with a live database?Wayne2008-10-03T19:33:43Z2008-10-03T19:33:43Z<p>If you're using Oracle or another database that supports it, verify your changes before doing a COMMIT.</p>
http://stackoverflow.com/questions/168486/whats-your-1-way-to-be-careful-with-a-live-database/168496#16849613Answer by Wayne for What's your #1 way to be careful with a live database?Wayne2008-10-03T19:30:06Z2008-10-03T19:30:06Z<p>Always make sure your UPDATEs and DELETEs have the proper WHERE clause.</p>
http://stackoverflow.com/questions/167808/ajax-postbacks-and-browser-refreshes/167841#1678413Answer by Wayne for AJAX, postbacks and browser refreshesWayne2008-10-03T16:52:43Z2008-10-03T19:00:26Z<p>You could try using the <a href="http://www.theserverside.com/patterns/thread.tss?thread_id=20936" rel="nofollow">Post/Redirect/Get</a> pattern. Basically instead of letting the postback send the data, redirect to the page. That way, if a user refreshes, s/he is refreshing the GET command rather than the POST.
<hr />
Sorry.. missed the UpdatePanel piece. Make sure that your submit button is also within that UpdatePanel. A page refresh would not affect your AJAX call, but when the button is outside the panel, it's doing a regular postback so you would be sending the Add Request again.</p>
http://stackoverflow.com/questions/167904/how-do-you-stop-interim-solutions-from-lasting-forever/167928#1679285Answer by Wayne for How do you stop interim solutions from lasting forever?Wayne2008-10-03T17:16:41Z2008-10-03T17:24:51Z<ul><li>I make sure that I'm vocal about the priority of the long term fix ESPECIALLY after the short term fix has gone in.</li><li>I detail the reasons why it's a hack and not a good long term solution and use those to get the stakeholders (managers, clients, etc) to understand why it needs to be fixed</li><li> Depending on the case, I may even inject a bit of worst case scenario fear in there. "If this safely line snaps, the whole bridge could collapse!"</li><li>I take responsibility for coming up with a long term solution and make sure that it gets deployed</li></ul>
http://stackoverflow.com/questions/167432/what-is-the-best-vbscript-code-to-add-decimal-places-to-all-numbers-in-a-string/167651#1676510Answer by Wayne for What is the best vbscript code to add decimal places to all numbers in a string?Wayne2008-10-03T16:12:57Z2008-10-03T16:12:57Z<pre><code>function convert(str)
Set RegEx = New RegExp
RegEx.Global = True
RegEx.Pattern = "([IJKCXY]\d*\.?\d*)"
Set Matches = regEx.Execute(str)
For Each Match in Matches
if instr(Match.value, ".") = 0 then
str = Replace(str, Match.value, Match.value & ".")
end if
Next
convert = str
end function
</code></pre>
http://stackoverflow.com/questions/162681/how-to-parse-formatted-email-address-into-display-name-and-email-address/162701#1627011Answer by Wayne for How to parse formatted email address into display name and email address?Wayne2008-10-02T14:46:02Z2008-10-02T14:56:06Z<pre><code>new MailAddress("jim@example.com", "Jimbo");
</code></pre>
<p>to parse out the string you gave:</p>
<pre><code>string input = "\"Jimbo\" jim@example.com";
string[] pieces = input.Split(' ');
MailAddress ma = new MailAddress(pieces[1].Replace("<", string.Empty).Replace(">",string.Empty), pieces[0].Replace("\"", string.Empty));
</code></pre>
http://stackoverflow.com/questions/162326/how-to-get-the-checked-option-in-a-group-of-radio-inputs-with-javascript/162429#1624292Answer by Wayne for How to get the checked option in a group of radio inputs with JavaScript?Wayne2008-10-02T14:01:26Z2008-10-02T14:01:26Z<p>If you need the actual element and not just the selected value, try this:</p>
<pre><code>function findSelected(){
for (i=0;i<document.formname.radioname.length;i++){
if (document.formname.radioname[i].checked){
return document.formname.radioname[i];
}
}
}
</code></pre>
http://stackoverflow.com/questions/161093/do-this-with-a-single-sql/161109#1611090Answer by Wayne for Do this with a single SQLWayne2008-10-02T06:38:04Z2008-10-02T06:38:04Z<p>The first result from this recordset is what you're looking for. Depending on your Database, you may be able to only return this row by using LIMIT, or TOP</p>
<pre><code>SELECT CLNDR_DATE
FROM TABLE
WHERE CLNDR_DATE > (SELECT MAX(CLNDR_DATE)
FROM TABLE
WHERE EFFECTIVE_DATE IS NOT NULL)
ORDER BY CLNDR_DATE
</code></pre>
http://stackoverflow.com/questions/160971/what-are-your-language-hangups/161042#16104214Answer by Wayne for What are your language "hangups"?Wayne2008-10-02T05:56:34Z2008-10-02T05:56:34Z<p>I hate Hate HATE "End Function" and "End IF" and "If... Then" parts of VB. I would much rather see a curly bracket instead.</p>
http://stackoverflow.com/questions/160975/diet-advice-for-programmers/161009#1610091Answer by Wayne for Diet advice for programmersWayne2008-10-02T05:31:37Z2008-10-02T05:31:37Z<p>I suggest you check out <a href="http://www.fourmilab.ch/hackdiet/www/hackdiet.html" rel="nofollow">The Hacker's Diet</a></p>
http://stackoverflow.com/questions/160666/html-display-an-image-as-large-as-possible-while-preserving-aspect-ratio/160717#1607175Answer by Wayne for HTML - display an image as large as possible while preserving aspect ratioWayne2008-10-02T03:03:19Z2008-10-02T03:03:19Z<p>Here's a quick function that will adjust the height or width to 100% depending on which is bigger. Tested in FF3, IE7 & Chrome</p>
<pre><code><html>
<head>
<script>
function resizeToMax(id){
myImage = new Image()
var img = document.getElementById(id);
myImage.src = img.src;
if(myImage.width > myImage.height){
img.style.width = "100%";
} else {
img.style.height = "100%";
}
}
</script>
</head>
<body>
<img id="image" src="test.gif" onload="resizeToMax(this.id)">
</body>
</html>
</code></pre>
http://stackoverflow.com/questions/158818/create-json-with-net/158842#1588425Answer by Wayne for Create JSON with .netWayne2008-10-01T17:46:29Z2008-10-01T17:46:29Z<p><a href="http://james.newtonking.com/pages/json-net.aspx" rel="nofollow">Json.Net</a> is an easy to use library with some cool features.</p>
http://stackoverflow.com/questions/158729/what-information-has-been-released-regarding-the-net-framework-4-0/158732#1587320Answer by Wayne for What information has been released regarding the .NET Framework 4.0?Wayne2008-10-01T17:27:48Z2008-10-01T17:27:48Z<p><a href="http://news.google.com/news?hl=en&ned=us&q=net+Framework+4.0&btnG=Search+News" rel="nofollow">http://news.google.com/news?hl=en&ned=us&q=net+Framework+4.0&btnG=Search+News</a> is a good place to start</p>
http://stackoverflow.com/questions/158534/reading-a-windows-dmp-file/158561#1585612Answer by Wayne for Reading a windows *.dmp fileWayne2008-10-01T16:40:04Z2008-10-01T16:40:04Z<p>Here's a link to an article from Microsoft on <a href="http://support.microsoft.com/kb/315263" rel="nofollow">reading the small memory dump files that Windows creates for debugging</a></p>
http://stackoverflow.com/questions/156436/sorting-a-collection-in-classic-asp/156496#1564963Answer by Wayne for Sorting a collection in classic ASPWayne2008-10-01T06:51:17Z2008-10-01T06:59:22Z<p>I'd go with the RecordSet approach. Use the Text Driver. You'll need to change the directory in the connection string and the filename in the select statement. the Extended Property "HDR=Yes" specifies that there's a header row in the CSV which I suggest as it will make writing the psuedo SQL easier.</p>
<pre><code><%
Dim strConnection, conn, rs, strSQL
strConnection = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=c:\inetpub\wwwroot\;Extended Properties='text;HDR=Yes;FMT=Delimited';"
Set conn = Server.CreateObject("ADODB.Connection")
conn.Open strConnection
Set rs = Server.CreateObject("ADODB.recordset")
strSQL = "SELECT * FROM test.csv order by date desc"
rs.open strSQL, conn, 3,3
WHILE NOT rs.EOF
Response.Write(rs("date") & "<br/>")
rs.MoveNext
WEND
rs.Close
Set rs = Nothing
conn.Close
Set conn = Nothing
%>
</code></pre>
http://stackoverflow.com/questions/156430/regexp-recognition-of-email-address-hard/156456#1564560Answer by Wayne for Regexp recognition of email address hard?Wayne2008-10-01T06:29:51Z2008-10-01T06:29:51Z<p>It's really hard because there are a lot of things that can be valid in an email address according to the Email Spec, <a href="http://www.faqs.org/rfcs/rfc2822.html" rel="nofollow">RFC 2822</a>. Things that you don't normally see such as + are perfectly valid characters for an email address.. according to the spec. </p>
<p>There's an entire section devoted to email addresses at <a href="http://regexlib.com/DisplayPatterns.aspx?cattabindex=0&categoryId=1" rel="nofollow">http://regexlib.com</a>, which is a great resource. I'd suggest that you determine what criteria matters to you and find one that matches. Most people really don't need full support for all possibilities allowed by the spec.</p>
http://stackoverflow.com/questions/202323/stackoverflow-atom-feed-to-use-with-vs2008-start-page/202347#202347Comment by Wayne on StackOverflow atom feed to use with VS2008 Start PageWayne2008-10-14T19:00:12Z2008-10-14T19:00:12ZSomething in either the feed or VS's page doesn't display that correctly.http://stackoverflow.com/questions/202305/create-php-dom-xml-file-and-create-a-save-file-link-prompt-without-writing-the-fiComment by Wayne on Create PHP DOM xml file and create a save file link/prompt without writing the file to the server when headers already sent.Wayne2008-10-14T18:43:26Z2008-10-14T18:43:26ZWhat's preventing you from using the headers to send a file download prompt?http://stackoverflow.com/questions/192028/from-string-to-blob/192057#192057Comment by Wayne on From String to BlobWayne2008-10-10T17:06:00Z2008-10-10T17:06:00ZAdded.. thanks. :)http://stackoverflow.com/questions/156430/regexp-recognition-of-email-address-hard/156456#156456Comment by Wayne on Regexp recognition of email address hard?Wayne2008-10-03T20:30:19Z2008-10-03T20:30:19Z@David Schmitt : The addresses: Abc\@def@example.com, customer/department=shipping@example.com and !def!xyz%abc@example.com are all valid.. however 99.99% of people won't run into these types of addresses in a production site.http://stackoverflow.com/questions/158729/what-information-has-been-released-regarding-the-net-framework-4-0/158732#158732Comment by Wayne on What information has been released regarding the .NET Framework 4.0?Wayne2008-10-02T05:01:52Z2008-10-02T05:01:52ZNo worries. :) I guess I look at the question as part of a knowledge base for the future. The answer of the question is dynamic when you account for time, so what you see SHOULD be different if newer information is available. It's very similar to linking to a Wikipedia entry.http://stackoverflow.com/questions/160666/html-display-an-image-as-large-as-possible-while-preserving-aspect-ratio/160717#160717Comment by Wayne on HTML - display an image as large as possible while preserving aspect ratioWayne2008-10-02T03:37:30Z2008-10-02T03:37:30ZAuto is the default. It's the same as not setting the property.http://stackoverflow.com/questions/158729/what-information-has-been-released-regarding-the-net-framework-4-0/158732#158732Comment by Wayne on What information has been released regarding the .NET Framework 4.0?Wayne2008-10-01T17:47:38Z2008-10-01T17:47:38ZVote it down all you want.. in 6 months, this will still be a valid link where the others will be datedhttp://stackoverflow.com/questions/157898/class-for-url-querystring-manipulation/157971#157971Comment by Wayne on Class for URL Querystring Manipulation?Wayne2008-10-01T15:02:06Z2008-10-01T15:02:06ZThose special cases can all be handlded with httpserverutility.htmlencode and httpserverutility.htmldecodehttp://stackoverflow.com/questions/156436/sorting-a-collection-in-classic-asp/156485#156485Comment by Wayne on Sorting a collection in classic ASPWayne2008-10-01T07:00:08Z2008-10-01T07:00:08ZCompletely offtopic, but I had that same icon as a userpic in my livejournal. :)http://stackoverflow.com/questions/155739/detecting-unsaved-changes-using-javascriptComment by Wayne on Detecting Unsaved Changes using JavaScriptWayne2008-10-01T00:53:51Z2008-10-01T00:53:51ZThe solution I posted below can be used in plain HTML/Javscript. Simply change the "codebehind" to attributes in the HTML tags themselves.http://stackoverflow.com/questions/155217/good-c-code-samples/155232#155232Comment by Wayne on Good C# code samples?Wayne2008-09-30T21:57:24Z2008-09-30T21:57:24ZIf you have VS 2008, you can enable Framework debugging as well: <a href="http://weblogs.asp.net/scottgu/archive/2008/01/16/net-framework-library-source-code-now-available.aspx" rel="nofollow">weblogs.asp.net/scottgu/archive/…</a>http://stackoverflow.com/questions/149823/accessing-a-dynamitcally-added-buttoncolumns-in-a-datagrid-click-event-c-asComment by Wayne on Accessing a dynamitcally added buttoncolumn's (in a Datagrid) click event. C#/ASP.NETWayne2008-09-29T17:51:56Z2008-09-29T17:51:56ZDo you need to actually access that individual button's Click event, or simply perform an action whenever a button in that column is clicked?http://stackoverflow.com/questions/141562/sql-to-find-the-number-of-distinct-values-in-a-column/141573#141573Comment by Wayne on SQL to find the number of distinct values in a columnWayne2008-09-26T20:16:55Z2008-09-26T20:16:55ZYup.. edited. Thanks :)http://stackoverflow.com/questions/135365/classic-asp-when-to-use-response-flush/135376#135376Comment by Wayne on Classic asp - When to use Response.flush?Wayne2008-09-25T19:23:59Z2008-09-25T19:23:59Z<a href="http://www.io.com/~maus/HttpKeepAlive.html" rel="nofollow">io.com/~maus/HttpKeepAlive.html</a>http://stackoverflow.com/questions/134288/interview-question-puzzle/134308#134308Comment by Wayne on Interview Question/PuzzleWayne2008-09-25T16:26:02Z2008-09-25T16:26:02ZHell no.. take the monkeys, too!