User Artem K. - Stack Overflowmost recent 30 from stackoverflow.com2009-12-17T14:55:32Zhttp://stackoverflow.com/feeds/user/55209http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1819349/iis-create-subdomain-for-mail-server-newbie/1819496#18194961Answer by Artem K. for IIS: create subdomain for mail server (newbie)Artem K.2009-11-30T12:21:36Z2009-11-30T12:21:36Z<ol>
<li>You should ask it on serverfault.com</li>
<li>IIS is not for domain setup, use dnsmgmt.msc (Start - Administrative Tools - DNS) console instead.</li>
<li>It depends on OS version or mail server software installed.</li>
</ol>
http://stackoverflow.com/questions/1608070/returning-element-value-deep-inside-xdocument/1608439#16084390Answer by Artem K. for Returning Element value deep inside XDocumentArtem K.2009-10-22T16:31:57Z2009-10-22T16:31:57Z<pre><code> XDocument XDoc = XDocument.Parse(xfile);
XNamespace ns = "PersonInstances";
if (XDoc.Root.Descendants(ns + "PersonId").Any())
{
Console.Write(XDoc.Root.Descendants(ns + "PersonId").First().Value);
}
else
{
Console.Write("Fail");
}
</code></pre>
http://stackoverflow.com/questions/1426194/spring-net-data-binding-with-usercontrol0Spring.NET data binding with UserControlArtem K.2009-09-15T09:44:46Z2009-09-15T09:59:45Z
<p>I am trying to bind a public UserControl property to my model inside a parent page. I created a simple example to show what I am trying to do, you can see it on <a href="http://pastebin.com/m629e7502" rel="nofollow">PasteBin</a> or download it <a href="http://catlionv.narod.ru/SpnTest.zip" rel="nofollow">here</a></p>
<p>The problem it that UserControl's property not binding to model, please check UserControl code:</p>
<pre><code>public partial class SpnTest : Spring.Web.UI.UserControl
{
private string testProperty;
public string TestProperty
{
get { return testProperty; }
set { testProperty = (string)value; }
}
protected override void InitializeModel()
{
testProperty = "";
}
protected override void LoadModel(object savedModel)
{
testProperty = (string)savedModel;
}
protected override object SaveModel()
{
return testProperty;
}
protected override void InitializeDataBindings()
{
BindingManager.AddBinding("TextBox1.Text", "TestProperty").SetErrorMessage("TestProperty Binding error", "errProv.errors");
}
protected void Page_Load(object sender, EventArgs e)
{
}
}
</code></pre>
<p>And the parent page code:</p>
<pre><code>using System;
public partial class SpnTest : Spring.Web.UI.Page
{
public class Test
{
public string Property1 { get; set; }
public string Property2 { get; set; }
}
private Test testObj;
public Test TestObj
{
get { return testObj; }
set { testObj = (Test)value; }
}
protected override void InitializeModel()
{
testObj = new Test();
testObj.Property1 = testObj.Property2 = "";
}
protected override void LoadModel(object savedModel)
{
testObj = (Test)savedModel;
}
protected override object SaveModel()
{
return testObj;
}
protected override void InitializeDataBindings()
{
BindingManager.AddBinding("TextBox1.Text", "TestObj.Property1").SetErrorMessage("Property1 Binding error", "errProv.errors");
BindingManager.AddBinding("SpnTestControl1.TestProperty", "TestObj.Property2").SetErrorMessage("Property2 Binding error", "errProv.errors");
}
protected void Page_Load(object sender, EventArgs e)
{
}
protected void btnSubmit_Click(object sender, EventArgs e)
{
txtDebug.Text = string.Format("Property1 = {0}\nProperty2 = {1}", TestObj.Property1, TestObj.Property2);
}
}
</code></pre>
http://stackoverflow.com/questions/312551/generate-net-objects-from-known-xsd/1302308#13023080Answer by Artem K. for Generate .Net objects from known XSDArtem K.2009-08-19T20:00:17Z2009-08-19T21:09:59Z<p>Have you tried the <a href="http://linqtoxsd.codeplex.com/" rel="nofollow">LINQ to XSD</a>? The project name is not really describes it's goal, so I should tell that it is useful replacement to xsd.exe.</p>
http://stackoverflow.com/questions/1287005/synchronize-projects-on-different-development-computers/1288458#12884580Answer by Artem K. for synchronize projects on different development computersArtem K.2009-08-17T14:59:53Z2009-08-17T14:59:53Z<p>mesh.com works well on Windows. Try the dropbox.com if you are using Linux/Mac. You could get the best in combination with Git/Mercurial :)</p>
http://stackoverflow.com/questions/1272066/asp-net-wizard-control-steps-on-top/1272259#12722590Answer by Artem K. for ASP.net Wizard Control Steps on topArtem K.2009-08-13T14:19:47Z2009-08-13T14:19:47Z<p>This solution uses the custom user control <a href="http://www.codeproject.com/KB/aspnet/CustomizingWizardNav.aspx" rel="nofollow">http://www.codeproject.com/KB/aspnet/CustomizingWizardNav.aspx</a> </p>
http://stackoverflow.com/questions/1271887/how-to-handle-low-level-wcf-errors/1271993#12719930Answer by Artem K. for How to handle low level WCF errors?Artem K.2009-08-13T13:34:41Z2009-08-13T13:34:41Z<p>Set up diagnostic tracing and check the logs with <a href="http://msdn.microsoft.com/en-us/library/ms732023.aspx" rel="nofollow">Service Trace Viewer Tool</a>. Link contains information about configuring tracing as well.</p>
http://stackoverflow.com/questions/1265624/retrieving-iis-6-0-certificate-information-in-net/1265758#12657581Answer by Artem K. for Retrieving IIS 6.0 certificate information in .NETArtem K.2009-08-12T12:04:13Z2009-08-12T12:44:30Z<p><strong>UPD</strong> I just noticed that you need C# but not ASP.NET, so my reply is not correct. You can use <a href="http://msdn.microsoft.com/en-us/library/ms525791.aspx" rel="nofollow">System.DirectoryServices</a> to query IIS properties. Please note that certificate is not bound to the whole IIS server. Every web site can have it's own certificate.</p>
http://stackoverflow.com/questions/1232465/how-to-use-jquery-select-element-by-id-and-asp-net-without-putting-ctl00-everyw/1233805#12338051Answer by Artem K. for How to use JQuery, select element by ID and ASP.NET without putting ctl00_ everywhere in the codeArtem K.2009-08-05T14:54:48Z2009-08-05T14:54:48Z<p>I'm using <a href="http://msdn.microsoft.com/en-us/library/bb310408.aspx" rel="nofollow">ScriptManager.RegisterStartupScript</a> to get all the ClientIDs I need.</p>
<ol>
<li>Define javascript variables in 'head' of the page to store IDs.</li>
<li>Use RegisterStartupScript in Page_Load to assign values to the variables as follows:</li>
</ol>
<p>string myScript = String.Format("window.onload = function() { id1 = {0}, id2={1}, id3={2}}",
Control1.ClientID,
Control2.ClientID,
Control3.ClientID);</p>
<p>ScriptManager.RegisterStartupScript(Page, Page.GetType(), "SomeKey", myScript, true);</p>
http://stackoverflow.com/questions/1191136/hosting-mercurial-with-iis-64Hosting Mercurial with IIS 6Artem K.2009-07-27T23:10:22Z2009-08-04T11:31:36Z
<p>I'm trying to set up Mercurial repositories to be hosted by IIS under Windows Server 2003. Following <a href="http://stackoverflow.com/questions/818571/how-to-setup-mercurial-and-hgwebdir-on-iis">this post</a> I installed Python 2.5.4.4 and Mercurial 1.3, set up virtual dir, extracted library.zip and created hgwebdir.config.</p>
<p>However, when I trying to open the <a href="http://hostname/hg/hgwebdir.cgi" rel="nofollow">http://hostname/hg/hgwebdir.cgi</a> I got an error “The specified CGI application misbehaved by not returning a complete set of HTTP headers.” I did all by best:</p>
<ol>
<li>Checked IIS mappings to both .py and .cgi extensions. I even tried to use FastCGI with no success.</li>
<li>Created “Hello World” in the same dir and checked that it works fine.</li>
<li>Checked read/exec permissions to Python, IIS and repos directories for IUSR, IWAM and NETWORK SERVICE.</li>
<li>Tried to apply two different patches from <a href="http://www.nabble.com/Mercurial-f24354.html" rel="nofollow">Mercurial mailing list</a>. Since they both are old I haven't success with it.</li>
<li>INstalled Sysinternals' procmon and checked for filesystem errors during request. I found nothing except lots of Buffer Overflow results in Python process while it loads it's libraries.</li>
<li>Tried to add 'Content-type: text/html' to the script.</li>
</ol>
<p>One more thing is when I'm requesting inexistent script file (e.g /hg/inexist.cgi) I have the same error. Nothing helped!</p>
http://stackoverflow.com/questions/1191136/hosting-mercurial-with-iis-6/1226954#12269540Answer by Artem K. for Hosting Mercurial with IIS 6Artem K.2009-08-04T11:31:36Z2009-08-04T11:31:36Z<p>Finally I got that "no headers" error returned on any python script error, so I checked script with console interpreter and fixed it. And of course I should ask this question at ServerFault instead of StackOverflow - the lack of sleep did the job :) </p>
http://stackoverflow.com/questions/1221796/good-and-small-open-source-database-for-teaching/1222905#12229051Answer by Artem K. for Good and small open source database for teachingArtem K.2009-08-03T15:13:07Z2009-08-03T15:13:07Z<p><a href="http://db.apache.org/derby/" rel="nofollow">Apache Derby</a> implemented in Java</p>
<p><a href="http://en.wikipedia.org/wiki/CouchDB" rel="nofollow">CouchDB</a> written in Erlang. It is document-oriented rather then rational.</p>
<p><a href="http://en.wikipedia.org/wiki/Cassandra%5F%28database%29" rel="nofollow">Cassandra</a> by Facebook</p>
http://stackoverflow.com/questions/1200989/setting-default-button-in-ajaxified-wizard-control/1222716#12227161Answer by Artem K. for Setting Default Button in Ajaxified Wizard ControlArtem K.2009-08-03T14:37:45Z2009-08-03T14:37:45Z<p>Try the <a href="http://msdn.microsoft.com/en-us/library/bb346807.aspx" rel="nofollow">ScriptManager.SetFocus</a>.</p>
http://stackoverflow.com/questions/1191186/calling-void-methods-in-iis-7-and-not-waiting-for-them-to-return/1191262#11912621Answer by Artem K. for Calling void methods in IIS 7 and not waiting for them to returnArtem K.2009-07-27T23:54:58Z2009-07-27T23:54:58Z<p>I suppose your method being stopped by script timeout. There are different ways to fix it:</p>
<ol>
<li>Increase script timeout. I would not recommend this one, as the long operation locks Application pool thread and it can't process other requests. But you can try :) <a href="http://www.devx.com/vb2themax/Tip/18803" rel="nofollow">http://www.devx.com/vb2themax/Tip/18803</a></li>
<li>Using asynchronous methods. <a href="http://msdn.microsoft.com/en-us/magazine/cc163725.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/magazine/cc163725.aspx</a></li>
<li>Workflows <a href="http://msdn.microsoft.com/en-us/magazine/2009.01.longrunwf.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/magazine/2009.01.longrunwf.aspx</a></li>
<li>Execute your process with Ajax request to the web service and polling the service to check the execution status.</li>
</ol>
http://stackoverflow.com/questions/891918/grid-view-vs-list-view/891982#8919820Answer by Artem K. for Grid View vs List ViewArtem K.2009-05-21T08:58:47Z2009-05-21T08:58:47Z<p>ListView gives you more control over resulting HTML markup.</p>
http://stackoverflow.com/questions/891441/postbackurl-vs-response-redirect/891909#8919091Answer by Artem K. for PostBackUrl Vs Response.RedirectArtem K.2009-05-21T08:35:53Z2009-05-21T08:35:53Z<p>PostbackUrl changes form's <strong>action</strong> attribute, so initial page is not changed, but when user posts the form, it's data being sent to the different page.</p>
<p>Response.Redirect leads to <a href="http://en.wikipedia.org/wiki/HTTP%5F302" rel="nofollow">HTTP 302 Redirect</a>. It is the common redirect action unlike <a href="http://en.wikipedia.org/wiki/HTTP%5F301" rel="nofollow">301 redirect</a> which is used when you want to change the url completely and permanently.</p>
<p>Server.Transfer in fact does not activates any HTTP requests and completely transparent to user. Usually it is used to show error pages (e.g. 404 or 500 HTTP statuses), because if you will use redirect instead of Server.Transfer, browser (more important if it's a search engine crawler) will not receive original HTTP status (404 for example).</p>
http://stackoverflow.com/questions/886903/calling-asp-net-server-side-method-via-jquery/887146#8871460Answer by Artem K. for Calling ASP.NET server side method via JQueryArtem K.2009-05-20T10:09:20Z2009-05-20T10:09:20Z<p>You should use web service instead of regular aspx web page. Web pages has no support to call web methods, I believe your jQuery request loads the HTML page instead. I suggest you two things:</p>
<ol>
<li>Use Fiddler2 (with IE) or HttpFox (with Firefox) to debug AJAX requests and responses on client side.</li>
<li>Use WCF web service on the server side. in this case you can use <a href="http://msdn.microsoft.com/en-us/library/ms732009.aspx" rel="nofollow">SvcConfigEditor</a> and <a href="http://msdn.microsoft.com/en-us/library/ms732023.aspx" rel="nofollow">SvcTraceViewer</a> to configure and debug web methods on the server side.</li>
</ol>
http://stackoverflow.com/questions/882937/asp-net-script-and-css-compression/882986#8829861Answer by Artem K. for ASP.NET - script and css compressionArtem K.2009-05-19T14:04:56Z2009-05-19T14:04:56Z<p>There is Gzip/Deflate compression support in IIS compatible with all modern browsers except IE6. For IIS 7 check this page: <a href="http://www.iis.net/ConfigReference/system.webServer/httpCompression" rel="nofollow">http://www.iis.net/ConfigReference/system.webServer/httpCompression</a></p>
http://stackoverflow.com/questions/881967/anchor-ie-6-bug/882224#8822242Answer by Artem K. for anchor IE 6 bugArtem K.2009-05-19T11:38:13Z2009-05-19T11:38:13Z<p>IE 6 has a strange behaviour, it does not recognizes redirects with anchors in it. The workaround is to add additional ampersand symbol '&' before the '#'. So, in your example, the code will look like <code>Response.Redirect(Request.Url.PathAndQuery + "&New=1&#create");</code></p>
<p>I suggest you to check User-Agent on the server side and add this additional ampersand if the browser is IE 6.</p>
http://stackoverflow.com/questions/877227/asp-net-difference-between-runatserver-and-server-controls/877249#8772490Answer by Artem K. for asp.net: difference between runat="server" and server controlsArtem K.2009-05-18T11:24:45Z2009-05-18T11:24:45Z<p>There is no server events associated with such a controls, but you can use it in codebehind to change it's properties.</p>
http://stackoverflow.com/questions/783459/limiting-number-of-computers-from-which-users-can-access-asp-net-website/783593#783593-2Answer by Artem K. for Limiting number of computers from which users can access ASP.NET website?Artem K.2009-04-23T21:24:40Z2009-04-23T21:24:40Z<p>I think you should consider using of WCF web service and custom WinForms/WPF client with authorization.</p>
http://stackoverflow.com/questions/777018/is-there-a-way-to-draw-lines-x-y-x2-y2-in-asp-net-pages/777174#7771740Answer by Artem K. for Is there a way to draw lines (x,y)-(x2,y2) in ASP.NET pages? Artem K.2009-04-22T13:19:11Z2009-04-22T13:19:11Z<p>There is a new Chart control in ASP.NET 3.5 with a bunch of features and options, maybe you'll like it.
You can read a quick review <a href="http://weblogs.asp.net/dwahlin/archive/2008/11/25/getting-started-with-the-asp-net-3-5-chart-control.aspx" rel="nofollow">here</a>.</p>
http://stackoverflow.com/questions/776589/are-there-any-really-big-sites-which-use-asp-net/776814#7768142Answer by Artem K. for Are there any really big sites which use ASP.NET?Artem K.2009-04-22T11:45:58Z2009-04-22T12:26:13Z<p>Quick and dirty way to find some ASP.NET sites using Google is to perform a search <strong>inurl:.aspx</strong>. I believe the most popular sites are at the top of the results.</p>
<p>The other way is to manually check headers of the websites in Alexa Top 500: <a href="http://alexa.com/topsites" rel="nofollow">http://alexa.com/topsites</a>. The first ASP.NET based website (not related to MS) I found was 36-th doubleclick.com. </p>
http://stackoverflow.com/questions/759973/javascript-for-google-chrome-detecting-enable-javascript-in-google-chrome/760042#7600420Answer by Artem K. for Javascript for Google Chrome detecting & Enable javascript in Google ChromeArtem K.2009-04-17T11:18:11Z2009-04-17T11:18:11Z<p>There is a Javascript Console in Chrome, press Ctrl+Shift+J to open it and check for errors.</p>
http://stackoverflow.com/questions/759967/server-execute/759997#7599970Answer by Artem K. for Server.executeArtem K.2009-04-17T11:01:41Z2009-04-17T11:01:41Z<p>There is something wrong with the architecture of your web application while you have to use such a thing. Take a deeper look at the master pages and try to use the ASP.NET the way it was designed to use.</p>
http://stackoverflow.com/questions/1496423/git-versus-mercurial-for-net-developers/1496522#1496522Comment by Artem K. on Git versus Mercurial for .NET developers?Artem K.2009-10-01T15:04:50Z2009-10-01T15:04:50ZThere is also HgSccPackage plugin which brings some Mercurial functionality to VS 2008 <a href="http://bitbucket.org/zzsergant/hgsccpackage/overview/" rel="nofollow">bitbucket.org/zzsergant/hgsccpackage/…</a>http://stackoverflow.com/questions/886903/calling-asp-net-server-side-method-via-jquery/887146#887146Comment by Artem K. on Calling ASP.NET server side method via JQueryArtem K.2009-05-20T10:56:17Z2009-05-20T10:56:17ZAlso, you can check Microsoft performance benchmarks: <a href="http://msdn.microsoft.com/en-us/library/bb310550.aspx" rel="nofollow">msdn.microsoft.com/en-us/library/…</a>http://stackoverflow.com/questions/886903/calling-asp-net-server-side-method-via-jquery/887146#887146Comment by Artem K. on Calling ASP.NET server side method via JQueryArtem K.2009-05-20T10:51:31Z2009-05-20T10:51:31ZWCF is now primary and recommended communication technology for .NET. It has a tons of capabilities over asmx web servives, better testability (Google for "Unit testing WCF services").
Strategically, WCF is a right choice to learn. Check this post for more about asmx vs WCF:
<a href="http://social.msdn.microsoft.com/Forums/en-US/dotnetstocktradersampleapplication/thread/048d8a45-dad8-431f-886c-9aae78862285" rel="nofollow">social.msdn.microsoft.com/Forums/en-US/…</a>http://stackoverflow.com/questions/886903/calling-asp-net-server-side-method-via-jqueryComment by Artem K. on Calling ASP.NET server side method via JQueryArtem K.2009-05-20T09:30:14Z2009-05-20T09:30:14ZIs your server side method really an ASPX page and not ASMX or WCF web service? URL points to aspx web page.http://stackoverflow.com/questions/881967/anchor-ie-6-bug/882224#882224Comment by Artem K. on anchor IE 6 bugArtem K.2009-05-19T11:43:46Z2009-05-19T11:43:46ZCheck this post for more information <a href="http://blogs.vertigo.com/personal/tomphan/Blog/Lists/Posts/Post.aspx?ID=6" rel="nofollow">blogs.vertigo.com/personal/tomphan/…</a>http://stackoverflow.com/questions/776589/are-there-any-really-big-sites-which-use-asp-net/776814#776814Comment by Artem K. on Are there any really big sites which use ASP.NET?Artem K.2009-04-22T12:20:41Z2009-04-22T12:20:41ZThe irony is that I see IE's Privacy Report with the blocked doubleclick.net cookie <b>on this page</b> :)