User Josh - Stack Overflowmost recent 30 from stackoverflow.com2009-12-03T00:14:58Zhttp://stackoverflow.com/feeds/user/69077http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1626412/best-way-to-deserialize-a-long-string-response-of-an-external-web-service/1626676#16266761Answer by Josh for Best way to deserialize a long string (response of an external web service)Josh2009-10-26T18:56:37Z2009-10-26T19:22:58Z<p>Using the built in libraries for asp.net (<code>System.Runtime.Serialization</code> and <code>System.ServiceModel.Web</code>) you can get what you want pretty easily:</p>
<pre><code>string[][] parsed = null;
var jsonStr = @"[[""Boston"",""142"",""JJK""],[""Miami"",""111"",""QLA""],[""Sacramento"",""042"",""PPT""]]";
using (var ms = new System.IO.MemoryStream(System.Text.Encoding.Default.GetBytes(jsonStr)))
{
var serializer = new System.Runtime.Serialization.Json.DataContractJsonSerializer(typeof(string[][]));
parsed = serializer.ReadObject(ms) as string[][];
}
</code></pre>
<p><strong>A little more complex example (which was my original answer)</strong>
First make a dummy class to use for serialization. It just needs one member to hold the result which should be of type string[][].</p>
<pre><code>[DataContract]
public class Result
{
[DataMember(Name="d")]
public string[][] d { get; set; }
}
</code></pre>
<p>Then it's as simple as wrapping your result up like so: <code>{ "d": /<em>your results</em>/ }</code>. See below for an example:</p>
<pre><code>Result parsed = null;
var jsonStr = @"[[""Boston"",""142"",""JJK""],[""Miami"",""111"",""QLA""],[""Sacramento"",""042"",""PPT""]]";
using (var ms = new MemoryStream(Encoding.Default.GetBytes(string.Format(@"{{ ""d"": {0} }}", jsonStr))))
{
var serializer = new System.Runtime.Serialization.Json.DataContractJsonSerializer(typeof(Result));
parsed = serializer.ReadObject(ms) as Result;
}
</code></pre>
http://stackoverflow.com/questions/1570540/getting-dynamically-generated-html-controls-when-using-updatepanel/1616627#16166270Answer by Josh for Getting dynamically generated HTML controls when using UpdatePanelJosh2009-10-24T00:49:18Z2009-10-24T00:49:18Z<p><strong>Question:</strong> Does this programming exist inside a MasterPage or UserControl or any other control that implements <code>INamingContainer</code>? Check your renedered HTML and make sure that you do in fact have a <code><div id="dynamicInputsGoHere"></code> since you have it set as <code>runat="server"</code> you could very well have something like <code><div id="ctrl0_dynamicInputsGoHere"></code> and therefor your jQuery won't execute.</p>
<p>Once you've verified the input's are being found by your script you'll probably want to register script with the scriptmanager (just to be safe since you are using the UpdatePanel.)</p>
<pre><code>ScriptManager.RegisterStartupScript(this, this.GetType(), "createinputs", @";for (var i = currentSize; i < numberInputsToCreate; i++) {
var name = ""inputNum"" + i;
html += '<input type=""text"" id=""' + name + '"" name=""' + name + '"" />';
}
$('#dynamicInputsGoHere').append(html);", true);
</code></pre>
<p><strong>When your looking for values in code behind you'll have to check in <code>Request.Form["inputNum"+i]</code>.</strong></p>
http://stackoverflow.com/questions/1616478/delete-record-from-gridview-and-file-from-server-in-one-click/1616556#16165561Answer by Josh for Delete Record from GridView AND File from server in one clickJosh2009-10-24T00:17:29Z2009-10-24T00:17:29Z<p>I think part of your problem may be that in order for <code>e.Values["sku"]</code> to contain a value, it has to be bound first. I don't think <code>HyperlinkField</code> binds its data (I could be wrong on that though so don't quote me)</p>
<p>First try adding a <code><asp:BoundField DataField="sku" Visible="false" /></code> in your column list. or change the HyperLinkField to TemplateField and explicitly bind the sku <code>'<%#Bind("sku")%>'</code></p>
<p>If that doesn't work you can try changing <code>DataKeyNames="libraryID"</code> to <code>DataKeyNames="libraryID,sku"</code>. You should be able to get the value out of <code>e.Keys["sku"]</code>, or <code>e.Values["sku"]</code>.</p>
http://stackoverflow.com/questions/1616353/how-can-i-get-a-directory-from-a-uri/1616443#16164431Answer by Josh for How can I get a directory from a UriJosh2009-10-23T23:28:42Z2009-10-23T23:47:49Z<p>Here's a pretty clean way of doing it. Also has the advantage of taking any url you can throw at it:</p>
<pre><code>var uri = new Uri("http://www.mysite.com/mydirectory/myfile.aspx?test=1");
var newUri = new Uri(uri, System.IO.Path.GetDirectoryName(uri.AbsolutePath));
</code></pre>
<p>NOTE: removed Dump() method. (It's from LINQPad which was where I was verifying this!)</p>
http://stackoverflow.com/questions/1608631/how-to-have-an-image-top-left-and-bottom-right/1609053#16090531Answer by Josh for How to have an image top left and bottom right.Josh2009-10-22T18:14:39Z2009-10-22T18:14:39Z<p>You can move the trailing close quote image to a place some where inside your <code><p></code> (you'll have to play with the positioning of it however; safe bet is about 10-15 words away from the end of the last sentence) So from your example you would have:</p>
<pre><code><div id="box1">
<div class="info">adfda</div>
<div class="post">
<img style="float:left" src="quotes-open.jpg" alt="" />
<p>lskg;alsjglkajg jlg; ;lkj g;lk aglkj;lgkjlkjg alkjs glkjhaslkj hjkas hglkj
asg hagl lskg;alsjglkajg jlg; ;lkj g;lk aglkj;lgkjlkjg alkjs glkjhaslkj hjkas hglkj asg hagl
<img style="float:right" src="quotes-close.jpg" alt="" />
lskg;alsjglkajg jlg; ;lkj g;lk aglkj;lgkjlkjg alkjs glkjhaslkj hjkas hglkj asg hagl
</p>
</div>
</div>
</code></pre>
<p>I think you'll have better luck with something like what Stephen suggested:</p>
<p><strong>HTML:</strong></p>
<pre><code><div>
<div class="info">adfda</div>
<div class="post">
<blockquote>
<p class="closeq">lskg;alsjglkajg jlg; ;lkj g;lk aglkj;lgkjlkjg alkjs glkjhaslkj hjkas hglkj asg hagl</p>
</blockquote>
</div>
</div>
</code></pre>
<p><strong>CSS</strong></p>
<pre><code>.post blockquote { background: url(quotes-open.jpg) no-repeat top left; /*padding*/ }
.post blockquote p.closeq { background: url(quotes-close.jpg) no-repeat bottom right; /*padding*/ }
</code></pre>
<p><strong>Notes</strong></p>
<p><code>.post blockquote</code>: gets the opening quote set as a background and position to the top and the left. You'll want to adding some padding to the element so as to not crowd the text or overrun it.</p>
<p><code>.post blockquote p.closeq</code>: I went ahead and made it to where you have to explicitly tell where you want the closing quotes. This is because you may want a quote with more than one paragraph. Again here you'll want to play with the padding to make sure your text doesn't run over the closing quote.</p>
http://stackoverflow.com/questions/1267993/sql-update-multiple-fields-from-via-a-select-statement/1268110#12681100Answer by Josh for SQL Update Multiple Fields FROM via a SELECT StatementJosh2009-08-12T19:07:25Z2009-08-12T19:39:43Z<p>You should be able to do something along the lines of the following</p>
<pre><code>UPDATE s
SET
OrgAddress1 = bd.OrgAddress1,
OrgAddress2 = bd.OrgAddress2,
...
DestZip = bd.DestZip
FROM
Shipment s, ProfilerTest.dbo.BookingDetails bd
WHERE
bd.MyID = @MyId AND s.MyID2 = @MyID2
</code></pre>
<p>FROM statement can be made more optimial (using more specific joins), but the above should do the trick. Also, a nice side benefit to writing it this way, to see a preview of the UPDATE change <code>UPDATE s SET</code> to read <code>SELECT</code>! You will then see that data as it would appear if the update had taken place.</p>
http://stackoverflow.com/questions/835877/master-page-weirdness-content-controls-have-to-be-top-level-controls-in-a-cont/835982#8359821Answer by Josh for Master Page Weirdness - "Content controls have to be top-level controls in a content page or a nested master page that references a master page."Josh2009-05-07T17:25:57Z2009-05-07T17:25:57Z<p>Your we form should look like this:</p>
<pre><code><%@ Page Language="vb" AutoEventWireup="false" CodeBehind="Default.aspx.vb" Inherits="WebUI._Default" MasterPageFile="~/Site1.Master" %>
<asp:Content runat="server" ID="head" ContentPlaceHolderId="head">
<!-- stuff you want in &gt;head%lt; -->
</asp:Content>
<asp:Content runat="server" ID="content" ContentPlaceHolderId="ContentPlaceHolder1">
<h1>Your content</h1>
</asp:Content>
</code></pre>
http://stackoverflow.com/questions/38612/aspdropdownlist-error-dropdownlist1-has-a-selectedvalue-which-is-invalid-beca/783436#7834360Answer by Josh for asp:DropDownList Error: 'DropDownList1' has a SelectedValue which is invalid because it does not exist in the list of items.Josh2009-04-23T20:42:13Z2009-04-23T20:42:13Z<p>I've become very fond of the following little snippet for setting DropDownList values:</p>
<p><strong>For non-DataBound (eg Items added manually):</strong></p>
<pre><code>ddl.SelectedIndex = ddl.Items.IndexOf(ddl.Items.FindByValue(value));
</code></pre>
<p><strong>For DataBound</strong>:</p>
<pre><code>ddl.DataBound += (o,e) => ddl.SelectedIndex = ddl.Items.IndexOf(ddl.Items.FindByValue(value));
</code></pre>
<p>I sure do wish though that ListControls in general didn't throw errors when you try to set values to somthing that isn't there. At least in Release mode anyways it would have been nice for this to just quietly die.</p>
http://stackoverflow.com/questions/761096/how-to-pass-in-custom-event-args-to-the-standard-aspcontrols/761593#7615930Answer by Josh for How to pass in custom event args to the standard asp:controlsJosh2009-04-17T18:16:51Z2009-04-17T18:16:51Z<p>I don't thinks you can. The Button itself will be calling the Click event with it's own EventArgs object, and unfortunately you can't hijack that call. You can however use closures:</p>
<pre><code>protected void Page_Load(object sender, EventArgs e)
{
int number = 1;
button.Click += (o, args) => Response.Write("Expression:"+number++);
number = 10;
button.Click += delegate(object o, EventArgs args) { Response.Write("Anonymous:"+number); };
}
</code></pre>
<p>By the way the output for this is <pre>Expression:10Anonymous:11</pre> Understanding why this is the output is a big step into understanding closures! Even though <code>number</code> is out of scope when Click Event is handled, it is not destroyed because both of the defined event handler's have references to the it. So it and it's value will be maintained until it is no longer needed. <em>I know that's not the most technical explanation of closures, but should give you an idea of what they are.</em></p>
http://stackoverflow.com/questions/758012/one-user-control-updating-another-during-ajax-postback/758122#7581222Answer by Josh for One user control updating another during AJAX Postback?Josh2009-04-16T21:25:15Z2009-04-17T04:19:40Z<p>I don't think there's really enough information to work with here, but my best guess is that the Product control is not getting data bound. You may try calling myProdcutsCtrl.DataBind() from the search control (or something inside the Product control that cause a DataBind() for instance myProductCtrl.Search(value1, value2, value3).</p>
<p>One other thing you might try is removing the UpdatePanels and seeing if things work. Then add them back in once you get core functionality going.</p>
<p><strong>UPDATE:</strong> I've gone ahead and put some example code that works here which I believe accomplishes what you want. What follows are snippets for the sake of saving space, but include all code necessary to make it run. Hopefully this will at least give you something for reference.</p>
<p>Things to try:</p>
<ol>
<li>EnablePartialRendering="true|false" setting it to false will force the natural postbacks and is good for debugging UpdatePanel problems.</li>
<li>Make sure you are seeing <b>Loading...</b> come up on your screen. (maybe too fast depending on your dev computer)</li>
</ol>
<p><strong>Page.aspx</strong></p>
<pre><code><%@ Register Src="~/Product.ascx" TagPrefix="uc" TagName="Product" %>
<%@ Register Src="~/Search.ascx" TagPrefix="uc" TagName="Search" %>
</code></pre>
<p>...</p>
<pre><code><asp:ScriptManager runat="server" ID="sm" EnablePartialRendering="true" />
Loaded <asp:Label ID="Label1" runat="server"><%= DateTime.Now %></asp:Label>
<asp:UpdateProgress runat="server" ID="progress" DynamicLayout="true">
<ProgressTemplate><b>Loading...</b></ProgressTemplate>
</asp:UpdateProgress>
<uc:Search runat="server" ID="search" ProdcutControlId="product" />
<uc:Product runat="server" ID="product" />
</code></pre>
<p><strong>Search.ascx</strong></p>
<pre><code><asp:UpdatePanel runat="server" ID="searchUpdate" UpdateMode="Conditional" ChildrenAsTriggers="true">
<ContentTemplate>
<p>
<asp:Label runat="server" AssociatedControlID="filter">Less than</asp:Label>
<asp:TextBox runat="server" ID="filter" MaxLength="3" />
<asp:Button runat="server" ID="search" Text="Search" OnClick="SearchClick" />
</p>
</ContentTemplate>
</asp:UpdatePanel>
</code></pre>
<p><strong>Search.ascx.cs</strong></p>
<pre><code> public string ProdcutControlId { get; set; }
protected void SearchClick(object sender, EventArgs e)
{
Product c = this.NamingContainer.FindControl(ProdcutControlId) as Product;
if (c != null)
{
c.Search(filter.Text);
}
}
</code></pre>
<p><strong>Product.ascx</strong></p>
<pre><code><asp:UpdatePanel runat="server" ID="productUpdate" UpdateMode="Conditional" ChildrenAsTriggers="false">
<ContentTemplate>
<asp:Label runat="server">Request at <%= DateTime.Now %></asp:Label>
<asp:ListView runat="server" ID="product">
<LayoutTemplate>
<ul>
<li id="itemPlaceHolder" runat="server" />
</ul></LayoutTemplate>
<ItemTemplate>
<li><%# Container.DataItem %></li></ItemTemplate>
</asp:ListView>
</ContentTemplate>
</asp:UpdatePanel>
</code></pre>
<p><strong>Product.ascx.cs</strong></p>
<pre><code>IEnumerable<int> values = Enumerable.Range(0, 25);
public void Search(string val)
{
int limit;
if (int.TryParse(val, out limit))
product.DataSource = values.Where(i => i < limit);
else
product.DataSource = values;
product.DataBind();
productUpdate.Update();
}
</code></pre>
<p><em>Code does NOT represent best practices, just a simple example!</em></p>
http://stackoverflow.com/questions/722013/pre-render-event-in-asp-net/722037#7220372Answer by Josh for Pre render event in asp.netJosh2009-04-06T15:44:13Z2009-04-06T15:49:30Z<p>PreRender is the event that takes place just before the HTML for a given control/page is generated (to later be sent to the browser). So by setting an item.Visible = false here it will not be rendered to the HTML (however it's ViewState will). </p>
<p>In this case it looks like the code is hiding all rows in the RadGrid when a user is editing/inserting an item I presume for less distractions for the end user.</p>
http://stackoverflow.com/questions/634802/how-to-prevent-3px-extra-bottom-padding-on-list-items-in-ie7/635010#6350101Answer by Josh for How to prevent 3px extra bottom padding on list items in IE7Josh2009-03-11T15:19:01Z2009-03-11T15:59:57Z<p>Try the following:</p>
<pre><code><style type="text/css">
div.test { width: 160px; font: 8pt arial,helvetica,sans-serif; border: 1px solid #999; overflow:hidden; }
div.test ul { margin: 0; padding: 0; list-style: none;}
div.test ul li { margin: 0 0 4px; }
div.test ul li a { display: inline-block; }
div.test ul li a { display: block; padding: 0 5px; line-height: 20px; color: #000; text-decoration: none; position: relative; z-index: 2; }
div.test ul li b { background-color: #c00; height: 20px; width: 20px; position: absolute; display: block; z-index: 1; }
</style>
<div class="test">
<ul>
<li><b></b><a href="#"><em>#1: premature brake wear</em></a></li>
<li><b></b><a href="#"><em>#2: squeaky brakes</em></a></li>
<li><b></b><a href="#"><em>#3: bad gas mileage</em></a></li>
</ul>
</div>
</code></pre>
<p>I couldn't fix the problem you were having any cleaner than what you already have (the other fix is to float the LI's and clear them) however, I am giving you an alternative way of doing this. I admit it's the cleanest HTML, but it does neatly sidestep the problem.</p>
http://stackoverflow.com/questions/633286/nullable-types-best-way-to-check-for-null-or-zero-in-c/633514#6335141Answer by Josh for nullable types: best way to check for null or zero in c#Josh2009-03-11T06:13:17Z2009-03-11T06:18:52Z<p>This is really just an expansion of Freddy Rios' accepted answer only using Generics.</p>
<pre><code>public static bool IsNullOrDefault<T>(this Nullable<T> value) where T : struct
{
return default(T).Equals( value.GetValueOrDefault() );
}
public static bool IsValue<T>(this Nullable<T> value, T valueToCheck) where T : struct
{
return valueToCheck.Equals((value ?? valueToCheck));
}
</code></pre>
<p><strong>NOTE</strong> we don't need to check default(T) for null since we are dealing with either value types or structs! This also means we can safely assume T valueToCheck will not be null; Remember here that T? is shorthand Nullable<T> so by adding the extension to Nullable<T> we get the method in int?, double?, bool? etc.</p>
<p><strong>Examples:</strong></p>
<pre><code>double? x = null;
x.IsNullOrDefault(); //true
int? y = 3;
y.IsNullOrDefault(); //false
bool? z = false;
z.IsNullOrDefault(); //true
</code></pre>
http://stackoverflow.com/questions/627866/what-is-the-best-method-for-changing-a-web-config-connectionstring-at-runtime/630970#6309703Answer by Josh for What is the best method for changing a web.config connectionstring at runtime?Josh2009-03-10T16:05:23Z2009-03-10T17:57:05Z<p>If you are not wanting to delve into code behind, there is another way you can do this.</p>
<p>First read this article on <a href="http://weblogs.asp.net/infinitiesloop/archive/2006/08/09/The-CodeExpressionBuilder.aspx" rel="nofollow">expression builders</a>. One of my favorite things to bring into to my web-apps! </p>
<p><strong>Now for some code:</strong></p>
<p>First make a class in your project that contains the following:</p>
<pre><code>using System;
using System.CodeDom;
using System.Web.UI;
using System.Web.Compilation;
namespace MyNamespace.Web.Compilation
{
[ExpressionPrefix("code")]
public class CodeExpressionBuilder : ExpressionBuilder
{
public override CodeExpression GetCodeExpression(BoundPropertyEntry entry,
object parsedData, ExpressionBuilderContext context)
{
return new CodeSnippetExpression(entry.Expression);
}
}
}
</code></pre>
<p>Then, in web.config register the Expression Builder as follows</p>
<pre><code>...
<compilation debug="false">
<expressionBuilders>
<add expressionPrefix="Code" type="MyNamespace.Web.Compilation.CodeExpressionBuilder"/>
</expressionBuilders>
</compilation>
...
</code></pre>
<p>(all code above from taken from <a href="http://weblogs.asp.net/infinitiesloop/archive/2006/08/09/The-CodeExpressionBuilder.aspx" rel="nofollow">here</a> and modified ever so slightly)</p>
<p>Finally change your SqlDataSource to the following (C#):</p>
<pre><code><asp:SqlDataSource ID="SqlDataSource1" runat="server"
ConnectionString='<%$ code: (string)Session["MyConnectionString"] ?? ConfigurationManageer.ConnectionStrings["myDefaultConn"].ConnectionString %>'
SelectCommand="SELECT * FROM [Customers]">
</asp:SqlDataSource>
</code></pre>
<p>If you wanted (and I would recommend) creating a static class that handles figuring out the connection string for you say something like:</p>
<pre><code>public static ConnectionManager
{
public static string GetConnectionString()
{
return HttpContext.Current.Session["MyConnectionString"] as string ??
ConfigurationManager.ConnectionStrings["DefaultConnectionStr"].ConnectionString;
}
}
</code></pre>
<p>Then your SqlDataSource would be</p>
<pre><code><asp:SqlDataSource ID="SqlDataSource1" runat="server"
ConnectionString='<%$ code: ConnectionManager.GetConnectionString() %>'
SelectCommand="SELECT * FROM [Customers]">
</asp:SqlDataSource>
</code></pre>
<p>That way if you ever need to change how get a connection string you can do it one place!</p>
http://stackoverflow.com/questions/612118/asp-net-ajax-3-5-and-ie6/627038#6270382Answer by Josh for ASP.NET AJAX 3.5 and IE6?Josh2009-03-09T16:43:06Z2009-03-09T17:07:46Z<p>How are you testing in IE6? I have come across several javascript errors when you using anything but a clean install of only IE6 in conjunction with the asp.net ajax libraries. (ie. the asp.net ajax libraries don't support multiple installs of IE, or even <a href="http://www.my-debugbar.com/wiki/IETester/HomePage" rel="nofollow">IETester</a>)</p>
<p>It is something in the IE security model that makes things go haywire when multiple version's of IE are used. You'll find that cookies won't work right either in anything but the "installed" version of IE on the system you are running.</p>
<p>You may also look here for some <a href="http://tredosoft.com/Multiple%5FIE" rel="nofollow">more information</a> on multiple IE installs. If found the comments to be particularly helpful!</p>
<p><strong>UPDATE</strong>
I was able to dig, this up in the <a href="http://forums.asp.net/p/1326906/2944515.aspx" rel="nofollow">asp.net fourms</a>. That's the only other thing I could find. May not be too be too helpful, but it at least sounds about like what you are hitting.</p>
http://stackoverflow.com/questions/620788/a-difficult-sql-query-tag-popularity-for-models-with-complex-associations/620834#6208340Answer by Josh for A difficult SQL query: tag popularity for models with complex associationsJosh2009-03-06T23:11:00Z2009-03-06T23:11:00Z<p>I may be missing something obvious but since you have "If someone tags a comment to a post, it fills in both blog_post_id and blog_comment_id", the following sql should do the trick. <em>I'm assuming here that Tags.name here will be unique.</em></p>
<pre><code>SELECT MIN(ts.tag_id), t.name, COUNT(ts.blog_post_id) as rank
FROM Taggings ts
INNER JOIN Tags t ON ts.tag_id = t.id
GROUP BY t.name
ORDER BY COUNT(ts.blog_post_id) DESC
</code></pre>
<p>Hope that's what your looking for.</p>
http://stackoverflow.com/questions/620476/can-someone-tell-me-why-my-div-buttons-wont-resize/620550#6205502Answer by Josh for Can someone tell me why my <div> buttons won't resize?Josh2009-03-06T21:46:05Z2009-03-06T21:55:34Z<p>In CSS, elements with <strong>display: inline</strong> cannot have <em>width</em> or <em>height</em> applied to them. You need <strong>display: inline-block</strong> for that. IE will incorrectly convert any inline element to inline-block if you give them a width or height. Fortunatley, since the release of Firefox 3 you can use inline-block with only minimal hacking. </p>
<p><strong>no Firefox 2 compatibility:</strong></p>
<pre><code>.ib { display: inline-block; zoom: 1; *display: inline; }
</code></pre>
<p><strong>Example HTML</strong></p>
<pre><code><div class="ib button">My button</div>
</code></pre>
<p><strong>Firefox 2 compatibilty</strong></p>
<pre><code>.ib{ display: -moz-inline-stack; display: inline-block; zoom: 1; *display: inline; }
.button { display: block; }
</code></pre>
<p><strong>Example HTML</strong></p>
<pre><code><div class="ib"><div class="button">My button</div></div>
</code></pre>
<p>In your .button implementation you would need to remove the display: inline portion.</p>
http://stackoverflow.com/questions/618323/table-layout-equivalent-using-divs/619498#6194980Answer by Josh for Table layout equivalent using DIVsJosh2009-03-06T16:36:05Z2009-03-06T18:51:47Z<p>Well this is what I came up with. You may have to play with the widths to adjust for browser rounding errors/ white-space corrections but overall should work. <em>Also IE may need some judicious use of overflow: hidden|auto.</em></p>
<pre><code><!DOCTYPE html>
<html><head><style type="text/css">
.container { width: 100%;text-align: center;}
.ib { min-width: 150px; display: -moz-inline-stack; display: inline-block; zoom: 1; *display: inline;}
.ib .styleMe { display: block; background: green; margin: 5px; text-align:left; border: 2px solid black; padding: 0 8px; }
.n1 .ib { width: 100%; } /* you could also use max-width here (if you can ignore IE6) and want jagged lines of items */
.n2 .ib { width: 50%; }
.n3 .ib { width: 33%; }
.n4 .ib { width: 25%; }
.n5 .ib { width: 20%; }
.n6 .ib { width: 16%; }
/*.nX .ib { max-width: 100/X; } may need to account for white-space/browser rounding errors too! */
</style></head>
<body>
<div class="container n4">
<div class="ib"><div class="styleMe">
<p>One</p>
<p>Line 2</p>
</div></div><!--
kill whitespace (or adjusts widths above)
--><div class="ib"><div class="styleMe">
<p>Two</p>
<p>Line 2</p>
</div></div><!--
kill whitespace (or adjusts widths above)
--><div class="ib"><div class="styleMe">
<p>Three</p>
<p>Line 2</p>
</div></div><!--
kill whitespace (or adjusts widths above)
--><div class="ib"><div class="styleMe">
<p>Four</p>
<p>Line 2</p>
</div></div><!--
kill whitespace (or adjusts widths above)
--><div class="ib"><div class="styleMe">
<p>Five</p>
<p>Line 2</p>
</div></div><!--
kill whitespace (or adjusts widths above)
--><div class="ib"><div class="styleMe">
<p>Six</p>
<p>Line 2</p>
</div></div>
</div>
</body></html>
</code></pre>
http://stackoverflow.com/questions/616074/avoid-an-element-from-being-cut-off-when-they-are-inside-a-overflow-hidden-ele/616178#6161781Answer by Josh for Avoid an Element from being cut off when they are inside a "overflow: hidden" elementJosh2009-03-05T19:08:28Z2009-03-05T19:08:28Z<p>Unfortunately no... I don't think there's a way to circumvent overflow: hidden with absolute position. You may experiment with position: fixed, but you won't be positioning under quite the same conditions if you use it.</p>
http://stackoverflow.com/questions/615098/whats-the-optimal-solution-for-tag-keyword-matching/615340#6153400Answer by Josh for What's the optimal solution for tag/keyword matching?Josh2009-03-05T15:44:05Z2009-03-05T17:04:55Z<p>Well maybe something like the follwing:</p>
<pre><code>select p.productId, p.name, r.rank
from products p inner join (
/* this inner select should bring in only products that have at least one keyword
=> shared with the requested product, and will count the actual number shared (for ranking)*/
select related.productId, count(related.productId) as rank
from
products_keywords related inner join
products_keywords pk ON (pk.productId = @productId AND related.keywordId = pk.keywordId)
where related.productId <> @productId
group by related.productId
) r on p.productId = r.productId
order by r.rank DESC /* added DESC (not in orignal solution, but needed to put higher ranked on top)*/
</code></pre>
<p>Now I seriously doubt that's an optimal sql statement, but it should get the job done. I can't verify it though since I just wrote it from scratch with no actual backing tables, or data to test against.</p>
http://stackoverflow.com/questions/608357/html-strict-css-how-do-i-close-the-gap/608374#6083743Answer by Josh for HTML Strict & CSS: How do I close the gap?Josh2009-03-03T21:51:42Z2009-03-03T21:57:41Z<p>Add <code>display: block</code> to your <img> either in css or on the style attribute.</p>
<p><strong>Edit</strong> Guffa beat me to the above.</p>
<p>You can also wrap the <img> with a <div> which technically speaking in this case you should do anyways. Only block level elements can be descendants of <body> if I remember the HTML specs right. You then have the flexibility of adding more images inside that div (as long as there is no white-space between the close of the <img> and the </div> you should be good to go.</p>
http://stackoverflow.com/questions/608172/block-level-elements-within-display-inline-block/608210#6082102Answer by Josh for Block-level elements within display: inline-blockJosh2009-03-03T21:13:36Z2009-03-03T21:36:15Z<p>Well display: inline-block can be a bit tricky to get cross-browser. It will require at minimum, a few hacks and, for Firefox 2, potentially an extra element.</p>
<p><strong>CSS</strong></p>
<pre><code>.inlineBlock { display: -moz-inline-stack; display: inline-block; zoom: 1; *display: inline; }
</code></pre>
<p><em>display: -moz-inline-stack</em> is for Firefox 2. All the immediate children will need to have <em>display: block</em> or otherwise be block level elements. Note if you need your inline-block element to shrink wrap I think you can use <em>display: -moz-inline-box</em> instead.</p>
<p><em>zoom: 1</em> gives hasLayout to the element (for IE 7 and below). Part 1 of the hack needed for IE7 and below compatibilty.</p>
<p>*<em>display: inline</em> is a hack second part of the hack needed for IE7 and below compatibility.</p>
<p>I occasionally need to add overflow: hidden for IE compatibility as well.</p>
<p>For your specific situation i think what you need is:</p>
<pre><code><html><head><style type="text/css">
#left {
display: inline-block;
background: red;
width: 20%;
height: 100%;
vertical-align: top;
}
#right {
display: inline-block;
background: green;
width: 80%;
height: 100%;
vertical-align: top;
}
</style></head><body>
<div id="left">Left</div><div id="right"><p>Right</p><p>Right 2</p></div>
</body></html>
</code></pre>
http://stackoverflow.com/questions/596023/vs-2005-web-site-project-template-annoyance/596050#5960503Answer by Josh for VS 2005 Web Site Project Template Annoyance.Josh2009-02-27T18:42:04Z2009-02-27T18:42:04Z<p>You'll likely find it registered in web.config (system.web>pages>controls i believe). You can globaly register controls there just as you would on the page.</p>
<pre><code><pages>
<controls>
<add tagPrefix="asp" namespace="System.Web.UI" assembly="System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />
<add tagPrefix="asp" namespace="System.Web.UI.WebControls" assembly="System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />
</controls>
</pages>
</code></pre>
http://stackoverflow.com/questions/595004/tiny-way-to-get-the-first-25-characters/595221#5952213Answer by Josh for Tiny way to get the first 25 charactersJosh2009-02-27T15:30:47Z2009-02-27T16:17:28Z<p>Well I know there's answer accepted already and I may get crucified for throwing out a regular expression here but this is how I usually do it:</p>
<pre><code>//may return more than 25 characters depending on where in the string 25 characters is at
public string ShortDescription(string val)
{
return Regex.Replace(val, @"(.{25})[^\s]*.*","$1...");
}
// stricter version that only returns 25 characters, plus 3 for ...
public string ShortDescriptionStrict(string val)
{
return Regex.Replace(val, @"(.{25}).*","$1...");
}
</code></pre>
<p>It has the nice side benefit of not cutting a word in half as it always stops after the first whitespace character past 25 characters. (Of course if you need it to truncate text going into a database, that might be a problem.</p>
<p>Downside, well I'm sure it's not the fastest solution possible.</p>
<p><strong>EDIT:</strong> replaced … with "..." since not sure if this solution is for the web!</p>
http://stackoverflow.com/questions/591539/forms-can-they-be-done-without-tables/591635#5916350Answer by Josh for Forms - Can they be done without tables?Josh2009-02-26T17:45:50Z2009-02-26T17:51:41Z<p>I have used this in the past fairly effectively:</p>
<p><strong>HTML:</strong></p>
<pre><code><fieldset>
<p>
<label for="myTextBox">Name</label>
<span class="field"><input type="text" name="myTextBox" id="myTextBox" /></span>
<span class="error">This a message place</span>
</p>
</fieldset>
</code></pre>
<p><strong>CSS:</strong></p>
<pre><code><style type="text/css">
fieldset label, fieldset .field, fieldset .error { display: -moz-inline-box; display: inline-block; zoom: 1; vertical-align: top; }
fieldset p { margin: .5em 0; }
fieldset label { width: 10em; text-align: right; line-height: 1.1; }
fieldset .field { width: 20em; }
</style>
</code></pre>
<p>The only really gotcha is Firefox 2 which gracefully degrades. (see the -moz-inline-box which is a bit of hack, but not too bad)</p>
http://stackoverflow.com/questions/591019/asp-net-persisting-data-across-the-application/591049#5910491Answer by Josh for ASP.Net Persisting Data Across the ApplicationJosh2009-02-26T15:36:07Z2009-02-26T15:51:04Z<p>You can change the Session State Server to not be in process which will make it far more stable and also seperate it from the worker process (You'll need to be able to start the Asp.NET State Service on the server if it's not already running)</p>
<pre><code><sessionState mode="StateServer" stateConnectionString="tcpip=127.0.0.1:42424" sqlConnectionString="data source=127.0.0.1;Trusted_Connection=yes" cookieless="false" timeout="20"/>
</code></pre>
<p>Also if you need to share it across applications in the same domain you should be able to give them the same <a href="http://msdn.microsoft.com/en-us/library/ms998288.aspx" rel="nofollow">machine key</a></p>
http://stackoverflow.com/questions/590974/asp-net-sqldatasource-detailsview-use-stored-proc-to-insert-record/591069#5910690Answer by Josh for asp.net - sqldatasource - detailsview - use stored proc to insert recordJosh2009-02-26T15:41:52Z2009-02-26T15:41:52Z<p>I think you may be missing <code><code>SqlDataSource1.InsertCommandType = CommandType.StoredProcedure</code></code></p>
http://stackoverflow.com/questions/585453/postgresql-tree-organization/587019#5870190Answer by Josh for PostgreSQL - tree organizationJosh2009-02-25T17:36:34Z2009-02-25T17:36:34Z<p>I've become fond of the the nested set model for this kind of situation. The Updates and Inserts can be a bit tricky, but the selects are usually very concise and fast. The performance can be even better if you add an actual reference to the parent of a node (it will eliminate a join in some cases. It also includes a natural sorting of childnodes.</p>
<ul>
<li><a href="http://www.developersdex.com/gurus/articles/112.asp" rel="nofollow">Trees in SQL</a></li>
</ul>
<p>A typical query for the current node and all children would look like:</p>
<pre><code>select name
from nestedSet c inner join nestedSet p ON c.lft BETWEEN p.lft AND p.rgt
where p.id = 1
order by lft
</code></pre>
<p>A few well placed <code>group by</code> clauses will also net you some quick stats about your tree.</p>
http://stackoverflow.com/questions/583540/asp-net-gridview-with-all-records-editable/583640#5836401Answer by Josh for ASP.NET Gridview with all records editable.Josh2009-02-24T21:14:16Z2009-02-24T21:19:43Z<p>I would be inclined to use the ListView personally for this, since you can insert Rows with it. Your LayoutTemplate would be a table with a <tr runat="server" ID="itemPlaceHolder" /> in it. Your ItemTemplate would have your TextBox's (and optional a save button per row. Then you could have an InsertItemTemplate if you need inserts as well.</p>
<p>Anywhere on the page you can add a button to Save all items by looping through the ListView.Item collection and calling ListView.Update(itemIndex, validate).</p>
<pre><code><asp:ListView runat="server" ID="lv" InsertItemPosition="LastItem" DataKeyNames="id">
<LayoutTemplate>
<asp:LinkButton runat="server" OnClick="SaveAll" Text="Save All" />
<table>
<tr>
<th>First Name</th>
<th>Last Name</th>
<th>Email</th>
</tr>
<tr runat="server" id="itemPlaceHolder" />
</table>
<asp:LinkButton runat="server" OnClick="SaveAll" Text="Save All" />
</LayoutTemplate>
<ItemTemplate>
<tr>
<td><asp:TextBox runat="server" ID="firstName" Text='<%#Bind("firstName") %>' /></td>
<td><asp:TextBox runat="server" ID="firstName" Text='<%#Bind("lastName") %>' /></td>
<td><asp:TextBox runat="server" ID="firstName" Text='<%#Bind("email") %>' /></td>
<td><asp:LinkButton runat="server" CommandName="update" Text="Save" /></td>
</tr>
</ItemTemplate>
<InsertItemTemplate>
<tr>
<td><asp:TextBox runat="server" ID="firstName" Text='<%#Bind("firstName") %>' /></td>
<td><asp:TextBox runat="server" ID="firstName" Text='<%#Bind("lastName") %>' /></td>
<td><asp:TextBox runat="server" ID="firstName" Text='<%#Bind("email") %>' /></td>
<td><asp:LinkButton runat="server" CommandName="insert" Text="Save" /></td>
</tr>
</InsertItemTemplate>
</asp:ListView>
protected void SaveAll(object sender, EventArgs e)
{
lv.Items.ToList().ForEach(li => lv.UpdateItem(li.DataItemIndex, true)_;
}
</code></pre>
http://stackoverflow.com/questions/583263/dynamically-reducing-image-dimension-as-well-as-image-size-in-c/583324#5833240Answer by Josh for Dynamically reducing image dimension as well as image size in C#Josh2009-02-24T19:59:53Z2009-02-24T19:59:53Z<p>You could try either of these 2 projects on <a href="http://www.codeplex.com" rel="nofollow">CodePlex.com</a>, both offer dynamic image generation with caching.</p>
<ul>
<li><a href="http://www.codeplex.com/dynamicimageprocess" rel="nofollow">Dynamic Image Process</a></li>
<li><a href="http://www.codeplex.com/aspnet/Wiki/View.aspx?title=Image%20Generation&referringTitle=WebForms" rel="nofollow">ASP.NET Image Generation</a></li>
</ul>
<p>The later is straight from Microsoft.</p>
http://stackoverflow.com/questions/1616353/how-can-i-get-a-directory-from-a-uri/1616443#1616443Comment by Josh on How can I get a directory from a UriJosh2009-10-23T23:49:10Z2009-10-23T23:49:10ZErm....haha silly testing ground statements! Dump() is an internal method for LINQPad which is where I usually test things before posting them!http://stackoverflow.com/questions/1616353/how-can-i-get-a-directory-from-a-uri/1616484#1616484Comment by Josh on How can I get a directory from a UriJosh2009-10-23T23:46:17Z2009-10-23T23:46:17ZThis can very by host computer: for instance I get http:\mysite.com\mydirectoryhttp://stackoverflow.com/questions/1616353/how-can-i-get-a-directory-from-a-uri/1616425#1616425Comment by Josh on How can I get a directory from a UriJosh2009-10-23T23:44:32Z2009-10-23T23:44:32ZI had something very similar, but I like this much, better since it has one less function call!http://stackoverflow.com/questions/1267993/sql-update-multiple-fields-from-via-a-select-statement/1268361#1268361Comment by Josh on SQL Update Multiple Fields FROM via a SELECT StatementJosh2009-08-12T20:07:41Z2009-08-12T20:07:41ZI'm not sure given the original example there is a one to one (or many) relationship between BookingDetails and Shipment for bd.MyID to s.MyID2. Example given has (admittingly I'm assuming) two different paramters for ids, so I'm assuming the potential for them to be differnet. I agree though that if an eplicit join exists it should be used!http://stackoverflow.com/questions/1267993/sql-update-multiple-fields-from-via-a-select-statement/1268110#1268110Comment by Josh on SQL Update Multiple Fields FROM via a SELECT StatementJosh2009-08-12T19:26:45Z2009-08-12T19:26:45ZWell there was a question about why is specify Shipment in the FROM clause instead of near after update. marc_s answer above and this actually have the exact same execution plan in MSSQLhttp://stackoverflow.com/questions/1267993/sql-update-multiple-fields-from-via-a-select-statement/1268110#1268110Comment by Josh on SQL Update Multiple Fields FROM via a SELECT StatementJosh2009-08-12T19:22:24Z2009-08-12T19:22:24ZSame difference. It's cleaner to me. I'm not double selecting. I'm getting only the results from s as the come from the FROM clause.http://stackoverflow.com/questions/835877/master-page-weirdness-content-controls-have-to-be-top-level-controls-in-a-cont/835978#835978Comment by Josh on Master Page Weirdness - "Content controls have to be top-level controls in a content page or a nested master page that references a master page."Josh2009-05-07T17:27:50Z2009-05-07T17:27:50Zgah...beat me to it!
http://stackoverflow.com/questions/758012/one-user-control-updating-another-during-ajax-postback/758122#758122Comment by Josh on One user control updating another during AJAX Postback?Josh2009-04-17T03:29:53Z2009-04-17T03:29:53ZWell you described the problem perfectly, it's just sometimes the devils in the details! And in this case the details may well be the code. .NET is fickle beast and timing is everything!http://stackoverflow.com/questions/758012/one-user-control-updating-another-during-ajax-postbackComment by Josh on One user control updating another during AJAX Postback?Josh2009-04-16T21:07:15Z2009-04-16T21:07:15ZPerhaps a little a code will get the ball rolling. In particular how search control get its reference to the product control, and is the product code reliant on anything in the search control happening first?http://stackoverflow.com/questions/722013/pre-render-event-in-asp-net/722037#722037Comment by Josh on Pre render event in asp.netJosh2009-04-06T16:26:04Z2009-04-06T16:26:04ZNot terribly familiar with RadGrid so all I could offer is a guess. I'm thinking when Inserting a new item with RadGrid it put's the new item as the first entry (eg top row of first page), and so testing it for IsItemInserted is basically asking "Am I trying to insert a new record?"http://stackoverflow.com/questions/634802/how-to-prevent-3px-extra-bottom-padding-on-list-items-in-ie7Comment by Josh on How to prevent 3px extra bottom padding on list items in IE7Josh2009-03-11T16:08:11Z2009-03-11T16:08:11ZI updated my answer, it's now an alternate way of accomplishing the layout you want.
http://stackoverflow.com/questions/634802/how-to-prevent-3px-extra-bottom-padding-on-list-items-in-ie7Comment by Josh on How to prevent 3px extra bottom padding on list items in IE7Josh2009-03-11T15:46:41Z2009-03-11T15:46:41Zyou can give the div ul li { float: left; clear: left; } but I don't think that's any clearer than just adjusting the margins.http://stackoverflow.com/questions/634802/how-to-prevent-3px-extra-bottom-padding-on-list-items-in-ie7/634861#634861Comment by Josh on How to prevent 3px extra bottom padding on list items in IE7Josh2009-03-11T15:46:00Z2009-03-11T15:46:00Z-1 This doesn't really have anything to do with browser default css. It has to do with a bug related to IE6/7 and rendering LI's when hasLayout has been set (via width, height, zoom, etc)http://stackoverflow.com/questions/633286/nullable-types-best-way-to-check-for-null-or-zero-in-c/633294#633294Comment by Josh on nullable types: best way to check for null or zero in c#Josh2009-03-11T05:43:09Z2009-03-11T05:43:09Z@nailitdown: (part II) Your return statement would then look like
return (value ?? default(T)).Equals(valueToCheck);http://stackoverflow.com/questions/633286/nullable-types-best-way-to-check-for-null-or-zero-in-c/633294#633294Comment by Josh on nullable types: best way to check for null or zero in c#Josh2009-03-11T05:40:51Z2009-03-11T05:40:51Z@nailitdown: not really, you just need an extension method for Nullable<T>. double? is an alias for Nullable<double>. Your signature will look like: public static bool IsNullOrValue<T>(this Nullable<T>, t valueToCheck) where T : struct