User Jeremy Kratz - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T16:21:44Z http://stackoverflow.com/feeds/user/4258 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1401291/xslt-applied-to-xml-doc-with-xmlns-attribute 1 XSLT applied to XML doc with xmlns attribute Jeremy Kratz 2009-09-09T18:28:32Z 2009-09-09T18:34:14Z <p>I'm applying an XSLT stylesheet to the following XML file:</p> <pre><code>&lt;top xmlns="http://www.foo.com/bar"&gt; &lt;elementA /&gt; &lt;elementB /&gt; &lt;contents&gt; &lt;contentitem&gt; &lt;id&gt;3&lt;/id&gt; &lt;moretags1 /&gt; &lt;moretags2 /&gt; &lt;/contentitem&gt; &lt;contentitem&gt; &lt;id&gt;2&lt;/id&gt; &lt;moretags1 /&gt; &lt;moretags2 /&gt; &lt;/contentitem&gt; &lt;contentitem&gt; &lt;id&gt;1&lt;/id&gt; &lt;moretags1 /&gt; &lt;moretags2 /&gt; &lt;/contentitem&gt; &lt;/contents&gt; &lt;/top&gt; </code></pre> <p>Here's my current XSLT file (performs a simple sort):</p> <pre><code>&lt;xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:doc="http://www.foo.com/bar"&gt; &lt;xsl:output omit-xml-declaration="yes" indent="yes"/&gt; &lt;!-- --&gt; &lt;xsl:strip-space elements="*"/&gt; &lt;!-- --&gt; &lt;xsl:template match="node()|@*"&gt; &lt;xsl:copy&gt; &lt;xsl:apply-templates select="node()|@*"/&gt; &lt;/xsl:copy&gt; &lt;/xsl:template&gt; &lt;!-- --&gt; &lt;xsl:template match="contents"&gt; &lt;xsl:copy&gt; &lt;xsl:apply-templates select="@*"/&gt; &lt;xsl:apply-templates select="contentitem"&gt; &lt;xsl:sort select="id" data-type="number"/&gt; &lt;/xsl:apply-templates&gt; &lt;/xsl:copy&gt; &lt;/xsl:template&gt; &lt;/xsl:stylesheet&gt; </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#1214951 1 Answer by Jeremy Kratz for Session timing out on ASP.NET app after visiting PHP app on same server Jeremy Kratz 2009-07-31T21:18:44Z 2009-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#1074329 1 Answer by Jeremy Kratz for How can I create a 'maintenance mode' for SharePoint? Jeremy Kratz 2009-07-02T13:26:50Z 2009-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#922527 0 Answer by Jeremy Kratz for onCheckedChanged event of checkbox within a gridview Jeremy Kratz 2009-05-28T18:42:52Z 2009-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#921022 0 Answer by Jeremy Kratz for Gridview dot net layout Jeremy Kratz 2009-05-28T14:05:18Z 2009-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#734335 0 Answer by Jeremy Kratz for how to combine dropdownlists and null fields in gridview? Jeremy Kratz 2009-04-09T13:52:07Z 2009-04-09T13:52:07Z <p>Hi David--</p> <p>Please try this:</p> <pre><code> &lt;asp:DropDownList ID="DropDownList1" DataSourceID="SupplierDataSource" DataValueField="SupplierID" DataTextField="CompanyName" SelectedValue='&lt;%#Bind("SupplierID")%&gt;' runat="server" AppendDataBoundItems="true"&gt; &lt;asp:ListItem Value="" Text="None" /&gt; &lt;/asp:DropDownList&gt; </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#685865 0 Answer by Jeremy Kratz for Add Gridview Row AFTER Header Jeremy Kratz 2009-03-26T13:45:44Z 2009-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#658280 1 Answer by Jeremy Kratz for How to dynamically show images in a asp.net gridview? Jeremy Kratz 2009-03-18T13:36:32Z 2009-03-18T13:36:32Z <p>This is a little messy, but it's all contained in the template tag:</p> <pre><code>&lt;ItemTemplate&gt; &lt;img src='&lt;%# (bool)Eval("signoff") ? "thumbsup" : "thumbsdown" %&gt;.gif' alt="whatever" width="16" height="16" /&gt; &lt;/ItemTemplate&gt; </code></pre> <p>Hope this helps!</p> http://stackoverflow.com/questions/655947/not-changing-header-text-color-in-gridview-through-using-css/658250#658250 1 Answer by Jeremy Kratz for Not Changing Header Text Color In Gridview through using CSS Jeremy Kratz 2009-03-18T13:28:22Z 2009-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#647214 0 Answer by Jeremy Kratz for Gridview Column width changing. Jeremy Kratz 2009-03-15T03:20:53Z 2009-03-15T03:20:53Z <p>Hi zohair--</p> <p>You can set the column directly with the GridView tag:</p> <pre><code>&lt;asp:GridView ID="myGrid" runat="server"&gt; &lt;Columns&gt; &lt;asp:BoundField DataField="myColumn" ControlStyle-Width="25%" /&gt; &lt;/Columns&gt; &lt;/asp:GridView&gt; </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#647203 0 Answer by Jeremy Kratz for DropDownList in GridView not available when Editing Jeremy Kratz 2009-03-15T03:12:30Z 2009-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#647192 0 Answer by Jeremy Kratz for How to add custom tablecell collection to gridview row Jeremy Kratz 2009-03-15T03:03:14Z 2009-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#647177 13 Answer by Jeremy Kratz for What are the pros and cons of using an email address as a user id? Jeremy Kratz 2009-03-15T02:49:16Z 2009-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-port 5 .NET - Get protocol, host, and port Jeremy Kratz 2008-08-22T02:18:28Z 2009-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#480000 0 Answer by Jeremy Kratz for Is YUI grids.css really that flexible? Jeremy Kratz 2009-01-26T14:45:49Z 2009-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#470260 0 Answer by Jeremy Kratz for Opacity issue with css, div, and asp:Image Jeremy Kratz 2009-01-22T18:14:11Z 2009-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#470247 2 Answer by Jeremy Kratz for Best Ways to Get Around CSS Backgrounds Not Printing Jeremy Kratz 2009-01-22T18:11:46Z 2009-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#465820 0 Answer by Jeremy Kratz for How can I override an inline style with an external css? Jeremy Kratz 2009-01-21T15:49:53Z 2009-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#79383 2 Answer by Jeremy Kratz for What is the best CSS grid framework that integrates with Wordpress? Jeremy Kratz 2008-09-17T02:42:42Z 2008-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#72733 3 Answer by Jeremy Kratz for Favorite web host. Jeremy Kratz 2008-09-16T14:13:58Z 2008-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#72683 0 Answer by Jeremy Kratz for What to charge for a simple website Jeremy Kratz 2008-09-16T14:10:45Z 2008-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#42090 2 Answer by Jeremy Kratz for CSS: Getting image to stretch a div Jeremy Kratz 2008-09-03T16:39:46Z 2008-09-03T16:53:18Z <p>One trick you can use is to set the <code>&lt;div&gt;</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#40127 0 Answer by Jeremy Kratz for Can you recommend a good CSS online resource or book? Jeremy Kratz 2008-09-02T17:40:29Z 2008-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#39692 10 Answer by Jeremy Kratz for On the web, what fonts should I use to create an equivalent experience cross-platform? Jeremy Kratz 2008-09-02T14:41:31Z 2008-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#19264 1 Answer by Jeremy Kratz for IE7 HTML/CSS margin-bottom bug. Jeremy Kratz 2008-08-21T03:01:45Z 2008-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#1401320 Comment by Jeremy Kratz on XSLT applied to XML doc with xmlns attribute Jeremy Kratz 2009-09-09T18:39:31Z 2009-09-09T18:39:31Z Wow, that was even simpler than I expected. Turns out I was missing the doc:id on the sort tag. Thanks &#214;lbaum! http://stackoverflow.com/questions/569737/documentation-templates-html-stylesheet/569771#569771 Comment by Jeremy Kratz on Documentation templates (html/stylesheet) Jeremy Kratz 2009-02-20T21:34:28Z 2009-02-20T21:34:28Z Great link! Delicious'd.