User Jagd - Stack Overflowmost recent 30 from stackoverflow.com2009-12-02T18:41:46Zhttp://stackoverflow.com/feeds/user/60758http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1829935/get-all-selected-items-from-asp-net-listbox0Get all selected items from asp.net ListBox Jagd2009-12-02T00:28:44Z2009-12-02T00:57:31Z
<p>Anyone know of a smooth way to get all of the <strong>selected</strong> items in a listbox control by using extension methods? </p>
<p>And, please, spare me the argument of <em>it's irrelevant as to how one gets such a list because in the end everything uses a loop to iterate over the items and find the selected ones anyway</em>.</p>
http://stackoverflow.com/questions/1752694/linq-to-xml-and-xml-file-truncation0linq to xml and xml file truncationJagd2009-11-17T23:47:58Z2009-11-17T23:47:58Z
<p>I am using linq-to-xml to read/write to an xml file. Earlier today, it was brought to my attention that the website using linq-to-xml was no longer working and was throwing a certain error. I investigated the error and found that the xml file had lost an indeterminable amount of data. </p>
<p>I resorted to our backups, but found that the file hadn't been backed up recently, because apparently some process was holding the file open at night so the backup software couldn't get to it (at least that's what I'm being told by the server people). </p>
<p>I am still unsure what caused the xml file truncation. The only process that accesses the file (as far as I'm aware) is the website, and it uses only linq-to-xml in order to do so. Which brings me to my question - has anyone ever heard of xml files inadvertently being truncated by linq-to-xml?</p>
http://stackoverflow.com/questions/1681852/linq-to-entities-and-sql-server-2008-filestream2Linq to Entities and SQL Server 2008 FileStream Jagd2009-11-05T16:38:14Z2009-11-05T17:04:06Z
<p><strong>Backend:</strong> SQL Server 2008 database with FileStream enabled</p>
<p><strong>Data Access:</strong> Linq to Entities</p>
<p>I have thousands of pdf's that currently reside on a file server. I would like to move these pdf's off of the file server and into a SQL Server 2008 database so that I can manage them easier.</p>
<p>As a proof of concept (ie - to ensure that the new FileStream ability in SQL Server 2008 is what I'm looking for), I wrote a small app that would read and write these pdf's to the FileStream enabled database via the entities framework. </p>
<p>The app is very simple; here's the code:</p>
<pre><code>datReport report = new datReport();
report.ReportName = "ANL-7411-Rev-Supp-1.pdf";
report.RowGuid = Guid.NewGuid();
// The following line blows up on really big pdf's (350+ mb's)
report.ReportData = File.ReadAllBytes(@"C:\TestSavePDF\ANL-7411-Rev-Supp-1.pdf");
using (NewNNAFTAEntities ctx = new NewNNAFTAEntities()) {
ctx.AddTodatReport(report);
ctx.SaveChanges();
}
</code></pre>
<p>I have the line of code commented above where the error occurs. The exact error is 'System.outofmemoryexception', which leaves me with little doubt that the file size is what is causing the problem. The above code does work on smaller pdf's. I don't know where the exact limit is as far as file size, but my biggest pdf's are over 350 megabytes and they get the error.</p>
<p>Any help would be greatly appreciated. Thanks!</p>
http://stackoverflow.com/questions/1668903/jar-files-in-asp-net-website0Jar files in ASP.NET websiteJagd2009-11-03T17:29:07Z2009-11-03T17:58:50Z
<p>I have the following:</p>
<ol>
<li>ASP.NET website using the 3.5 framework</li>
<li>One folder that contains a jar and a cab file of a control that I need to use on some of my webpages. The control is used to render maps.</li>
</ol>
<p>What is the best way to use this control on my website? I know there are the object and applet tags, but I'm very unfamiliar with both. This project was dumped on me, and quite frankly, it's not in my area of expertise, so any help would be greatly appreciated!</p>
http://stackoverflow.com/questions/1473071/suppress-click-event-using-jquery1Suppress click event using JQueryJagd2009-09-24T17:24:38Z2009-09-24T17:59:33Z
<p>I have an html button that is being rendered as HTML like such:</p>
<pre><code><input type="button" value="Select" onclick="javascript:__doPostBack('ctl00$ContentPlaceHolder1$gvAttendants','Select$0')" />
</code></pre>
<p>I'm attempting to use JQuery to suppress the click event of the above input tag, but I can't figure out how to do it! The button still does a postback, and I don't want it to.</p>
<p>Here's my JQuery code: </p>
<pre><code>$("input[type='button'][value='Select']").click(function($e) {
$e.preventDefault();
});
</code></pre>
<p>Any suggestions?</p>
http://stackoverflow.com/questions/1472783/hidden-field-is-null-on-ispostback-and-not-null-on-ispostback2hidden field is null on !IsPostBack and not null on IsPostBackJagd2009-09-24T16:24:57Z2009-09-24T17:05:31Z
<p>First I'll apologize for the unclear title of my question. I wasn't sure how to succinctly describe my problem in a title.</p>
<p>I have a hidden field in my .aspx </p>
<pre><code><input type="hidden" name="hid1" value="0" />
</code></pre>
<p>I want to set the value of this field during the page load event, and if it is not a postback.</p>
<pre><code>protected void Page_Load(object sender, EventArgs e) {
if (!Page.IsPostBack) {
// This doesn't work!
Request.Form["hid1"] = "1";
}
if (Page.IsPostBack) {
// This DOES work!
Request.Form["hid1"] = "1";
}
}
</code></pre>
<p>The problem is that the Request doesn't contain the hidden field in the Form array during the page load event when it's not a postback (ie - the first time the page is hit). Subsequent hits to the page (ie - postbacks) result in the Form array containing the hidden field.</p>
<p>I'm sure that it has to do with the lifecycle of the page, <strong>but I really need to know</strong>, how do I set the hidden field during the page load event and when it is not a postback?!</p>
<p><strong>EDIT:</strong>
I really, really don't want to incorporate the runat="server" attribute! </p>
http://stackoverflow.com/questions/1434498/how-many-variables-should-a-constructor-have/1434557#14345571Answer by Jagd for How many variables should a constructor have?Jagd2009-09-16T17:58:51Z2009-09-16T18:03:53Z<p>One thing I love about the 3.5 framework...</p>
<pre><code>new Foo {
Street = "909 Rose Ave",
City = "San Diego",
State = "CA",
FName = "Joe",
LName = "Wazowski",
ID = "987665454"
};
</code></pre>
<p>No more worrying about too many constructors, or too many constructors with too many parameters. </p>
http://stackoverflow.com/questions/1429392/stacked-images-in-html-email-template-have-a-space-between-them/1429458#14294580Answer by Jagd for Stacked images in HTML email template have a space between themJagd2009-09-15T20:31:28Z2009-09-15T20:31:28Z<p>You could cheat, and embed another table within the column containing the pics.</p>
<pre><code><td>
<table>
<tr><td align="left"><img1 ...></td></tr>
<tr><td align="left"><img2 ...></td></tr>
</table>
</td>
</code></pre>
<p>Is that what you mean by stacked and flush?</p>
http://stackoverflow.com/questions/1402067/why-adding-removing-css-classes-like-this-wont-work/1402106#14021062Answer by Jagd for Why adding/removing css classes like this won't work?Jagd2009-09-09T21:06:42Z2009-09-09T21:06:42Z<p>This is a prime candidate for jQuery, I believe. Tweaking CSS classes for HTML controls is a cinch with jQuery.</p>
http://stackoverflow.com/questions/1380719/email-solution-for-web-application/1380805#13808050Answer by Jagd for Email solution for web applicationJagd2009-09-04T18:23:18Z2009-09-04T18:23:18Z<p>I've found it easiest to wrapper the System.Net.Mail library in a helper class, and then that has allowed me to simply include my EmailHelper class in any project that needs the ability to send out emails.</p>
<p>Here's my regurgitated Send() method in my EmailHelper. You can see that it is quite easy to use.</p>
<pre><code>public bool Send() {
bool emailSent = false;
if (_to.Count > 0) {
MailMessage msg = new MailMessage();
SmtpClient mail = new SmtpClient("your.email.host");
msg.From = new MailAddress(_fromAddress, _fromName);
foreach (String to in _to) {
msg.To.Add(new MailAddress(to));
}
foreach (String cc in _cc) {
msg.CC.Add(new MailAddress(cc));
}
msg.Subject = _subject;
msg.Body = _body;
msg.IsBodyHtml = true;
mail.Send(msg);
emailSent = true;
}
return emailSent;
}
</code></pre>
<p>Note that the _fromAddress, _fromName, etc. are just private attributes of the EmailHelper class. The private attributes _to and _cc are both just lists of type string.</p>
http://stackoverflow.com/questions/1380270/select-loses-focus-when-mouse-is-over-options/1380304#13803040Answer by Jagd for select loses focus when mouse is over optionsJagd2009-09-04T16:32:29Z2009-09-04T16:32:29Z<p>Have you tried using the hover() event?</p>
<pre><code>$("#text").hover(
function() {
$(this.hide();
$("#selector").show();
},
function() {
$(this).hide();
$("#text").show();
});
</code></pre>
http://stackoverflow.com/questions/1380148/equivalent-of-onselect-javascript-hook-in-multi-select-asp-listbox/1380205#13802052Answer by Jagd for equivalent of OnSelect javascript hook in multi-select asp listboxJagd2009-09-04T16:13:21Z2009-09-04T16:20:41Z<p>This wouldn't be so hard to do using jQuery. Something along the lines of -</p>
<pre><code>$("select#myListBox").change(function() {
if ($("select#myListBox option:selected").length >= 1)
$("input#myButton").attr("disabled", "true");
}
</code></pre>
<p>All hail the mighty jQuery.</p>
http://stackoverflow.com/questions/1379997/failed-to-see-the-value-of-linq/1380039#13800394Answer by Jagd for Failed to see the value of LINQJagd2009-09-04T15:45:26Z2009-09-04T15:45:26Z<p><a href="http://stackoverflow.com/questions/21280/am-i-missing-something-about-linq">http://stackoverflow.com/questions/21280/am-i-missing-something-about-linq</a></p>
<p><a href="http://stackoverflow.com/questions/16322/all-about-linq">http://stackoverflow.com/questions/16322/all-about-linq</a></p>
http://stackoverflow.com/questions/1329672/is-there-a-way-to-return-anonymous-type-from-method/1329748#13297483Answer by Jagd for Is there a way to return Anonymous Type from method?Jagd2009-08-25T17:32:25Z2009-08-25T17:32:25Z<p>The easiest solution is to create a class, shove the values into the property, and then return it. If anonymous types are making your life harder then you're not using them correctly.</p>
http://stackoverflow.com/questions/1314554/sitemappath-cross-page-postback/1314633#13146330Answer by Jagd for sitemappath cross page postbackJagd2009-08-21T23:33:15Z2009-08-21T23:33:15Z<p>I thought the whole idea of Cross Page Posting was to allow postbacks to a page that is not the source page, and to do so you have to set the PostBackUrl property of a control. To my knowledge, the siteMapNode element doesn't have the PostBackUrl property. I'd imagine that only controls that have PostBackUrl exposed can take advantage of Cross Page Posting. But, hey, I've been wrong before!</p>
http://stackoverflow.com/questions/1313009/jquery-fadeto-effect-applied-to-tr0jQuery fadeTo effect applied to <tr>Jagd2009-08-21T16:42:29Z2009-08-21T18:17:23Z
<p>I want to add the fadeTo effect to a tr tag using jQuery. This should be possible, right? Here's my code:</p>
<pre><code>if ($) {
$(document).ready(function() {
$("tr[id$='_trPendingRequest_Manager']").fadeTo("slow", 0.33);
});
}
</code></pre>
<p>For whatever reason, the effect is not happening. </p>
<p>I decided to do a bit more testing and added a paragraph tag directly above the table containing this tr, and I was able to successfully apply the fadeTo effect to the paragraph tag. So, this leads me to think that one cannot apply the fadeTo effect to tr tags.</p>
<p>Anyone have a nugget of wisdom they'd not mind sharing with me as to why I can't get this to work?</p>
<p>EDIT:
Here's the html of the table with the tr which I am trying to apply the effect to.</p>
<pre><code><table>
<tr id="trPendingRequest_Manager" runat="server" style="display: none;" valign="middle">
<td valign="middle">
<asp:Image id="imgExc" runat="server" ImageUrl="~/Images/Mail_24x24.png" />
</td>
<td>&nbsp;</td>
<td valign="middle">
<asp:HyperLink ID="hypPendingRequest" runat="server" NavigateUrl="~/MyManagedRequests.aspx" Font-Bold="true" Font-Size="Medium" Font-Underline="false" ForeColor="Black">You have <asp:Label ID="lblRequestsNum" runat="server"></asp:Label>request(s) pending your action
</asp:HyperLink>
</td>
</tr>
<tr>... Removing the rest for brevity ... </tr>
</table>
</code></pre>
http://stackoverflow.com/questions/1302618/jquery-and-this-object0JQuery and 'this' objectJagd2009-08-19T21:04:09Z2009-08-19T21:27:29Z
<p>I have the following JQuery function being attached to the blur event of n textboxes on a webpage.</p>
<pre><code>$(document).ready(function() {
$("input[id$='_txtTuitionAmt']").blur(function() {
alert(this.value);
})
});
</code></pre>
<p>It works just fine. When the user tabs out of any of the textboxes then an alert popups and displays the value within the textbox.</p>
<p>What I'm confused about is "this.value," and whether it is JQuery or JavaScript. Am I using the 'this' object in the correct manner, or should I be doing something else in order to get at the value of the element?</p>
<p>Sorry if my question seems a bit murky. I'm just trying to come to grips with the "this" object and how it works. I looked in the JQuery documentation, but couldn't find anything on "this".</p>
http://stackoverflow.com/questions/1296722/linq-to-sql-blurs-seperation-of-concern/1296905#12969050Answer by Jagd for LINQ to SQL blurs seperation of concern?Jagd2009-08-18T22:26:31Z2009-08-18T22:26:31Z<p>If the project is a large one and uses many sprocs then it is not a smart idea to replace it's sprocs with LINQ. The reasons should be obvious why it is not prudent to do so. However, moving forward, this in no wise means you shouldn't implement a layer for LINQ. This is what I have done with some of my larger legacy apps. Implementing and using LINQ is well worth the effort, but it is not worth the effort (nor worth the risk) to rewrite old sprocs to use LINQ.</p>
http://stackoverflow.com/questions/1274806/selecting-by-id-attribute-using-jquery-in-asp-net5Selecting by ID attribute using JQuery in ASP.NETJagd2009-08-13T21:50:21Z2009-08-17T22:29:51Z
<p>I've just started using JQuery in VS 2008, and so far I like it! But, I'm confused about how I should be using JQuery in order to select asp.net controls on a webpage.</p>
<p>For example, I have the following code (just a mock-up):</p>
<pre><code><asp:textbox id="txtSomeData1" runat="server" text="Some Data!!"></textbox>
</code></pre>
<p>Now, if I want to use JQuery to select the textbox and change it's text to "Some More Data!!", then I would have to do something like:</p>
<pre><code>$('input#ctl00_ContentPlaceHolder1_txtSomeData1').val('Some More Data!!');
</code></pre>
<p>Which, quite frankly, is annoying because I don't want to mess with having to figure out what the id of the control is after it's rendered to the webpage (ctl00_ContextPlaceHolder... blah blah blah).</p>
<p>Is there a way that I can select the textbox without having to use the id of it? Also, I know that you can select by class name, but that doesn't help much if the control that you're selecting doesn't have a class. </p>
<p>Am I just missing something here?</p>
<p><strong>JUST TO REITERATE: I do not want to use a class to select the input tag!! I would like to use the id "txtSomeData1" and not the long id that is rendered to the webpage.</strong></p>
http://stackoverflow.com/questions/1288763/why-use-jquery3Why use JQuery? [closed]Jagd2009-08-17T15:55:10Z2009-08-17T16:11:59Z
<blockquote>
<p><strong>Possible Duplicates:</strong><br />
<a href="http://stackoverflow.com/questions/176324/why-does-everyone-like-jquery-more-than-prototype-script-aclo-us-or-mootools-or-w">Why does everyone like jQuery more than prototype/script.aclo.us or mootools or whatever?</a><br />
<a href="http://stackoverflow.com/questions/708040/why-would-i-want-to-use-jquery">Why would I want to use jQuery?</a> </p>
</blockquote>
<p>I have little experience with JQuery, but from what I've seen so far I am very impressed! I would like to present JQuery to my boss in a favorable light in the hopes that he'll like it, and subsequently begin to encourage my fellow developers to start using it.</p>
<p>What are some of the primary selling points of JQuery, or in other words, why should developers be using it?</p>
<p>The only reason that I'm aware of right now is cross-browser support, but I'm sure there are a host of others.</p>
http://stackoverflow.com/questions/1179645/user-control-ascx-and-properties1User control (ascx) and propertiesJagd2009-07-24T19:23:22Z2009-07-24T22:02:34Z
<p>The only way I've found to persist property values within a user control is to use the ViewState.</p>
<pre><code>public string Title {
get { return Convert.ToString(ViewState["Title"]); }
set { ViewState["Title"] = value; }
}
</code></pre>
<p>I can't say I'm real impressed with this though, as the more properties a user control has the more crap you'll be sticking in the ViewState. Is there a better way to persist properties?</p>
http://stackoverflow.com/questions/1127385/xelement-and-listg1XElement and List<g>Jagd2009-07-14T19:09:19Z2009-07-14T19:22:37Z
<p>I have a class that has the following properties:</p>
<pre><code>public class Author {
public string FirstName { get; set; }
public string LastName { get; set; }
}
</code></pre>
<p>Next, I have a List of Authors like so:</p>
<pre><code>List<Author> authors = new List<Author> ();
authors.add(
new Author {
FirstName = "Steven",
LastName = "King"
});
authors.add(
new Author {
FirstName = "Homer",
LastName = ""
});
</code></pre>
<p>Now, I am trying to use Linq to XML in order to generate the XML representing my Authors List.</p>
<pre><code>new XElement("Authors",
new XElement("Author",
from na in this.Authors
select new XElement("First", na.First)))
</code></pre>
<p>The block above does not generate the XML as I expect it to. What I get is:</p>
<pre><code><Authors>
<Author>
<First>Steven</First>
<First>Homer</First>
</Author>
<Authors>
</code></pre>
<p>What I want the XML output to look like is:</p>
<pre><code><Authors>
<Author>
<First>Steven</First>
<Last>King</Last>
</Author>
<Author>
<First>Homer</First>
<Last></Last>
</Author>
</Authors>
</code></pre>
<p>Any help on how to get the XML to look as I need it to would be immensely appreciated!</p>
http://stackoverflow.com/questions/1120655/linq-to-xml-and-creating-elements0Linq to Xml and creating elementsJagd2009-07-13T16:42:53Z2009-07-13T17:00:13Z
<p>I have a string array:</p>
<pre><code>string[] authors = new string[3];
authors[0] = "Charles Dickens";
authors[1] = "Robert Jordan";
authors[2] = "Robert Ludlum";
</code></pre>
<p>I am using Linq to XML to read and write XML to a given XML file, but I cannot figure out how to use the XElement class to create XML that represents my authors array.</p>
<p>I know it's something along the lines of </p>
<pre><code>XElement xEle = new XElement("Authors",
from a in authors
select new XElement("Authors", ???????
</code></pre>
http://stackoverflow.com/questions/1105386/overhead-when-using-keyword-this0Overhead when using keyword this?Jagd2009-07-09T17:34:15Z2009-07-09T17:41:51Z
<p>The scope of my question is solely ASP.NET, as the answer may be different for Java and any other C based language.</p>
<p>How much overhead is involved when using the keyword "this" within a class to dereference a property? It seems that I've seen certain sources try to discourage the use of "this" for dereferencing, but generaly I've just ignored them until now.</p>
http://stackoverflow.com/questions/890629/resizing-images-and-performance1Resizing images and performanceJagd2009-05-20T22:46:51Z2009-06-20T17:06:44Z
<p>I have an image that is around 1200 x 400 (if I remember right), and is about 50kb in size. I use the image in a header for a website, but I constrict the height of the image to 100px in order to make it fit my header. </p>
<pre><code><asp:Image ID="imgLogo" runat="server" ImageUrl="~/Images/AFact.jpg" Height="100px" />
</code></pre>
<p>Is this a bad practice? Does it mean that the image is being downloaded in full to the client, and then the client's browser has to waste cpu to resize it? Would I be better off to scale the image down to the height that I want it at by using Photoshop?</p>
http://stackoverflow.com/questions/946518/hook-a-javascript-event-to-page-load4Hook a javascript event to page loadJagd2009-06-03T18:57:39Z2009-06-03T21:59:30Z
<p>I have an aspx that has the following javascript function being ran during the onload event of the body.</p>
<pre><code><body onload="startClock();">
</code></pre>
<p>However, I'm setting the aspx up to use a master page, so the body tag doesn't exist in the aspx anymore. How do I go about registering the startClock function to run when the page is hit and still have it use a masterpage? </p>
http://stackoverflow.com/questions/942390/onvalidate-and-linq-to-entities0OnValidate() and LINQ to EntitiesJagd2009-06-02T23:18:11Z2009-06-03T21:57:40Z
<p>I would like to implement some business rule validation like Scott Guthrie did in his MVC Nerddinner tutorial (<a href="http://nerddinnerbook.s3.amazonaws.com/Part3.htm" rel="nofollow">http://nerddinnerbook.s3.amazonaws.com/Part3.htm</a>), but I'm running into a problem trying to do so. </p>
<p>Scott was using Linq to SQL in his tutorial. He creates partial classes for his data objects, and then he implements a partial method called OnValidate(), which, according to him, is a hook that gets ran when data is persisted to the database for a given data object.</p>
<pre><code>public partial class Dinner {
partial void OnValidate(ChangeAction action) {
if (!IsValid)
throw new ApplicationException("Rule violations prevent saving");
}
}
</code></pre>
<p>My problem is that I am using Linq to Entities and apparently there is no "hook" method like the one above that one can use, or at least I can't find it if there is one. Can anyone throw me a bone on how to go about doing this with Linq to Entities?</p>
http://stackoverflow.com/questions/936892/coding-party-tricks/937028#9370285Answer by Jagd for Coding Party tricksJagd2009-06-01T22:03:03Z2009-06-02T22:29:33Z<p>"Well, I don't know about party tricks, but I created a worm when I was in college. Wow, it brought the entire network to it's knees, man! It was stellar!" says me.</p>
<p>At a loss for words, the interviewer hastily terminates the interview. "Yes, well, we'll be getting back in touch with you," he says.</p>
http://stackoverflow.com/questions/913230/css-and-div-tag-layout-problems0css and div tag layout problemsJagd2009-05-26T23:09:20Z2009-05-27T05:09:37Z
<p>I have a header bar that spans horizontally across my web page, which is comprised of one div tag and three nested div tags.</p>
<p>HTML:</p>
<pre><code><div id="top-bar">
<div id="leftTop">
LEFT
</div>
<div id="rightTop">
RIGHT
</div>
<div id="centerTop">
CENTER
</div>
</div>
</code></pre>
<p>CSS:</p>
<pre><code>#top-bar
{
margin: 0;
padding: 1px 4px;
font-size: x-small;
background-color: #005555;
font-family: Arial;
}
#top-bar .separator
{
padding: 0 7px;
border-right: 0px solid #fff;
border-left: 0px solid #fff;
}
#leftTop
{
display: inline;
float: left;
}
#rightTop
{
display: inline;
float: right;
}
#centerTop
{
color: #ffffff;
text-align: center;
}
</code></pre>
<p>And it works just great, except for the fact that the div tags are out of order in the HTML code, which I don't like. If I order the div tags by placing them Left, Center, and Right, in the HTML, then the Right div just disappears from the webpage! I'm guessing that it has something to do with the float and text-align attributes having a conflict.</p>
<p>Anyone have any ideas on what is going on here, or is there an easier way to do this in CSS?</p>
http://stackoverflow.com/questions/912194/matching-a-node-based-on-a-siblings-value-with-xpath/912266#9122661Answer by Jagd for Matching a node based on a sibling's value with XPathJagd2009-05-26T19:28:29Z2009-05-26T19:28:29Z<p>/records/record[record-type='A']</p>
http://stackoverflow.com/questions/1829935/get-all-selected-items-from-asp-net-listbox/1829958#1829958Comment by Jagd on Get all selected items from asp.net ListBox Jagd2009-12-02T16:28:21Z2009-12-02T16:28:21ZThank you! This is great.http://stackoverflow.com/questions/1668903/jar-files-in-asp-net-websiteComment by Jagd on Jar files in ASP.NET websiteJagd2009-11-10T19:50:16Z2009-11-10T19:50:16ZThank you! The link you supplied was helpful.http://stackoverflow.com/questions/1668903/jar-files-in-asp-net-website/1669071#1669071Comment by Jagd on Jar files in ASP.NET websiteJagd2009-11-10T19:49:37Z2009-11-10T19:49:37ZI ended up using the applet tag. What I discovered is that the w3c says the applet tag is deprecated, but that Sun still recommends using it.http://stackoverflow.com/questions/1681852/linq-to-entities-and-sql-server-2008-filestream/1682072#1682072Comment by Jagd on Linq to Entities and SQL Server 2008 FileStream Jagd2009-11-05T17:26:40Z2009-11-05T17:26:40ZThank you! I'd actually a decent chunk of the article on MSDN, but I must have missed the part about SqlFileStream.http://stackoverflow.com/questions/1473071/suppress-click-event-using-jquery/1473133#1473133Comment by Jagd on Suppress click event using JQueryJagd2009-09-24T18:40:33Z2009-09-24T18:40:33ZOh, and you are quite correct, the control is being rendered from a GridView CommandField.http://stackoverflow.com/questions/1473071/suppress-click-event-using-jquery/1473133#1473133Comment by Jagd on Suppress click event using JQueryJagd2009-09-24T18:38:08Z2009-09-24T18:38:08ZThank you for the suggestion to add the "disabled" attribute. I'm going to do that as well.http://stackoverflow.com/questions/1473071/suppress-click-event-using-jquery/1473102#1473102Comment by Jagd on Suppress click event using JQueryJagd2009-09-24T18:37:27Z2009-09-24T18:37:27ZWorks like a charm! Thanks!http://stackoverflow.com/questions/1472783/hidden-field-is-null-on-ispostback-and-not-null-on-ispostback/1472988#1472988Comment by Jagd on hidden field is null on !IsPostBack and not null on IsPostBackJagd2009-09-24T17:12:02Z2009-09-24T17:12:02ZBam! That did it. Thanks for thinking outside of the box, Venr.http://stackoverflow.com/questions/1472783/hidden-field-is-null-on-ispostback-and-not-null-on-ispostback/1472901#1472901Comment by Jagd on hidden field is null on !IsPostBack and not null on IsPostBackJagd2009-09-24T16:58:32Z2009-09-24T16:58:32ZI'm not sure what you mean by accessing it through a style class. Can you clarify or give me an example of how to do so?http://stackoverflow.com/questions/1472783/hidden-field-is-null-on-ispostback-and-not-null-on-ispostback/1472809#1472809Comment by Jagd on hidden field is null on !IsPostBack and not null on IsPostBackJagd2009-09-24T16:57:25Z2009-09-24T16:57:25Z@Bob - Yeah, that's typically what I do (id$='_whatever'), but I was trying to get away from that this one time. Sure seems like a lot of work though, and I'm beginning to think it's not worth the pain.http://stackoverflow.com/questions/1472783/hidden-field-is-null-on-ispostback-and-not-null-on-ispostbackComment by Jagd on hidden field is null on !IsPostBack and not null on IsPostBackJagd2009-09-24T16:56:02Z2009-09-24T16:56:02ZRight, that's what I'd assumed as well.http://stackoverflow.com/questions/1472783/hidden-field-is-null-on-ispostback-and-not-null-on-ispostback/1472811#1472811Comment by Jagd on hidden field is null on !IsPostBack and not null on IsPostBackJagd2009-09-24T16:41:27Z2009-09-24T16:41:27ZNegative, Houston. See my reponse to tomlog's answer. This would work, but it's not the solution that I want. runat = mangled id'shttp://stackoverflow.com/questions/1472750/modify-xpath-to-return-second-of-two-valuesComment by Jagd on Modify XPath to return second of two valuesJagd2009-09-24T16:35:45Z2009-09-24T16:35:45ZYeah, one of the annoying things I don't like about SO.http://stackoverflow.com/questions/1472783/hidden-field-is-null-on-ispostback-and-not-null-on-ispostback/1472809#1472809Comment by Jagd on hidden field is null on !IsPostBack and not null on IsPostBackJagd2009-09-24T16:34:01Z2009-09-24T16:34:01ZIn a nutshell, because I need to use the hidden field within some JQuery functions, and I wanted to keep the id from getting mangled due to runat="server". If I can't figure it out any other way, I'll go this route, but I'd be <b>very</b> surprised to find out there's not a way to access the hidden field from the page load on the initial page hit. http://stackoverflow.com/questions/1446691/asp-net-treeview-control-on-masterpage-isnt-always-populatedComment by Jagd on ASP.Net TreeView control on MasterPage isn't always populatedJagd2009-09-18T20:38:34Z2009-09-18T20:38:34ZIf you have any source code that is pertinent to your error, it might helpful to post it also.