User ebattulga - Stack Overflowmost recent 30 from stackoverflow.com2009-11-30T09:49:27Zhttp://stackoverflow.com/feeds/user/60200http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/641646/how-can-i-find-out-which-programming-language-was-used-to-write-any-web-site2How can I find out which programming language was used to write any web site?ebattulga2009-03-13T06:25:00Z2009-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-feature2find duplicate lines and remove using regular expression with replace featureebattulga2009-10-15T16:05:17Z2009-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 <-must remove
33
44
44 <-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-net0how to locate theme folder on the asp.net?ebattulga2009-03-25T03:37:45Z2009-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-function0How to set custom attribute that is only valid on return int value functionebattulga2009-11-13T17:42:00Z2009-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#17298670Answer by ebattulga for Why might dropdownlist.SelectedIndex = value fail?ebattulga2009-11-13T15:19:59Z2009-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#17143680Answer by ebattulga for Converting a String to a DateTime variable?ebattulga2009-11-11T10:38:24Z2009-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-metho0Is it possible to set Obsolete attribute to existing method using extension methodebattulga2009-11-08T06:19:10Z2009-11-08T06:27:24Z
<pre><code>My Team use ---> aa.GetItem() -->> 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 ---> ┒ aa.GetItem() ┌ -->> new result
│ │
└--> aa.NewGetItem() -->┘
</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-element0how to select xml node using near elementebattulga2009-11-04T17:54:48Z2009-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><table>
<tr style="color:#ff00ff">
<td></td>
</tr>
<tr>
<td>destination</td>
</tr>
<tr>
<td></td>
</tr>
<tr>
<td>not destination</td>
</tr>
</table>
</code></pre>
http://stackoverflow.com/questions/1657680/is-there-any-property-default-value-initializer-attribute2is there any property default value initializer attribute?ebattulga2009-11-01T17:05:36Z2009-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-image0google reader json imageebattulga2009-10-31T19:02:11Z2009-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-net1is it possible to extend class attribute in .net?ebattulga2009-10-31T10:08:22Z2009-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-net0how to handle control from template at runtime in asp.netebattulga2009-07-27T03:08:32Z2009-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-question0blogger layout syntax questionebattulga2009-10-25T16:53:41Z2009-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><b:if cond='a==b'>
<b:else/>
</b:if>
</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-shown0urlrewriter problem: Query string is duplicated shown?ebattulga2009-10-04T10:58:10Z2009-10-24T10:00:02Z
<p>I'm using urlRewritingNet. My web.config is here>></p>
<pre><code><add name="HOME" virtualUrl="^~/(.*)/Default.aspx" rewriteUrlParameter="ExcludeFromClientQueryString" destinationUrl="~/Default.aspx?PageTitle=$1" ignoreCase="true"/>
</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-problem2asp.net page location problemebattulga2009-10-23T18:40:05Z2009-10-23T18:45:54Z
<p>I'm creating usercontrol. This control use javascript <br/> <code><script src='js/my.js' type='text/javascript'></script> </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><script src='../js/my.js' type='text/javascript'></script> </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-config0Is it possible to change IIS settings from web configebattulga2009-10-21T10:25:52Z2009-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-window0how to insert unicode text to SQL Server from query windowebattulga2009-08-29T09:35:03Z2009-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-javascript2is it possible to get anchor visited state from javascript?ebattulga2009-10-18T13:07:46Z2009-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-jquery0how to handle any javascript load finished event using jqueryebattulga2009-10-16T16:49:13Z2009-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> <script src="http://l.yimg.com/a/i/us/pps/listbadge_1.1.js">
{"pipe_id":"24f8f6a880eb3be0711d541","_btype":"list","width":"100%","hideHeader":true}
</script>
</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-jquery0all ajax ready event on jqueryebattulga2009-10-16T18:03:10Z2009-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-selector3jquery attribute selector problem: Dynamic attribute selectorebattulga2009-10-16T14:04:02Z2009-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-jquery0get iframe page title from javascript using jqueryebattulga2009-10-15T07:30:18Z2009-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-jquery0how to get attribute from any selected object in jqueryebattulga2009-10-15T06:31:05Z2009-10-15T06:40:39Z
<p>for example</p>
<pre><code><a href="http://stackoverflow.com" class="selected">stackoverflow</a>
</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-language0I want to know about blogger template languageebattulga2009-10-13T17:48:56Z2009-10-13T17:54:45Z
<p>i'm looking some syntax. </p>
<pre><code><b:includable id='main'>
<b:loop values='data:posts' var='post'>
</b:loop>
</b:includable>
</b:widget>
</b:section>
<data:post.id/>
<b:if cond='data:post.dateHeader'>
</b:if>
</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-javascript0how to use blog variable on javascriptebattulga2009-10-13T14:49:34Z2009-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-jquery0how to change css style from jqueryebattulga2009-10-13T10:21:00Z2009-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><div id='mybox'>
...
</div>
<script type='text/javascript'>
$(document).ready(function(){
$("#mybox").css("display","visible");
})
</script>
</code></pre>
<p>mybox don't show. How to show mybox ?</p>
http://stackoverflow.com/questions/1516251/how-to-fix-request-querystring-before-pageload0how to fix request.querystring before pageloadebattulga2009-10-04T12:10:21Z2009-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&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-challange0URLRewriting challangeebattulga2009-09-29T17:44:40Z2009-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&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-session1how to save enum value to sessionebattulga2009-09-29T08:55:20Z2009-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-name1How to generate download file name?ebattulga2009-09-28T17:47:19Z2009-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-functionComment by ebattulga on How to set custom attribute that is only valid on return int value functionebattulga2009-11-13T17:56:44Z2009-11-13T17:56:44Zcompile time errorhttp://stackoverflow.com/questions/1675562/how-to-select-xml-node-using-near-elementComment by ebattulga on how to select xml node using near elementebattulga2009-11-04T18:34:15Z2009-11-04T18:34:15Z xpath for html agilityhttp://stackoverflow.com/questions/1657680/is-there-any-property-default-value-initializer-attribute/1657689#1657689Comment by ebattulga on is there any property default value initializer attribute?ebattulga2009-11-01T17:11:16Z2009-11-01T17:11:16ZMy problem is my class has too many properties http://stackoverflow.com/questions/1615220/asp-net-page-location-problem/1615250#1615250Comment by ebattulga on asp.net page location problemebattulga2009-10-23T18:53:00Z2009-10-23T18:53:00ZThank 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#1599994Comment by ebattulga on Is it possible to change IIS settings from web configebattulga2009-10-21T10:41:24Z2009-10-21T10:41:24ZIf host is IIS7, how can configure?http://stackoverflow.com/questions/1599941/is-it-possible-to-change-iis-settings-from-web-configComment by ebattulga on Is it possible to change IIS settings from web configebattulga2009-10-21T10:39:50Z2009-10-21T10:39:50ZI don't know. maybe IIS7http://stackoverflow.com/questions/1584850/is-it-possible-to-get-anchor-visited-state-from-javascript/1584880#1584880Comment by ebattulga on is it possible to get anchor visited state from javascript?ebattulga2009-10-18T13:35:24Z2009-10-18T13:35:24ZThank 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#1584880Comment by ebattulga on is it possible to get anchor visited state from javascript?ebattulga2009-10-18T13:22:48Z2009-10-18T13:22:48Zi'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#1584866Comment by ebattulga on is it possible to get anchor visited state from javascript?ebattulga2009-10-18T13:19:25Z2009-10-18T13:19:25Zmy 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#1579308Comment by ebattulga on how to handle any javascript load finished event using jqueryebattulga2009-10-16T17:23:43Z2009-10-16T17:23:43Zscript was loaded after all code runs.http://stackoverflow.com/questions/1573361/find-duplicate-lines-and-remove-using-regular-expression-with-replace-featureComment by ebattulga on find duplicate lines and remove using regular expression with replace featureebattulga2009-10-16T08:59:05Z2009-10-16T08:59:05ZI'm using RegexBuddy v3.0. http://stackoverflow.com/questions/1570808/get-iframe-page-title-from-javascript-using-jqueryComment by ebattulga on get iframe page title from javascript using jqueryebattulga2009-10-15T08:15:24Z2009-10-15T08:15:24Zdomain is differenthttp://stackoverflow.com/questions/1570618/how-to-get-attribute-from-any-selected-object-in-jqueryComment by ebattulga on how to get attribute from any selected object in jqueryebattulga2009-10-15T06:42:23Z2009-10-15T06:42:23Zi'm sorry. wrong writed. not 'src'. this is hrefhttp://stackoverflow.com/questions/1560721/how-to-use-blog-variable-on-javascript/1561625#1561625Comment by ebattulga on how to use blog variable on javascriptebattulga2009-10-13T18:05:20Z2009-10-13T18:05:20ZVery thanks for youhttp://stackoverflow.com/questions/1560721/how-to-use-blog-variable-on-javascript/1561625#1561625Comment by ebattulga on how to use blog variable on javascriptebattulga2009-10-13T17:31:40Z2009-10-13T17:31:40ZThank you. That is helpful. If you know about blogger language book or syntax language (b:if ...), tell me please