User - Stack Overflowmost recent 30 from stackoverflow.com2009-12-22T16:50:48Zhttp://stackoverflow.com/feeds/user/19707http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1794719/capture-screenshot-of-website-on-the-client-javascript-or-flash/1914118#19141180Answer by svinto for Capture screenshot of website on the client (Javascript or flash)svinto2009-12-16T11:34:13Z2009-12-16T11:34:13Z<p>No there is not, though it would come in quite handy at times for bug reporting etcetera.</p>
<p>You will probably get the best result by creating a separate version of the page as a PDF have that being generated. It's no quick fix by all means, but you'll get superb print quality and total control over everything. The map part will probably be a bit tricky though as you need to get the map as a bitmap on the server somehow, and if it's not in flash on the client I don't know how you'd do that.</p>
http://stackoverflow.com/questions/1886473/is-html-5-doctype-causing-quirksmode/1886479#18864792Answer by svinto for IS HTML 5 Doctype causing quirksmode?svinto2009-12-11T07:49:33Z2009-12-11T07:49:33Z<p>No it does not.</p>
http://stackoverflow.com/questions/1881716/merging-jquery-objects/1881787#18817871Answer by svinto for Merging jQuery objectssvinto2009-12-10T15:31:46Z2009-12-10T15:31:46Z<pre><code>$(btn).add(h3).hide();
</code></pre>
<p>Not sure if it works though, documentation for add doesn't mention haivng the jQuery object as a parameter but only a list of elements, so it that doesn't work this should:</p>
<pre><code>$(btn).add(h3.get()).hide();
</code></pre>
http://stackoverflow.com/questions/1873097/innerchannel-replacement-in-soaphttpclientprotocol-when-moving-from-vs2005-to-vs20InnerChannel replacement in SoapHttpClientProtocol when moving from VS2005 to VS2008svinto2009-12-09T10:53:20Z2009-12-10T10:34:23Z
<p>In a project I'm working with we're using external services exposed by SOAP. In the proxy classes to access these services generated by Visual Studio 2005, the member <code>InnerChannel</code> was exposed, but this is not the case with the proxy classes generated by Visual Studio 2008.</p>
<p>I'm trying to do this, but of course get an error because the member doesn't exist:</p>
<pre><code>using (new OperationContextScope(proxy.InnerChannel)) {
OperationContext.Current.OutgoingMessageHeaders.Add(GetHeader());
//...
}
</code></pre>
http://stackoverflow.com/questions/1873097/innerchannel-replacement-in-soaphttpclientprotocol-when-moving-from-vs2005-to-vs2/1880107#18801070Answer by svinto for InnerChannel replacement in SoapHttpClientProtocol when moving from VS2005 to VS2008svinto2009-12-10T10:34:23Z2009-12-10T10:34:23Z<p>SOAP seems to have been completely redone in VS2008.</p>
<p>To do the same in VS2008 you need to create a class that implements SoapExtension:</p>
<pre><code>public class classname : SoapExtension {
public override object GetInitializer(LogicalMethodInfo methodInfo, SoapExtensionAttribute attribute) {
throw new NotImplementedException();
}
public override object GetInitializer(Type serviceType) {
return null;
}
public override void Initialize(object initializer) {}
public override void ProcessMessage(SoapMessage message) {
switch (message.Stage) {
case SoapMessageStage.BeforeSerialize:
var header = GetHeader(); // Returns a class implementing SoapHeader
message.Headers.Add(header);
break;
case SoapMessageStage.AfterSerialize:
break;
case SoapMessageStage.BeforeDeserialize:
break;
case SoapMessageStage.AfterDeserialize:
break;
}
}
}
</code></pre>
<p>And register that class in your config file:</p>
<pre><code>....
<webServices>
<soapExtensionTypes>
<add type="namespace.classname, namespace" priority="1" group="Low"/>
</soapExtensionTypes>
</webServices>
</system.web>
</code></pre>
http://stackoverflow.com/questions/1874295/how-do-i-get-the-xmlserializer-to-add-namespaces-to-attributes-in-nested-objects0How do I get the XMLSerializer to add namespaces to attributes in nested objects?svinto2009-12-09T14:32:30Z2009-12-09T16:43:15Z
<p>Hi,</p>
<p>This is what I get:</p>
<pre><code><ex:test soap:mustUnderstand="1" xmlns:ex="http://www.example.com/namespace">
<ex:A Type="lorem">ipsum</ex:A>
</ex:test>
</code></pre>
<p>This is what I want: (Note that the Type-attribute is prefixed with ex.)</p>
<pre><code><ex:test soap:mustUnderstand="1" xmlns:ex="http://www.example.com/namespace">
<ex:A ex:Type="lorem">ipsum</ex:A>
</ex:test>
</code></pre>
<p>This is my code:</p>
<pre><code> [XmlType(Namespace = "http://www.example.com/namespace")]
[XmlRoot("ex", Namespace = "http://www.example.com/namespace")]
public class TestSoapHeader : SoapHeader {
private TestSoapHeaderTypeValuePair _a;
public TestHeader() {
MustUnderstand = true;
}
[XmlNamespaceDeclarations]
public XmlSerializerNamespaces xmlsn {
get {
XmlSerializerNamespaces xsn = new XmlSerializerNamespaces();
xsn.Add("ex", "http://www.example.com/namespace");
return xsn;
}
set { }
}
public TestSoapHeaderTypeValuePair A {
get { return _a; }
set { _a = value; }
}
}
[XmlType(Namespace = "http://www.example.com/namespace")]
public class TestSoapHeaderTypeValuePair {
private string _type;
private string _value;
[XmlNamespaceDeclarations]
public XmlSerializerNamespaces xmlsn
{
get
{
XmlSerializerNamespaces xsn = new XmlSerializerNamespaces();
xsn.Add("ex", "http://www.example.com/namespace");
return xsn;
}
set { }
}
public TestSoapHeaderTypeValuePair(string type, string value) {
Type = type;
Value = value;
}
public TestSoapHeaderTypeValuePair() {}
[System.Xml.Serialization.XmlAttributeAttribute("type", Namespace = "http://www.example.com/namespace")]
public string Type {
get { return _type; }
set { _type = value; }
}
[System.Xml.Serialization.XmlText()]
public string Value {
get { return _value; }
set { _value = value; }
}
}
</code></pre>
http://stackoverflow.com/questions/1872379/is-this-a-ie8-or-jquerys-bug/1872747#18727470Answer by svinto for Is this a IE8 or jQuery's bug?svinto2009-12-09T09:48:31Z2009-12-09T09:48:31Z<p>I think you need to bind the events to <strong>select</strong> instead of option:</p>
<pre><code><!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-type" content="text/html; charset=utf-8" />
<meta http-equiv="Content-Language" content="en-us" />
<title>International Properties</title>
<script type="text/javascript" src="http://jqueryjs.googlecode.com/files/jquery-1.2.6.min.js"></script>
</head>
<body>
<script type="text/javascript">
$(function(){
$("select").bind("click contextmenu", function(){
alert(1);
});
});
</script>
<select size="2">
<option value="article1">test1</option>
<option value="article2">test2</option>
</select>
</body>
</html>
</code></pre>
http://stackoverflow.com/questions/1757805/jquery-event-only-every-time-interval/1757847#17578472Answer by svinto for jQuery event only every time intervalsvinto2009-11-18T17:52:00Z2009-11-18T17:52:00Z<pre><code>$(function() {
var timer = 0;
$("#domain").change(function() {
clearTimeout(timer);
timer = setTimeout(function(){
// Do stuff here
}, 2000);
});
});
</code></pre>
http://stackoverflow.com/questions/1735133/asp-file-download-of-asp-page-comes-instead-of-executing-it/1742072#17420721Answer by svinto for ASP : File download of ASP page comes instead of executing itsvinto2009-11-16T13:02:25Z2009-11-16T13:02:25Z<p>Make sure that the Active Server Pages web service extension is marked as Allow in the IIS settings on the server. (These are the terms from Windows 2003, in 2008 they might call it something else...)</p>
http://stackoverflow.com/questions/1742010/jquery-select-all-checkboxes-within-current-table-only/1742022#17420220Answer by svinto for JQuery - Select All CheckBoxes within current table onlysvinto2009-11-16T12:52:10Z2009-11-16T12:52:10Z<pre><code>$(this).closest("table").find("input:checkbox")
</code></pre>
<p>Note: It seems that all the select-all-in-this-table-checkboxes have the same <code>id</code>, the <code>id</code> should be unique within the page, you should use a class instead. (Or just <code>table th input</code>)</p>
http://stackoverflow.com/questions/1737740/help-with-java-script-to-validate-the-files-in-a-folder/1737746#17377462Answer by svinto for Help with java script - to validate the files in a foldersvinto2009-11-15T15:01:31Z2009-11-15T15:01:31Z<p>No, that is not possible. (It would be a security problem if websites could access local files.)</p>
http://stackoverflow.com/questions/1707793/how-do-i-schedule-regular-database-clean-up-tasks-in-classic-asp/1708765#17087651Answer by svinto for How do I schedule regular database clean up tasks in Classic ASP?svinto2009-11-10T15:23:13Z2009-11-10T15:23:13Z<p>I'd do cleanup for single session in <code>Session_OnEnd</code> and for ALL sessions in <code>Application_OnStart</code>. If your all-sessions-cleanup is slow, you can do a ugly thing and put that cleanup in a separate asp-file that you make a http-request to using the XMLHTTP class, remember to not wait for the request to complete as it won't begin being served before all code in <code>Application_OnStart</code> is run.</p>
http://stackoverflow.com/questions/1389144/library-of-interfaces-for-building-decoupled-things0Library of interfaces for building decoupled thingssvinto2009-09-07T12:19:36Z2009-10-31T04:34:16Z
<p>I want open source assemblies with <strong>interfaces</strong> (but no implementations) of common things, such as logging, IoC/DI, etcetera. If this exists, it would be easier to mix and match bits and pieces of things together without having to write too much glue code.</p>
<p>Example: If this existed, I would be able to for example create a asp.net mvc application and add any ORM, logging and IoC framework. I could then drop in references to third party assemblies with controllers and models and they would play nicely together. If I write my own interfaces, I would have to modify each of these. I don't want to modify, I want to 1. drop in, 2. configure and 3. use! Simple as that, shouldn't be harder.</p>
<p>Have you heard/used/written of something like this?</p>
http://stackoverflow.com/questions/1550150/how-to-limited-click-button-only-once-per-minute-in-javascript/1550156#15501562Answer by svinto for How to limited 'click' button only once per minute in Javascriptsvinto2009-10-11T08:08:52Z2009-10-11T08:08:52Z<p>Use setTimeout.</p>
http://stackoverflow.com/questions/1542750/why-does-classic-asp-post-a-multiple-select-list-with-a-space-between-values-wher/1542794#15427940Answer by svinto for Why does Classic ASP Post a Multiple Select List with a space between values where ASP.Net doesn't?svinto2009-10-09T09:31:01Z2009-10-09T09:31:01Z<p>It sounds like you might do a replace to create a part of a valid SQL statement. If that is what you're doing, it's a really really bad idea since an evil visitor can use this to run any SQL statements they like. A better idea, for both classic ASP and ASP.net is to do a split on comma and use CLng or Convert.ParseInt32 to convert to number and build the SQL statement using that.</p>
http://stackoverflow.com/questions/1536161/iphone-apis-to-access-sms-calendar-emails-call-logs/1536175#15361756Answer by svinto for iPhone APIs to access SMS, calendar, emails, call logs?svinto2009-10-08T07:32:29Z2009-10-08T07:32:29Z<p>It's not possible due to the sandboxing on iPhone.</p>
http://stackoverflow.com/questions/1507965/what-is-the-best-way-to-manage-array-or-arrays-in-classical-asp/1508778#15087780Answer by svinto for What is the best way to manage array or arrays in classical ASPsvinto2009-10-02T10:30:42Z2009-10-02T10:30:42Z<p>I would create a class to contain these, something like this:</p>
<pre><code>Class Area
Public Name
Private _children
Private Sub Class_Initialize()
_children = Array()
End Sub
Public Property Get Children()
Set Children = _children
End Property
Public Sub AddChild(newChild)
ReDim Preserve _children(UBound(_children)+1)
Set _children(UBound(_children)) = newChild
End Sub
End Class
</code></pre>
http://stackoverflow.com/questions/1503321/can-i-map-caps-lock-to-something-useful-for-the-delphi-ide/1503393#15033931Answer by svinto for Can I map Caps Lock to something useful for the Delphi IDE?svinto2009-10-01T11:28:02Z2009-10-01T11:28:02Z<p>Can't you first map it some obscure non-modifier-key in the registry, then map that to the desired function in Delphi using the keyboard preferences thingy?</p>
http://stackoverflow.com/questions/1503342/what-is-foobar/1503382#15033820Answer by svinto for what is foobar?svinto2009-10-01T11:24:54Z2009-10-01T11:24:54Z<p>Sometimes, foo and bar is also used as dummy names for variables.</p>
<p>(BTW, I thought the R was for recognition)</p>
http://stackoverflow.com/questions/1491991/how-to-unwrap-tags/1492084#14920843Answer by svinto for How to "unwrap" tags ?svinto2009-09-29T11:55:40Z2009-09-29T11:55:40Z<pre><code>var $table = $("center table");
var $center = $table.parent();
$table.insertBefore($center);
$center.remove();
</code></pre>
http://stackoverflow.com/questions/1487682/javascript-debuging-code-created-by-eval-and-new-function/1488221#14882210Answer by svinto for Javascript: Debuging code created by eval() and new Function()svinto2009-09-28T17:10:52Z2009-09-28T17:10:52Z<pre><code>function objectbuilder(a){
return {
get:function(s){
return s.toLowerCase() + a;
}
};
}
function temp(){
return objectBuilder("A");
}
var bObject=temp();
BObject.get("B"); // "bA"
BObject.get();
</code></pre>
http://stackoverflow.com/questions/1487738/encode-in-asp-and-decode-in-php/1487782#14877820Answer by svinto for Encode in ASP and decode in PHPsvinto2009-09-28T15:44:36Z2009-09-28T15:44:36Z<p>You will need more than one line of code per language for that.</p>
<p>For ASP you can use a component called CAPICOM that is included with Windows, for PHP the encryption functions is among all other functions. The gotcha I remember from doing this is that the input to capicom is sent as unicode per default. Your best bet is probably to convert the unicode to ascii or something when you get it back from the decryption function in PHP.</p>
http://stackoverflow.com/questions/1476943/how-to-implement-permissions-in-a-blogging-system/1476964#14769641Answer by svinto for How to implement permissions in a blogging system?svinto2009-09-25T12:12:00Z2009-09-25T12:12:00Z<p>I'd go with a combination of a decoupled authentication component, that you can ask if the current user has the role X, and if so allow them to do the thing. That way you can leave the specifics of groups and expiry etcetera to the authentication component.</p>
<p>You could combine this with some specialized authentication for your blogging engine, eg. having a list of posters in the blog object, and always allowing those persons to make posts.</p>
http://stackoverflow.com/questions/1445480/where-to-put-data-needed-in-several-partialviews/1445515#14455150Answer by svinto for Where to put Data needed in several PartialViewssvinto2009-09-18T16:08:35Z2009-09-18T16:08:35Z<p>No, TempData is for sending information to the next requests, in this case, there's only one request.</p>
<p>If the boxes are more or less the same size, I'd output them as divs and use css float:left; to position them next to each other. That way when a box doesn't fit, it'll fall down to the next line.</p>
<p>If you want to send additional data to your PartialView, you should create a ViewModel class containing two properties; one for the index and one for the article. To output the article grid you probably want to create a html helper method to move logic from the view.</p>
http://stackoverflow.com/questions/1441726/asp-search-and-results-in-a-single-page/1443662#14436620Answer by svinto for ASP Search and Results in a single pagesvinto2009-09-18T10:17:57Z2009-09-18T10:17:57Z<p>You probably want to display what the user searched for in the form when you display the result:</p>
<pre><code><label>Street: <input type="text" name="searchStreet" value="<%=Server.HtmlEncode(Request("searchStreet") & "") %>" /></label>
</code></pre>
<p>Adding a empty string is for casting to string to not give an error when the key wasn't found, eg. on first visit.</p>
<p>If you want to you can make the loop prettier:</p>
<pre><code>do until myRecordSet.EOF
%>
<div class='result'>")
<dl><%=myRecordSet("ContentTitle")%><dl>
<dt><%=myRecordSet("ContentStreet")%><dt>
<dt><%=myRecordSet("ContentTown")%><dt>
<dt><%=myRecordSet("ContentPostcode")%><dt>
</div><%
myRecordSet.MoveNext
loop
</code></pre>
<p>You probably want to Server.HtmlEncode there as well...</p>
<p>(ps ASP is actually one year younger than PHP... if you want something modern you might want to look at python, ruby or asp.net mvc before PHP, as it's easier to write bad code in PHP than in any of those. ds)</p>
http://stackoverflow.com/questions/1443550/iphone-lock-over-web/1443573#14435730Answer by svinto for iPhone Lock over websvinto2009-09-18T09:59:23Z2009-09-18T09:59:23Z<p>This is not possible. (Unless you create something that mimics MobileMe and/or Exchange server as those can lock and wipe iPhones, unlocking isn't possible though.)</p>
http://stackoverflow.com/questions/1410734/visual-basic-vs-dreamweaver-cs4/1410816#14108160Answer by svinto for Visual Basic Vs Dreamweaver CS4svinto2009-09-11T13:18:51Z2009-09-11T13:18:51Z<p>For what you're doing, I don't see a need for neither Visual Studio nor Dreamweaver. Why don't you check out <a href="http://www.panic.com/coda/" rel="nofollow">Coda</a> or <a href="http://www.eclipse.org/" rel="nofollow">Eclipse</a>?</p>
<p>Visual Basic 6 = For development of Windows applications or COM-libraries
Current version of Visual Studio = For development of anything .net including web apps with html, javascript etcetera.
Dreamweaver = More a program for users than for developers, though I haven't used it in ages</p>
http://stackoverflow.com/questions/1407162/what-is-yield-return-in-c/1407169#14071693Answer by svinto for What is yield return in C#?svinto2009-09-10T19:15:51Z2009-09-10T19:15:51Z<p>The yield keyword is used when implementing enumerators.</p>
<p><a href="http://firstclassthoughts.co.uk/csharp/csharp%5Fyield%5Freturn%5Fforeach.html" rel="nofollow">Here's a blog post with an example</a>.</p>
http://stackoverflow.com/questions/649510/can-i-register-a-it-domain-name-for-a-company-outside-of-italy/649537#6495370Answer by svinto for Can I register a .it domain name for a company outside of Italy?svinto2009-03-16T07:15:31Z2009-09-09T21:21:52Z<p>According to their <a href="http://www.nic.it/en/faq/faq-nomi.html#nomi6" rel="nofollow">FAQ</a>, you need to have an office within EU.</p>
http://stackoverflow.com/questions/1400820/jquery-to-wrap-elements/1400862#14008622Answer by svinto for jquery to wrap elementssvinto2009-09-09T17:00:37Z2009-09-09T17:00:37Z<p>Mighty work and might not be the smartest thing to do:</p>
<pre><code>var $entries = $("#entries");
var $div = $('<div></div>').appendTo($entries);
while($div.next().length > 0){
$div.append($div.nextAll().slice(0,3));
$div = $('<div></div>').appendTo($entries);
}
</code></pre>
http://stackoverflow.com/questions/1928140/detect-browser-through-javascriptComment by on Detect browser through javascript2009-12-18T13:17:23Z2009-12-18T13:17:23Z<a href="http://stackoverflow.com/questions/121280/how-do-i-detect-what-browser-is-used-to-access-my-site" rel="nofollow" title="how do i detect what browser is used to access my site">stackoverflow.com/questions/121280/…</a>
<a href="http://stackoverflow.com/questions/588940/what-is-the-best-way-to-do-browser-detection-in-javascript" rel="nofollow" title="what is the best way to do browser detection in javascript">stackoverflow.com/questions/588940/…</a>http://stackoverflow.com/questions/1794719/capture-screenshot-of-website-on-the-client-javascript-or-flash/1914033#1914033Comment by on Capture screenshot of website on the client (Javascript or flash)2009-12-16T11:30:05Z2009-12-16T11:30:05ZPlease update your question instead since this isn't an answer.http://stackoverflow.com/questions/1794719/capture-screenshot-of-website-on-the-client-javascript-or-flash/1857587#1857587Comment by on Capture screenshot of website on the client (Javascript or flash)2009-12-16T11:29:32Z2009-12-16T11:29:32ZPlease update your question instead since this isn't an answer.http://stackoverflow.com/questions/1874295/how-do-i-get-the-xmlserializer-to-add-namespaces-to-attributes-in-nested-objectsComment by on How do I get the XMLSerializer to add namespaces to attributes in nested objects?2009-12-09T15:00:40Z2009-12-09T15:00:40Z@Will: Yeah I know, but it's one of those times when you cannot change things at the other end. :(http://stackoverflow.com/questions/1874295/how-do-i-get-the-xmlserializer-to-add-namespaces-to-attributes-in-nested-objectsComment by on How do I get the XMLSerializer to add namespaces to attributes in nested objects?2009-12-09T14:59:27Z2009-12-09T14:59:27Z@Paul: Sorry, I didn't want to expose the original names and replaced things and got it wrong.http://stackoverflow.com/questions/1872379/is-this-a-ie8-or-jquerys-bug/1872747#1872747Comment by on Is this a IE8 or jQuery's bug?2009-12-09T10:41:58Z2009-12-09T10:41:58ZNot possible using selects and options. You need to make your own dropdown to make this work.http://stackoverflow.com/questions/1798545/how-to-escape-a-double-quote-in-inline-c-script-within-javascriptComment by on How to escape a double-quote in inline c# script within javascript?2009-11-25T17:27:32Z2009-11-25T17:27:32ZUnless the ClientID-property contains a quote, your code is fine. Or at lease the line you posted.http://stackoverflow.com/questions/1757805/jquery-event-only-every-time-interval/1757843#1757843Comment by on jQuery event only every time interval2009-11-18T22:44:28Z2009-11-18T22:44:28Z@thenduks: Not it's not, it's never declared, thus it'll end up in the window object and that's a bad thing.http://stackoverflow.com/questions/1757805/jquery-event-only-every-time-interval/1757843#1757843Comment by on jQuery event only every time interval2009-11-18T17:53:09Z2009-11-18T17:53:09ZWhere is ajaxQueue declared?http://stackoverflow.com/questions/1739678/validating-user-input-with-javascriptComment by on Validating user input with JavaScript2009-11-16T02:08:39Z2009-11-16T02:08:39Z<a href="http://stackoverflow.com/questions/1344319/how-to-validate-input-using-javascript" rel="nofollow" title="how to validate input using javascript">stackoverflow.com/questions/1344319/…</a>http://stackoverflow.com/questions/1699632/how-can-i-write-below-programming-in-jquery/1699659#1699659Comment by on How can I write below programming in jquery2009-11-09T08:06:31Z2009-11-09T08:06:31ZThat code won't run. Error on first line.http://stackoverflow.com/questions/1613679/how-to-make-an-incremental-update-to-a-pdfComment by on How to make an incremental update to a PDF2009-10-23T14:06:02Z2009-10-23T14:06:02ZYour question is very unclear, can you please elaborate?http://stackoverflow.com/questions/1529604/c-antipatterns/1529669#1529669Comment by on C# Antipatterns2009-10-07T20:21:44Z2009-10-07T20:21:44ZWouldn't those (Now and ToDay) give date objects with hours and minutes etcetera, where the example just has the date part?http://stackoverflow.com/questions/1509693/ive-learnt-jquery-should-i-go-back-and-learn-proper-jsComment by on I've learnt jQuery, should I go back and learn "proper js"?2009-10-02T14:01:57Z2009-10-02T14:01:57ZjQuery is a abstraction layer on top of the DOM, not so much on javascript, I'd say you're using proper javascript now..http://stackoverflow.com/questions/1503321/can-i-map-caps-lock-to-something-useful-for-the-delphi-ideComment by on Can I map Caps Lock to something useful for the Delphi IDE?2009-10-01T11:27:05Z2009-10-01T11:27:05ZARE YOU SURE? I FIND IT REALLY USEFUL FOR DISCUSSIONS ON THE INTERWEBS.