User ebattulga - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T09:49:27Z http://stackoverflow.com/feeds/user/60200 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/641646/how-can-i-find-out-which-programming-language-was-used-to-write-any-web-site 2 How can I find out which programming language was used to write any web site? ebattulga 2009-03-13T06:25:00Z 2009-11-20T05:16:30Z <p>If there is no file extension on the end of the URL, how can I find out which programming language - PHP, .Net, ASP, etc. - was used to write a particular website?</p> <p>For example - <a href="http://www.andromeda.mn" rel="nofollow">www.andromeda.mn</a>.</p> <p>Answers:</p> <p><a href="http://uptime.netcraft.com/" rel="nofollow">uptime.netcraft.com/</a> -- Dave Webb</p> <p><a href="http://builtwith.com" rel="nofollow">builtwith.com</a> -- Jason M</p> <p>Insert after url ?=PHPE9568F34-D428-11d2-A769-00AA001ACF42 -- thomasrutter</p> <p>using <a href="http://www.rexswain.com/httpview.html" rel="nofollow">HTTP header viewer</a> tool -- thomasrutter</p> http://stackoverflow.com/questions/1573361/find-duplicate-lines-and-remove-using-regular-expression-with-replace-feature 2 find duplicate lines and remove using regular expression with replace feature ebattulga 2009-10-15T16:05:17Z 2009-11-19T04:38:32Z <p>Not use any programming language. Only use regular expression. is it possible?</p> <p>For example input>></p> <pre><code>11 22 22 &lt;-must remove 33 44 44 &lt;-must remove 55 </code></pre> <p>Output>></p> <pre><code>11 22 33 44 55 </code></pre> http://stackoverflow.com/questions/680140/how-to-locate-theme-folder-on-the-asp-net 0 how to locate theme folder on the asp.net? ebattulga 2009-03-25T03:37:45Z 2009-11-16T19:00:02Z <p>i'm bind some image control dynamically. but don't set image url. When i using skin file and then set skinid, error shown (The 'SkinId' property can only be set in or before the Page_PreInit event for static controls. For dynamic controls, set the property before adding it to the Controls collection)</p> <p>How to get virtual theme location ?</p> http://stackoverflow.com/questions/1730818/how-to-set-custom-attribute-that-is-only-valid-on-return-int-value-function 0 How to set custom attribute that is only valid on return int value function ebattulga 2009-11-13T17:42:00Z 2009-11-13T18:42:56Z <p>I know AttributeUsage class. This class can set only property or method or class ...etc I need custom attribute that is only acitve on method and method must return int value. If any function return string value, this attribute will don't work. Only work on int value.</p> <p>Is there any like this attribute?</p> <p>How can i create?</p> <p>Is it possible?</p> http://stackoverflow.com/questions/1729712/why-might-dropdownlist-selectedindex-value-fail/1729867#1729867 0 Answer by ebattulga for Why might dropdownlist.SelectedIndex = value fail? ebattulga 2009-11-13T15:19:59Z 2009-11-13T15:19:59Z <p>Use this</p> <pre><code>ddlBuildAddr.DataSource = buildings ddlBuildAddr.DataTextField = "buildingName" ddlBuildAddr.DataValueField = "buildingId" Dim addressId As Int32 = OfficeData.GetInstance().GetBuildingId(currentAddress) ddlBuildAddr.Databind() </code></pre> <p>After</p> <pre><code>foreach (var item in ddlBuildAddr.Items) { if(Convert.toInt32(item.value)==addressId) { item.selected=true; break; } } </code></pre> http://stackoverflow.com/questions/1714363/converting-a-string-to-a-datetime-variable/1714368#1714368 0 Answer by ebattulga for Converting a String to a DateTime variable? ebattulga 2009-11-11T10:38:24Z 2009-11-11T10:43:58Z <p><code>DateTime.Parse("08:00")</code></p> http://stackoverflow.com/questions/1695554/is-it-possible-to-set-obsolete-attribute-to-existing-method-using-extension-metho 0 Is it possible to set Obsolete attribute to existing method using extension method ebattulga 2009-11-08T06:19:10Z 2009-11-08T06:27:24Z <pre><code>My Team use ---&gt; aa.GetItem() --&gt;&gt; result </code></pre> <p>After create <code>NewGetItem</code> extension function. don't use <code>GetItem</code>. <code>GetItem</code> must be <code>obsolete</code></p> <pre><code>My Team use ---&gt; ┒ aa.GetItem() ┌ --&gt;&gt; new result │ │ └--&gt; aa.NewGetItem() --&gt;┘ </code></pre> <p>i don't have <code>aa</code> class code. </p> <p>How to do it?</p> <p>Is it possible?</p> http://stackoverflow.com/questions/1675562/how-to-select-xml-node-using-near-element 0 how to select xml node using near element ebattulga 2009-11-04T17:54:48Z 2009-11-05T09:50:35Z <p>Using XPath and the HTML Agility Pack, I need to select the <code>destination</code> text using <code>color:#ff00ff</code>. </p> <p>My HTML looks like this:</p> <pre><code>&lt;table&gt; &lt;tr style="color:#ff00ff"&gt; &lt;td&gt;&lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td&gt;destination&lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td&gt;&lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td&gt;not destination&lt;/td&gt; &lt;/tr&gt; &lt;/table&gt; </code></pre> http://stackoverflow.com/questions/1657680/is-there-any-property-default-value-initializer-attribute 2 is there any property default value initializer attribute? ebattulga 2009-11-01T17:05:36Z 2009-11-01T17:36:00Z <p>I need like this</p> <pre><code>public class AA{ public AA(){} [Default("hi")] public string value1{get;set} [Default(12)] public int value2{get;set;} } </code></pre> <p>Usage:</p> <pre><code>AA a=new AA(); print(a.value1); //result: hi print(a.value2); //result: 12 </code></pre> <p>Is it possible to create like this?</p> <p>I know another way</p> <pre><code>Public class AA{ public AA(){value1="hi";value2=12} ... } </code></pre> <p>Otherwise</p> <pre><code>AA a=new AA(){value1="hi",value2=12}; </code></pre> <p>But i need only attribute. </p> http://stackoverflow.com/questions/1655274/google-reader-json-image 0 google reader json image ebattulga 2009-10-31T19:02:11Z 2009-10-31T19:02:11Z <p>i'm using json to read shared google reader items. But item not contain image link. only contain <code>[image: imagename]</code> on <code>content</code> field . </p> <p>How can get image url?</p> http://stackoverflow.com/questions/1653962/is-it-possible-to-extend-class-attribute-in-net 1 is it possible to extend class attribute in .net? ebattulga 2009-10-31T10:08:22Z 2009-10-31T10:52:38Z <p>I have a library. This library contains class named <code>tPage</code>. This <code>tPage</code> class not marked serializable. I can't modify this library. I need to serialize this. </p> <p>How to extend this class attribute?</p> <p>Is it possible?</p> http://stackoverflow.com/questions/1186256/how-to-handle-control-from-template-at-runtime-in-asp-net 0 how to handle control from template at runtime in asp.net ebattulga 2009-07-27T03:08:32Z 2009-10-25T20:00:02Z <p>I'm using ReorderedList from AjaxControlToolkit. Then insert dropdownlist to InsertItemTemplate. I need to bind this dropdownlist. But can't handle this control. How can i do? How to user ITemplate interface?</p> http://stackoverflow.com/questions/1621387/blogger-layout-syntax-question 0 blogger layout syntax question ebattulga 2009-10-25T16:53:41Z 2009-10-25T16:53:41Z <p>I know this</p> <p>on the <strong>javascript programming</strong><br/></p> <pre><code>if(a==b){}else{} </code></pre> <p>same code on the <strong>blogger</strong> blog template syntax</p> <pre><code>&lt;b:if cond='a==b'&gt; &lt;b:else/&gt; &lt;/b:if&gt; </code></pre> <p><strong>I need,</strong> how to do following on the <strong>blogger</strong></p> <ol> <li><code>if(a==b) || (c==a)</code> how to create multi conditional expression <strong>?</strong></li> <li><code>data:blog.url.substring(40)</code> how to subtract <code>data:blog.url</code> string. <strong>?</strong></li> <li><code>data:blog.url.indexOf("label")</code> how to search from <code>data:blog.url</code> string <strong>?</strong></li> </ol> http://stackoverflow.com/questions/1516151/urlrewriter-problem-query-string-is-duplicated-shown 0 urlrewriter problem: Query string is duplicated shown? ebattulga 2009-10-04T10:58:10Z 2009-10-24T10:00:02Z <p>I'm using urlRewritingNet. My web.config is here>></p> <pre><code>&lt;add name="HOME" virtualUrl="^~/(.*)/Default.aspx" rewriteUrlParameter="ExcludeFromClientQueryString" destinationUrl="~/Default.aspx?PageTitle=$1" ignoreCase="true"/&gt; </code></pre> <p>My query string is here>></p> <p><code>www.domain.com/home/default.aspx</code></p> <p>This works. But I'm insert LoginStatus control. When click on the login control to logout, Page url was like this <code>www.domain.com/home/default.aspx?PageTitle=home</code></p> <p><code>Request.Querystring["PageTitle"]</code> result is <code>home,home</code></p> <p>How to stop this duplicated query string?</p> http://stackoverflow.com/questions/1615220/asp-net-page-location-problem 2 asp.net page location problem ebattulga 2009-10-23T18:40:05Z 2009-10-23T18:45:54Z <p>I'm creating usercontrol. This control use javascript <br/> <code>&lt;script src='js/my.js' type='text/javascript'&gt;&lt;/script&gt; </code></p> <p>My web directory location is here>></p> <pre><code>App_code\myusercontrol.css User\aa.aspx bb.aspx </code></pre> <p><code>aa.aspx</code> And <code>bb.aspx</code> is use my created usercontrol. My problem is <br/> when i calling <code>aa.aspx</code>, successfully work<br/> when i calling <code>bb.aspx</code>, javascript location error</p> <p>I'm changing script to <code>&lt;script src='../js/my.js' type='text/javascript'&gt;&lt;/script&gt; </code><br/> when i calling <code>bb.aspx</code>, successfully work<br/> when i calling <code>aa.aspx</code>, javascript location error</p> <p>How to fix this problem?</p> http://stackoverflow.com/questions/1599941/is-it-possible-to-change-iis-settings-from-web-config 0 Is it possible to change IIS settings from web config ebattulga 2009-10-21T10:25:52Z 2009-10-21T11:05:32Z <p>I'm using url rewriting.net. I'm testing web on the local host, it is successfully work. But When i deploying web to remote host, url rewriting not work. Problem is (The resource cannot be found). I found problem. My deployed remote host IIS configuration is (Virtual dir->Properties->Home directory->Application Mapping->.aspx->Edit->"Check that file exist" is checked). I need to uncheck them. But my deployed host control panel not have a application mapping function. </p> <p>How to uncheck this option using web.config?</p> <p>Is it possible?</p> <p>Has you another idea?</p> http://stackoverflow.com/questions/1350968/how-to-insert-unicode-text-to-sql-server-from-query-window 0 how to insert unicode text to SQL Server from query window ebattulga 2009-08-29T09:35:03Z 2009-10-20T02:43:52Z <p>I'm using the following code:</p> <pre><code>INSERT INTO tForeignLanguage ([Name]) VALUES ('Араб') </code></pre> <p>this value inserted like this '????'</p> <p>How do I insert unicode text from the sql management studio query window?</p> http://stackoverflow.com/questions/1584850/is-it-possible-to-get-anchor-visited-state-from-javascript 2 is it possible to get anchor visited state from javascript? ebattulga 2009-10-18T13:07:46Z 2009-10-18T13:49:12Z <ol> <li>i'm using jquery. i have a anchor list. i'm enumerate anchors, if it visited, set display:none; </li> <li>i need when click on the anchor, anchor will changed to visited state from javascript?</li> </ol> <p>How can i do?</p> http://stackoverflow.com/questions/1579141/how-to-handle-any-javascript-load-finished-event-using-jquery 0 how to handle any javascript load finished event using jquery ebattulga 2009-10-16T16:49:13Z 2009-10-16T23:47:24Z <p>I have a blog. I'm insert yahoo pipe. I need to remove yahoo pipe icon after script load finish. script is here>></p> <pre><code> &lt;script src="http://l.yimg.com/a/i/us/pps/listbadge_1.1.js"&gt; {"pipe_id":"24f8f6a880eb3be0711d541","_btype":"list","width":"100%","hideHeader":true} &lt;/script&gt; </code></pre> <p>My code is here>></p> <pre><code>$("script[src=http://l.yimg.com/a/i/us/pps/listbadge_1.1.js]").load(function(){ $(".ybf").hide(); }); </code></pre> <p>But this don't work. </p> <p>How to handle script load finish?</p> http://stackoverflow.com/questions/1579515/all-ajax-ready-event-on-jquery 0 all ajax ready event on jquery ebattulga 2009-10-16T18:03:10Z 2009-10-16T18:07:41Z <p>i'm using <code>$(document).ready</code> but that will not work for all ajax ready. I need a callback event after all ajax load finished in jquery. </p> <p>How to write this event using jquery?</p> http://stackoverflow.com/questions/1578258/jquery-attribute-selector-problem-dynamic-attribute-selector 3 jquery attribute selector problem: Dynamic attribute selector ebattulga 2009-10-16T14:04:02Z 2009-10-16T14:05:43Z <p>My code is here</p> <pre><code>$("a[href=$.jqURL.url()]").hide(); </code></pre> <p><code>$.jqURL.url()</code> return current page url. </p> <p>But this code don't work</p> <p>Is it possible to select dynamically?</p> http://stackoverflow.com/questions/1570808/get-iframe-page-title-from-javascript-using-jquery 0 get iframe page title from javascript using jquery ebattulga 2009-10-15T07:30:18Z 2009-10-15T07:56:38Z <p>How to get iframe src page title and then set main page title</p> http://stackoverflow.com/questions/1570618/how-to-get-attribute-from-any-selected-object-in-jquery 0 how to get attribute from any selected object in jquery ebattulga 2009-10-15T06:31:05Z 2009-10-15T06:40:39Z <p>for example</p> <pre><code>&lt;a href="http://stackoverflow.com" class="selected"&gt;stackoverflow&lt;/a&gt; </code></pre> <p>my jquery is here</p> <pre><code>alert($('.selected').attr('href')); </code></pre> <p>but this don't work</p> <p>How to get attribute from selected object?</p> http://stackoverflow.com/questions/1561846/i-want-to-know-about-blogger-template-language 0 I want to know about blogger template language ebattulga 2009-10-13T17:48:56Z 2009-10-13T17:54:45Z <p>i'm looking some syntax. </p> <pre><code>&lt;b:includable id='main'&gt; &lt;b:loop values='data:posts' var='post'&gt; &lt;/b:loop&gt; &lt;/b:includable&gt; &lt;/b:widget&gt; &lt;/b:section&gt; &lt;data:post.id/&gt; &lt;b:if cond='data:post.dateHeader'&gt; &lt;/b:if&gt; </code></pre> <p>This is mixed any programming language? I need to know this syntax language name? Who create this language? Where i find help about this syntax language? this language same as other programming language?</p> <p>Tell me please? I can't found help about this language.</p> http://stackoverflow.com/questions/1560721/how-to-use-blog-variable-on-javascript 0 how to use blog variable on javascript ebattulga 2009-10-13T14:49:34Z 2009-10-13T17:15:42Z <p>I'm using blogger.com. I need to use data:blog.url variable on the javascript. But i don't know how to assign to any javascript variable. </p> <p>How to get blogspot variables on the javascript?</p> http://stackoverflow.com/questions/1559348/how-to-change-css-style-from-jquery 0 how to change css style from jquery ebattulga 2009-10-13T10:21:00Z 2009-10-13T10:38:52Z <p>my style is here</p> <pre><code>#mybox{ display:none; } </code></pre> <p>my web is here </p> <pre><code>&lt;div id='mybox'&gt; ... &lt;/div&gt; &lt;script type='text/javascript'&gt; $(document).ready(function(){ $("#mybox").css("display","visible"); }) &lt;/script&gt; </code></pre> <p>mybox don't show. How to show mybox ?</p> http://stackoverflow.com/questions/1516251/how-to-fix-request-querystring-before-pageload 0 how to fix request.querystring before pageload ebattulga 2009-10-04T12:10:21Z 2009-10-04T12:37:32Z <p>My previous question is <a href="http://stackoverflow.com/questions/1516151/urlrewriter-problem-query-string-is-duplicated-shown">urlrewriter problem: Query string is duplicated shown?</a> </p> <p>I'm developing asp.net web site. But has a one problem. There is duplicated query string like this <code>www.domainname.com/default.aspx?Query=Value1&amp;Query=Value2</code> I'm using to too many pages like this <code>Request.QueryString["Query"]</code>. But this return <code>Value1,Value2</code> . I don't want to fix this problem to too many pages. I want to fix querystring before pageload. I think that Maybe will write some function on global.asax. But i don't know to how write it. </p> <p>You have a any idea?</p> http://stackoverflow.com/questions/1494003/urlrewriting-challange 0 URLRewriting challange ebattulga 2009-09-29T17:44:40Z 2009-09-29T17:57:28Z <p>I'm using URLRewritingNet 2.0. How do I rewrite URL's in ASP.NET?</p> <p>I request is here >></p> <p>Input: <code>www.sampleweb.com/param1/value1/param2/value2/default.aspx</code></p> <p>Output: <code>www.sampleweb.com/default.aspx?param1=value1&amp;param2=value2</code></p> <p>Must work dynamically like this <code>param1/value1/param2/value2/ ... /paramN/valueN</code></p> http://stackoverflow.com/questions/1491361/how-to-save-enum-value-to-session 1 how to save enum value to session ebattulga 2009-09-29T08:55:20Z 2009-09-29T09:03:06Z <p>I'm creating enum property. This property should saved into session. My code is here</p> <p><code>public enum TPageMode { Edit=1,View=2,Custom=3}</code></p> <pre><code> protected TPageMode Mode { get{ if (Session["Mode"] == null) return TPageMode.Edit; else { return Session["Mode"] as TPageMode; // This row is problem } } set { Session["Mode"] = value; } } </code></pre> <p>compiler release error on <code>return Session["Mode"] as TPageMode</code></p> <p><code>The as operator must be used with a reference type or nullable type</code></p> <p>When i replacing this row to </p> <pre><code>return Enum.Parse(typeof(TPageMode), Session["Mode"].ToString()); </code></pre> <p>This error shown</p> <p><code>Cannot implicit convert type 'object' to 'TPageMode'</code></p> <p>How to read Enum value from session?</p> http://stackoverflow.com/questions/1488400/how-to-generate-download-file-name 1 How to generate download file name? ebattulga 2009-09-28T17:47:19Z 2009-09-28T23:57:34Z <p>I'm creating asp.net special file manager. all file information saved to SQL Server table. My table is here</p> <pre><code>Table tFile( FileID uniqueidentifier, FileName nvarchar(50), Extension nvarchar(50)) </code></pre> <p>Upload process is: First i'm insert table row and then upload file to server. Then file renamed to FileID (GUID value). For example : 4a6327c4-0596-4949-a5f2-a639e934d534.JPG</p> <p>Inserted table row is like this</p> <p><code>4a6327c4-0596-4949-a5f2-a639e934d534 | image1 | JPG</code></p> <p>And file on the server like this</p> <p><code>www.domain.com/aa/Files/4a6327c4-0596-4949-a5f2-a639e934d534.JPG</code></p> <p>My problem is when i downloading current file, <code>4a6327c4-0596-4949-a5f2-a639e934d534.JPG</code> named file was downloaded. I need <code>image1.JPG</code> </p> <p>When any user downloading current file, how to generate current file name to normal filename like 'image1.jpg'</p> http://stackoverflow.com/questions/1730818/how-to-set-custom-attribute-that-is-only-valid-on-return-int-value-function Comment by ebattulga on How to set custom attribute that is only valid on return int value function ebattulga 2009-11-13T17:56:44Z 2009-11-13T17:56:44Z compile time error http://stackoverflow.com/questions/1675562/how-to-select-xml-node-using-near-element Comment by ebattulga on how to select xml node using near element ebattulga 2009-11-04T18:34:15Z 2009-11-04T18:34:15Z xpath for html agility http://stackoverflow.com/questions/1657680/is-there-any-property-default-value-initializer-attribute/1657689#1657689 Comment by ebattulga on is there any property default value initializer attribute? ebattulga 2009-11-01T17:11:16Z 2009-11-01T17:11:16Z My problem is my class has too many properties http://stackoverflow.com/questions/1615220/asp-net-page-location-problem/1615250#1615250 Comment by ebattulga on asp.net page location problem ebattulga 2009-10-23T18:53:00Z 2009-10-23T18:53:00Z Thank you. That's very helpful. I love stackoverflow and greet programming experts. http://stackoverflow.com/questions/1599941/is-it-possible-to-change-iis-settings-from-web-config/1599994#1599994 Comment by ebattulga on Is it possible to change IIS settings from web config ebattulga 2009-10-21T10:41:24Z 2009-10-21T10:41:24Z If host is IIS7, how can configure? http://stackoverflow.com/questions/1599941/is-it-possible-to-change-iis-settings-from-web-config Comment by ebattulga on Is it possible to change IIS settings from web config ebattulga 2009-10-21T10:39:50Z 2009-10-21T10:39:50Z I don't know. maybe IIS7 http://stackoverflow.com/questions/1584850/is-it-possible-to-get-anchor-visited-state-from-javascript/1584880#1584880 Comment by ebattulga on is it possible to get anchor visited state from javascript? ebattulga 2009-10-18T13:35:24Z 2009-10-18T13:35:24Z Thank you. This is good idea for checking any link already visited on client browser. But my problem is all state color is same.I'm trying to override anchor css style, but color shown previously. My most of goal is change anchor visited state style. http://stackoverflow.com/questions/1584850/is-it-possible-to-get-anchor-visited-state-from-javascript/1584880#1584880 Comment by ebattulga on is it possible to get anchor visited state from javascript? ebattulga 2009-10-18T13:22:48Z 2009-10-18T13:22:48Z i'm hacking some client generated html. this anchor code is not mine. http://stackoverflow.com/questions/1584850/is-it-possible-to-get-anchor-visited-state-from-javascript/1584866#1584866 Comment by ebattulga on is it possible to get anchor visited state from javascript? ebattulga 2009-10-18T13:19:25Z 2009-10-18T13:19:25Z my problem is i'm using css, link,hover state styles changed. but visited state style woudn't changed. i'm checking parent element and style, this not have anchor style. http://stackoverflow.com/questions/1579141/how-to-handle-any-javascript-load-finished-event-using-jquery/1579308#1579308 Comment by ebattulga on how to handle any javascript load finished event using jquery ebattulga 2009-10-16T17:23:43Z 2009-10-16T17:23:43Z script was loaded after all code runs. http://stackoverflow.com/questions/1573361/find-duplicate-lines-and-remove-using-regular-expression-with-replace-feature Comment by ebattulga on find duplicate lines and remove using regular expression with replace feature ebattulga 2009-10-16T08:59:05Z 2009-10-16T08:59:05Z I'm using RegexBuddy v3.0. http://stackoverflow.com/questions/1570808/get-iframe-page-title-from-javascript-using-jquery Comment by ebattulga on get iframe page title from javascript using jquery ebattulga 2009-10-15T08:15:24Z 2009-10-15T08:15:24Z domain is different http://stackoverflow.com/questions/1570618/how-to-get-attribute-from-any-selected-object-in-jquery Comment by ebattulga on how to get attribute from any selected object in jquery ebattulga 2009-10-15T06:42:23Z 2009-10-15T06:42:23Z i'm sorry. wrong writed. not 'src'. this is href http://stackoverflow.com/questions/1560721/how-to-use-blog-variable-on-javascript/1561625#1561625 Comment by ebattulga on how to use blog variable on javascript ebattulga 2009-10-13T18:05:20Z 2009-10-13T18:05:20Z Very thanks for you http://stackoverflow.com/questions/1560721/how-to-use-blog-variable-on-javascript/1561625#1561625 Comment by ebattulga on how to use blog variable on javascript ebattulga 2009-10-13T17:31:40Z 2009-10-13T17:31:40Z Thank you. That is helpful. If you know about blogger language book or syntax language (b:if ...), tell me please