Frank Schwieterman

2,798
Reputation
687 views

Registered User

Name Frank Schwieterman
Member for 1 year
Seen 10 hours ago
Website
Location US
Age
I find lists are useful.
1d
answered deleting a window property in IE
1d
answered How can I create a templated control with Asp.Net MVC?
2d
comment Unit testing jQuery document.ready function
You could use JSMock's andStub() functionality to record the passed in callback, then call that callback from the same test. This would not be desirable though, as now you have a test verifying separate things (leading to poor defect localization xunitpatterns.com/Goals%20of%20Test%20Automation.…)
Nov
26
revised Unit testing jQuery document.ready function
added 34 characters in body; added 82 characters in body; deleted 10 characters in body
Nov
26
revised Unit testing jQuery document.ready function
added 135 characters in body
Nov
26
revised Unit testing jQuery document.ready function
added 94 characters in body
Nov
26
answered Unit testing jQuery document.ready function
Nov
25
answered Is ASP.NET MVC a good option for developing a Services layer and/or API?
Nov
25
answered asp.net programmatically add a span tag? Not Label control
Nov
25
comment Is there a way to see the final URL retrieved by an XMLHttpRequest?
This coffee isn't working. Correction: "would represent the final response, and not the redirect response".
Nov
25
comment Is there a way to see the final URL retrieved by an XMLHttpRequest?
Thanks for recognizing I need to do this programmaticially. However I don't think the location header will work. The Location header is a header for the redirect response, not the final response. The XHR header's collection would represent the final response, and not the location header. There are no additional HTTP headers I see that have the location.
Nov
25
revised Is there a way to see the final URL retrieved by an XMLHttpRequest?
added 119 characters in body; added 72 characters in body
Nov
25
asked Is there a way to see the final URL retrieved by an XMLHttpRequest?
Nov
25
comment Problem with getting page with JQuery?
You should do more debugging and explain what actually happened. Was the request made? Was there an error result returned instead? My guess is inserting a <form> within a <form> is the problem.
Nov
25
answered Is it possible to create a desktop application whose UI is HTML rendered using ASP.NET templates without using a webserver?
Nov
24
comment How to extend jQuery to make it easier to retrieve the tagName
may return an array or an item... will throw an exception if one of the selected item doesn't have a tagName...
Nov
24
revised Do you HtmlEncode during input or output?
added 451 characters in body; deleted 4 characters in body
Nov
24
answered Do you HtmlEncode during input or output?
Nov
17
answered How do you specify table padding in CSS? ( table, not cell padding )
Nov
17
answered which url format is better for seo?
Nov
17
answered jquery ui tabs problem
Nov
17
awarded  
Nov
16
comment Does Javascript’s new operator do anything but make life difficult?
Actually, you can avoid using new by setting the prototype property directly on an object. This has the unfortunate side effect of causing o.hasOwnProperty("prototype") to return true, where it would return false if new was used.
Nov
14
answered Embedding C# code using <%= code %> within javascript <script> tags
Nov
14
answered Books to learn how to make web development fun instead of frustrating
Nov
11
answered Which objects to mock when doing TDD
Nov
11
answered Diagnosing runaway CPU in a .Net production application
Nov
11
comment JavaScript debugging in FireFox
Here's an addon that will let you dock the error console: addons.mozilla.org/en-US/firefox/….
Nov
10
asked Spark and ASP.NET
Nov
10
asked referencing a javascript value before it is declared - can someone explain this
Nov
10
comment IE7 not Caching CSS Image over SSL
There's different caching headers, I wouldn't expect they're all supported consistently. It sounds like you found one IE does not support.
Nov
9
awarded  Citizen Patrol
Nov
9
comment Learning Windows Services with C++
Having written windows services using C/C++/Win32 and using C#/.Net, I just want to make sure you know C#/.Net is so much easier.
Nov
6
comment Will the Spark view engine interoperate with webforms master pages?
haha same. It was easy enough to convert my few existing pages to use Spark, and probably good practice at that.
Nov
5
answered Will the Spark view engine interoperate with webforms master pages?
Nov
4
comment Text manipulation
How many files? I think an easier approach may be to import into Excel, delete the columns, then export back to tab-delimited format.
Nov
4
comment Is it an anti-pattern to modify JavaScript’s built-in prototypes?
I don't think its a fair comparison to goto statements, but I do feel that elegance is a falacy. It may make code look nicer, but for a developer not familiar with the code I think it makes the code harder to understand.
Nov
4
answered Is it an anti-pattern to modify JavaScript’s built-in prototypes?
Nov
2
comment Unit Testing with the Mediator Pattern - All Private to Public
What you're doing here is sometimes referred to as the Humble Object pattern as well. Don't feel bad about stuff that was private becoming public. Theres a mindset change that happened when I started unit testing. I stopped using language constructs to restrict how the code might be used so much, and started using unit tests to verify what the code actually does. It leads to cleaner, simpler code.
Nov
1
revised JavaScript foreach Vs for
added 287 characters in body
Oct
31
comment Add ASP.NET server script to mostly-static .JS / .CSS files without losing IntelliSense?
I think you're looking at the problem the wrong way. For the javascript, I think you should be asking how yourself how to parameterize the javascript you have so the ASP.NET content (or a reference to it) can be passed in. I don't follow why you'd want ASP.NET markup in a CSS file at all though.
Oct
31
comment How to use CSS to position divs?
CSS appears trivial but its weird. Buying a book is necessary if you want to get past the fuddle-til-it-kinda-works stage.
Oct
30
comment How to unit test a jQuery selector?
BeraCim- If you find a framework that helps this along let me know. I use the QUnit test framework and the JSMock library, so I am using existing tools where available.
Oct
30
comment How to unit test a jQuery selector?
CMS- yeah I was just hypothesizing some HTML. That wasn't the point of the question.
Oct
30
revised How to unit test a jQuery selector?
added 2 characters in body
Oct
30
answered How to unit test a jQuery selector?
Oct
29
awarded  Yearling
Oct
28
answered Design pattern for class with upwards of 100 properties
Oct
28
answered Calculating the path relative to some root- the inverse of Path.Combine
Oct
27
answered Dealing with circular dependencies in IOC