Jagd

778
Reputation
150 views

Registered User

Name Jagd
Member for 10 months
Seen 42 mins ago
Website
Location Idaho Falls, ID
Age 31
Code monkey. Feed me Mt. Dew and you'll be surprised how fast this little hampster can get the wheel spinning!
2h
comment Get all selected items from asp.net ListBox
Thank you! This is great.
18h
asked Get all selected items from asp.net ListBox
Nov
25
awarded  Tumbleweed
Nov
17
asked linq to xml and xml file truncation
Nov
10
comment Jar files in ASP.NET website
Thank you! The link you supplied was helpful.
Nov
10
comment Jar files in ASP.NET website
I 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.
Nov
5
comment Linq to Entities and SQL Server 2008 FileStream
Thank you! I'd actually a decent chunk of the article on MSDN, but I must have missed the part about SqlFileStream.
Nov
5
asked Linq to Entities and SQL Server 2008 FileStream
Nov
3
asked Jar files in ASP.NET website
Sep
24
comment Suppress click event using JQuery
Oh, and you are quite correct, the control is being rendered from a GridView CommandField.
Sep
24
comment Suppress click event using JQuery
Thank you for the suggestion to add the "disabled" attribute. I'm going to do that as well.
Sep
24
comment Suppress click event using JQuery
Works like a charm! Thanks!
Sep
24
asked Suppress click event using JQuery
Sep
24
comment hidden field is null on !IsPostBack and not null on IsPostBack
Bam! That did it. Thanks for thinking outside of the box, Venr.
Sep
24
comment hidden field is null on !IsPostBack and not null on IsPostBack
I'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?
Sep
24
comment hidden field is null on !IsPostBack and not null on IsPostBack
@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.
Sep
24
comment hidden field is null on !IsPostBack and not null on IsPostBack
Right, that's what I'd assumed as well.
Sep
24
revised hidden field is null on !IsPostBack and not null on IsPostBack
edit summary
Sep
24
comment hidden field is null on !IsPostBack and not null on IsPostBack
Negative, Houston. See my reponse to tomlog's answer. This would work, but it's not the solution that I want. runat = mangled id's
Sep
24
comment Modify XPath to return second of two values
Yeah, one of the annoying things I don't like about SO.
Sep
24
comment hidden field is null on !IsPostBack and not null on IsPostBack
In 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 very surprised to find out there's not a way to access the hidden field from the page load on the initial page hit.
Sep
24
asked hidden field is null on !IsPostBack and not null on IsPostBack
Sep
18
comment ASP.Net TreeView control on MasterPage isn’t always populated
If you have any source code that is pertinent to your error, it might helpful to post it also.
Sep
16
revised How many variables should a constructor have?
added 32 characters in body
Sep
16
answered How many variables should a constructor have?
Sep
16
comment What’s wrong with output parameters?
Good example. The TryParse is one of the only methods I've ever seen that uses out and is justified in doing so.
Sep
15
answered Stacked images in HTML email template have a space between them
Sep
9
answered Why adding/removing css classes like this won’t work?
Sep
9
comment Why shouldn’t professional web developers use Microsoft FrontPage?
+1 for actually listing WHY Frontpage is an inferior IDE.
Sep
4
answered Email solution for web application
Sep
4
answered select loses focus when mouse is over options
Sep
4
revised equivalent of OnSelect javascript hook in multi-select asp listbox
deleted 32 characters in body
Sep
4
answered equivalent of OnSelect javascript hook in multi-select asp listbox
Sep
4
answered Failed to see the value of LINQ
Sep
4
comment Failed to see the value of LINQ
Should be community wiki. And I'd bet my bottom dollar this is a duplicate.
Sep
4
comment How do you serialize a string as CDATA using XmlSerializer?
Very useful. Didn't know this was possible!
Sep
2
revised Rounding the result of division in Javascript
edited tags
Sep
2
comment sip phones unable to register with the asterisk server
Grammar 101. Proper punctuation makes communication so much easier.
Aug
27
awarded  Popular Question
Aug
26
comment c# create thead and tbody
Same! (15 annoying characters to take up space)
Aug
26
comment Can TFS or Visual Studio remind me about issues that have to be solved before a check in
Maybe consider editing your question to include the fact that todo comments won't work for your situation. Just an idea...
Aug
25
comment Is there a way to return Anonymous Type from method?
@Cleiton - it'll take much less effort to create a class to contain the data. I've come to realize that just because I can use anonymous types to manipulate data easily, it doesn't mean that I should stop creating classes to define those types when I need to pass them from one layer to another.
Aug
25
answered Is there a way to return Anonymous Type from method?
Aug
25
comment Is there a way to return Anonymous Type from method?
It should be noted that this is not a recommended idea. Intellisense will no longer recognize the strongly typed properties of the anonymous type (Property1 and Property2 from your example). Actually, you can use reflection to get at the properties, but you may as well be hitting your thumb with hammer for all the work you're putting into it, and not to mention you just took something that was supposed to make your life easier, but in fact made it harder.
Aug
25
revised Is it worthwhile to go back and complete a CS degree after programming professionally for several years?
added 5 characters in body; edited tags
Aug
24
comment Is it worthwhile to go back and complete a CS degree after programming professionally for several years?
@Dr. Zim - 100% correct what you said. The company that I work for hires out background checks to a 3rd party company. The background checks are tediously extensive in how far back they attempt to go. Reason being, the company pays more for each year of experience AND the type of degree that an individual has, so they want to make sure that they're not being scammed.
Aug
24
revised Oracle SQL use Coalesce
edited tags
Aug
24
comment Which Computer Science Concept Do you Value the Most?
I only wish that EVERY software developer understood the importance of this principle.
Aug
21
answered sitemappath cross page postback
Aug
21
comment iteration with a for loop
... of course, this question is far from normal, so I wouldn't be surprised if the OP had an array starting at -1. :)