User Jeremy Kratz - Stack Overflowmost recent 30 from stackoverflow.com2009-12-01T16:21:44Zhttp://stackoverflow.com/feeds/user/4258http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1401291/xslt-applied-to-xml-doc-with-xmlns-attribute1XSLT applied to XML doc with xmlns attributeJeremy Kratz2009-09-09T18:28:32Z2009-09-09T18:34:14Z
<p>I'm applying an XSLT stylesheet to the following XML file:</p>
<pre><code><top xmlns="http://www.foo.com/bar">
<elementA />
<elementB />
<contents>
<contentitem>
<id>3</id>
<moretags1 />
<moretags2 />
</contentitem>
<contentitem>
<id>2</id>
<moretags1 />
<moretags2 />
</contentitem>
<contentitem>
<id>1</id>
<moretags1 />
<moretags2 />
</contentitem>
</contents>
</top>
</code></pre>
<p>Here's my current XSLT file (performs a simple sort):</p>
<pre><code><xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:doc="http://www.foo.com/bar">
<xsl:output omit-xml-declaration="yes" indent="yes"/>
<!-- -->
<xsl:strip-space elements="*"/>
<!-- -->
<xsl:template match="node()|@*">
<xsl:copy>
<xsl:apply-templates select="node()|@*"/>
</xsl:copy>
</xsl:template>
<!-- -->
<xsl:template match="contents">
<xsl:copy>
<xsl:apply-templates select="@*"/>
<xsl:apply-templates select="contentitem">
<xsl:sort select="id" data-type="number"/>
</xsl:apply-templates>
</xsl:copy>
</xsl:template>
</xsl:stylesheet>
</code></pre>
<p>Problem is, I do not know exactly how to use the 'doc:' namespace prefix with the xsl:template and xsl:apply-templates tags.</p>
<p>Right now, the XML document is copied as-is, so I believe the first xsl:template block is being applied. However, the items are unsorted, so I think the problem lies in the second xsl:template.</p>
<p>I should note that if I remove the xmlns attributes from both files, the transformation works properly.</p>
<p>Any suggestions?</p>
<p>(question is based on <a href="http://stackoverflow.com/questions/572854/how-to-sort-a-subelement-of-xml-with-xslt">this example</a>)</p>
http://stackoverflow.com/questions/1214551/session-timing-out-on-asp-net-app-after-visiting-php-app-on-same-server/1214951#12149511Answer by Jeremy Kratz for Session timing out on ASP.NET app after visiting PHP app on same serverJeremy Kratz2009-07-31T21:18:44Z2009-07-31T21:18:44Z<p>Hi hellbox--</p>
<p>I've had similar problems with classic ASP sites running on the same server as ASP.NET sites.</p>
<p>I'm usually able to fix the problem by creating 2 application pools under IIS: one for the ASP sites and one for the ASP.NET sites.</p>
<p>Do you have access to the server's IIS manager, or can you contact someone who does? If so, create 2 separate app pools: one for PHP sites and one for ASP.NET sites. Then move each site into the appropriate app pool. Restart IIS if you can, and then see if anything's changed.</p>
<p>Hope this helps!</p>
http://stackoverflow.com/questions/1071421/how-can-i-create-a-maintenance-mode-for-sharepoint/1074329#10743291Answer by Jeremy Kratz for How can I create a 'maintenance mode' for SharePoint?Jeremy Kratz2009-07-02T13:26:50Z2009-07-02T13:26:50Z<p>If you want to make the site completely inaccessible, you could write a script to add an app_offline.htm file to the SharePoint site's root directory.</p>
<p>This would prevent anybody from accessing the site, so it might not be ideal if you need to allow admins to login. But it might be a solution if you have a backdoor.</p>
http://stackoverflow.com/questions/919550/oncheckedchanged-event-of-checkbox-within-a-gridview/922527#9225270Answer by Jeremy Kratz for onCheckedChanged event of checkbox within a gridviewJeremy Kratz2009-05-28T18:42:52Z2009-05-28T18:42:52Z<p>Hi Khushi--</p>
<p>Could you replace the code in your chkJobID_CheckedChanged event handler with this:</p>
<pre><code>Response.Write(DateTime.Now.ToLongTimeString());
</code></pre>
<p>Then view the page and try checking and unchecking the checkbox. This will tell us if the event handler is firing for both check and uncheck actions, which should help us narrow down the problem.</p>
<p>--Jeremy</p>
http://stackoverflow.com/questions/920242/gridview-dot-net-layout/921022#9210220Answer by Jeremy Kratz for Gridview dot net layoutJeremy Kratz2009-05-28T14:05:18Z2009-05-28T14:05:18Z<p>Hi David--</p>
<p>Unfortunately, I don't believe there's an easy way to add a second row to each GridView record.</p>
<p>If you don't need the built-in sorting/editing/deleting that the GridView offers, might I recommend the ListView control? This would allow you to write very specific HTML code for each data item, giving you the ability to create the additional 2nd row for each item.</p>
<p>Hope this helps!
--Jeremy</p>
http://stackoverflow.com/questions/733828/how-to-combine-dropdownlists-and-null-fields-in-gridview/734335#7343350Answer by Jeremy Kratz for how to combine dropdownlists and null fields in gridview?Jeremy Kratz2009-04-09T13:52:07Z2009-04-09T13:52:07Z<p>Hi David--</p>
<p>Please try this:</p>
<pre><code> <asp:DropDownList ID="DropDownList1"
DataSourceID="SupplierDataSource"
DataValueField="SupplierID"
DataTextField="CompanyName"
SelectedValue='<%#Bind("SupplierID")%>'
runat="server"
AppendDataBoundItems="true">
<asp:ListItem Value="" Text="None" />
</asp:DropDownList>
</code></pre>
<p>This should add an empty list item to your dropdown. I believe your datasource will interpret this as a null value, but I have not tested the code yet.</p>
<p>Hope this helps!</p>
http://stackoverflow.com/questions/685717/add-gridview-row-after-header/685865#6858650Answer by Jeremy Kratz for Add Gridview Row AFTER HeaderJeremy Kratz2009-03-26T13:45:44Z2009-03-26T13:45:44Z<p>Hi ropstah--</p>
<p>Try this when you add the row to the InnerTable:</p>
<pre><code>t.Controls.AddAt(1, r)
</code></pre>
<p>Here's a quick basic test I did, which seems to work OK:</p>
<pre><code>Protected Sub gridview_DataBound(ByVal sender As Object, ByVal e As System.EventArgs) Handles gridview.DataBound
Dim g As GridView = CType(sender, GridView)
Dim r As New GridViewRow(0, -1, DataControlRowType.Header, DataControlRowState.Normal)
Dim th As New TableHeaderCell()
th.ColumnSpan = g.Columns.Count
th.Text = "This is my new header"
r.Cells.Add(th)
Dim t As Table = CType(g.Controls(0), Table)
t.Rows.AddAt(1, r)
End Sub
</code></pre>
http://stackoverflow.com/questions/656464/how-to-dynamically-show-images-in-a-asp-net-gridview/658280#6582801Answer by Jeremy Kratz for How to dynamically show images in a asp.net gridview?Jeremy Kratz2009-03-18T13:36:32Z2009-03-18T13:36:32Z<p>This is a little messy, but it's all contained in the template tag:</p>
<pre><code><ItemTemplate>
<img src='<%# (bool)Eval("signoff") ? "thumbsup" : "thumbsdown" %>.gif' alt="whatever" width="16" height="16" />
</ItemTemplate>
</code></pre>
<p>Hope this helps!</p>
http://stackoverflow.com/questions/655947/not-changing-header-text-color-in-gridview-through-using-css/658250#6582501Answer by Jeremy Kratz for Not Changing Header Text Color In Gridview through using CSSJeremy Kratz2009-03-18T13:28:22Z2009-03-18T13:28:22Z<p>Hi Kartik--</p>
<p>The CSS class you've assigned (GridHeaderStyle) is being applied to the header cells, not the header links. It sounds like the default link color is being applied.</p>
<p>Add the following to your CSS file:</p>
<pre><code>.GridHeaderStyle a {color: red;}
</code></pre>
<p>This should change the link color in the headers.</p>
<p>Hope this helps!</p>
http://stackoverflow.com/questions/541177/gridview-column-width-changing/647214#6472140Answer by Jeremy Kratz for Gridview Column width changing.Jeremy Kratz2009-03-15T03:20:53Z2009-03-15T03:20:53Z<p>Hi zohair--</p>
<p>You can set the column directly with the GridView tag:</p>
<pre><code><asp:GridView ID="myGrid" runat="server">
<Columns>
<asp:BoundField DataField="myColumn" ControlStyle-Width="25%" />
</Columns>
</asp:GridView>
</code></pre>
<p>You could also assign the column a CSS class, and then use CSS to set the column width.</p>
http://stackoverflow.com/questions/538316/dropdownlist-in-gridview-not-available-when-editing/647203#6472030Answer by Jeremy Kratz for DropDownList in GridView not available when EditingJeremy Kratz2009-03-15T03:12:30Z2009-03-15T03:12:30Z<p>Hi Dave--</p>
<p>Your code looks OK to me, too. Here are a couple of things that might help your troubleshooting:</p>
<ol>
<li>Try replacing the EditItemTemplate's DropDownList and ObjectDataSource with some simple text, then see if the text shows up when you click Edit.</li>
<li>Try hooking the GridView up to a DataSource object, and remove the OnRowEditing event from the GridView tag. Then see if the GridView switches to Edit mode OK.</li>
<li>Try moving the ObjectDataSource outside of the GridView. I don't know if it makes any difference, but I usually have mine located outside.</li>
</ol>
<p>Let us know if this changes anything for you.</p>
http://stackoverflow.com/questions/576728/how-to-add-custom-tablecell-collection-to-gridview-row/647192#6471920Answer by Jeremy Kratz for How to add custom tablecell collection to gridview rowJeremy Kratz2009-03-15T03:03:14Z2009-03-15T03:03:14Z<p>Hi deadbug--</p>
<p>Does your custom GridView control extend the built-in GridView?</p>
<p>If so, it should be possible to use your custom TableCell in your GridView's RenderContents function.</p>
<p>If you'd like, please post any of your code that might help. I've worked on custom GridViews before (albeit with very limited functionality), so I might be able to lend a hand.</p>
http://stackoverflow.com/questions/647172/what-are-the-pros-and-cons-of-using-an-email-address-as-a-user-id/647177#64717713Answer by Jeremy Kratz for What are the pros and cons of using an email address as a user id?Jeremy Kratz2009-03-15T02:49:16Z2009-03-15T02:49:16Z<p>Personally, I prefer just using my email address as a username. It's one less thing to remember, and I never have to worry about my preferred name being already taken.</p>
<p>Just my 2 cents!</p>
http://stackoverflow.com/questions/21640/net-get-protocol-host-and-port5.NET - Get protocol, host, and portJeremy Kratz2008-08-22T02:18:28Z2009-02-23T15:45:56Z
<p>Is there a simple way in .NET to quickly get the current protocol, host, and port? For example, if I'm on the following URL:</p>
<p><a href="http://www.mywebsite.com:80/pages/page1.aspx" rel="nofollow">http://www.mywebsite.com:80/pages/page1.aspx</a></p>
<p>I need to return:</p>
<p><a href="http://www.mywebsite.com:80" rel="nofollow">http://www.mywebsite.com:80</a></p>
<p>I know I can use Request.Url.AbsoluteUri to get the complete URL, and I know I can use Request.Url.Authority to get the host and port, but I'm not sure of the best way to get the protocol without parsing out the URL string.</p>
<p>Any suggestions?</p>
http://stackoverflow.com/questions/478825/is-yui-grids-css-really-that-flexible/480000#4800000Answer by Jeremy Kratz for Is YUI grids.css really that flexible?Jeremy Kratz2009-01-26T14:45:49Z2009-01-26T14:45:49Z<p>Hi Simon--</p>
<p>If you do investigate alternatives to YUI, check out the Blueprint CSS Generator (<a href="http://kematzy.com/blueprint-generator/" rel="nofollow">http://kematzy.com/blueprint-generator/</a>). It's a good quick way to customize your CSS grid (based on <a href="http://www.blueprintcss.org/" rel="nofollow">Blueprint CSS</a>).</p>
<p>Unfortunately, I do not know if there is a similar tool for YUI or not.</p>
http://stackoverflow.com/questions/469854/opacity-issue-with-css-div-and-aspimage/470260#4702600Answer by Jeremy Kratz for Opacity issue with css, div, and asp:ImageJeremy Kratz2009-01-22T18:14:11Z2009-01-22T18:14:11Z<p>Try this:</p>
<pre><code>.Splash .imgOpac
{
filter:alpha(opacity = 100);
-moz-opacity:1.0;
}
</code></pre>
<p>That should override the Splash class.</p>
http://stackoverflow.com/questions/468008/best-ways-to-get-around-css-backgrounds-not-printing/470247#4702472Answer by Jeremy Kratz for Best Ways to Get Around CSS Backgrounds Not PrintingJeremy Kratz2009-01-22T18:11:46Z2009-01-22T18:11:46Z<p>Two suggestions:</p>
<ol>
<li>Color-code text in the table rows</li>
<li>Add color-coded icons to the beginning or end of the table rows</li>
</ol>
<p>You could even incorporate these into the normal view with your background colors.</p>
http://stackoverflow.com/questions/465805/how-can-i-override-an-inline-style-with-an-external-css/465820#4658200Answer by Jeremy Kratz for How can I override an inline style with an external css?Jeremy Kratz2009-01-21T15:49:53Z2009-01-21T15:49:53Z<p>Unfortunately, inline CSS is always the last style applied to an element, so the inline styles will always override external styles.</p>
<p>If the Gridview's generated styles are giving you fits, have a look at the ASP.NET CSS Friendly Control Adapters (<a href="http://www.asp.net/CssAdapters/" rel="nofollow">http://www.asp.net/CssAdapters/</a>). It's a great project.</p>
http://stackoverflow.com/questions/77079/what-is-the-best-css-grid-framework-that-integrates-with-wordpress/79383#793832Answer by Jeremy Kratz for What is the best CSS grid framework that integrates with Wordpress?Jeremy Kratz2008-09-17T02:42:42Z2008-09-17T02:42:42Z<p>Some folks have created ready-made Wordpress themes using Blueprint:</p>
<p><a href="http://wordpress.org/extend/themes/blueprint-theme" rel="nofollow">http://wordpress.org/extend/themes/blueprint-theme</a></p>
<p><a href="http://www.slipfire.com/sf-blueprint-wp-theme-52.htm" rel="nofollow">http://www.slipfire.com/sf-blueprint-wp-theme-52.htm</a></p>
<p>These might serve as good starting points for a design.</p>
http://stackoverflow.com/questions/26280/favorite-web-host/72733#727333Answer by Jeremy Kratz for Favorite web host.Jeremy Kratz2008-09-16T14:13:58Z2008-09-16T14:13:58Z<p>I'm happy with <a href="http://www.webhost4life.com/" rel="nofollow">Webhost4life</a>. The name is annoying, but they've been solid so far.</p>
http://stackoverflow.com/questions/27712/what-to-charge-for-a-simple-website/72683#726830Answer by Jeremy Kratz for What to charge for a simple websiteJeremy Kratz2008-09-16T14:10:45Z2008-09-16T14:10:45Z<p>A good way to get a ballpark figure is to figure up your hourly rate (you can do this based on your salary + benefits if you work in the same field), then estimate the number of hours you'll need to finish the project, and then add 10% to cover anything unexpected.</p>
http://stackoverflow.com/questions/41198/css-getting-image-to-stretch-a-div/42090#420902Answer by Jeremy Kratz for CSS: Getting image to stretch a divJeremy Kratz2008-09-03T16:39:46Z2008-09-03T16:53:18Z<p>One trick you can use is to set the <code><div></code>'s overflow property to hidden. This forces browsers to calculate the physical size of the box, and fixes the weird overlap problem with the floated image. It will save you from adding in any extra HTML markup.</p>
<p>Here's how the class should look:</p>
<pre><code>.product1 {
width: 100%;
padding: 5px;
margin: 0px 0px 15px -5px;
background: #ADA19A;
color: #000000;
min-height: 100px;
overflow: hidden;
}
</code></pre>
http://stackoverflow.com/questions/2084/can-you-recommend-a-good-css-online-resource-or-book/40127#401270Answer by Jeremy Kratz for Can you recommend a good CSS online resource or book?Jeremy Kratz2008-09-02T17:40:29Z2008-09-02T17:40:29Z<p>Jeffrey Zeldman's <a href="http://rads.stackoverflow.com/amzn/click/0321385551" rel="nofollow">Designing with Web Standards</a> is a great web book. It's not specifically focused on CSS; it's more of an explanation of why you should use XHTML and CSS when designing a website.</p>
http://stackoverflow.com/questions/38336/on-the-web-what-fonts-should-i-use-to-create-an-equivalent-experience-cross-plat/39692#3969210Answer by Jeremy Kratz for On the web, what fonts should I use to create an equivalent experience cross-platform?Jeremy Kratz2008-09-02T14:41:31Z2008-09-02T14:41:31Z<p>Here are some good up-to-date listings of the most-installed fonts for PC, Mac, and Linux:</p>
<p><a href="http://www.codestyle.org/css/font-family/sampler-SansSerif.shtml" rel="nofollow">Sans serif font sampler and survey results</a></p>
<p><a href="http://www.codestyle.org/css/font-family/sampler-Serif.shtml" rel="nofollow">Serif font sampler and survey results</a></p>
<p>Hope this helps your decision!</p>
http://stackoverflow.com/questions/15326/ie7-html-css-margin-bottom-bug/19264#192641Answer by Jeremy Kratz for IE7 HTML/CSS margin-bottom bug.Jeremy Kratz2008-08-21T03:01:45Z2008-08-21T03:01:45Z<p>If you remove the float from the element below the table, does the margin appear?</p>
http://stackoverflow.com/questions/1401291/xslt-applied-to-xml-doc-with-xmlns-attribute/1401320#1401320Comment by Jeremy Kratz on XSLT applied to XML doc with xmlns attributeJeremy Kratz2009-09-09T18:39:31Z2009-09-09T18:39:31ZWow, that was even simpler than I expected. Turns out I was missing the doc:id on the sort tag. Thanks Ölbaum!http://stackoverflow.com/questions/569737/documentation-templates-html-stylesheet/569771#569771Comment by Jeremy Kratz on Documentation templates (html/stylesheet)Jeremy Kratz2009-02-20T21:34:28Z2009-02-20T21:34:28ZGreat link! Delicious'd.