User Amr ElGarhy - Stack Overflowmost recent 30 from stackoverflow.com2009-12-04T23:43:39Zhttp://stackoverflow.com/feeds/user/20126http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1839562/is-there-a-way-to-find-out-the-specs-of-the-server-the-website-is-running-on/1839582#18395821Answer by Amr ElGarhy for is there a way to find out the specs of the server the website is running on?Amr ElGarhy2009-12-03T12:24:45Z2009-12-03T12:24:45Z<p><a href="http://builtwith.com/" rel="nofollow">Builtwith</a> or <a href="http://www.quarkbase.com/" rel="nofollow">Quarkbase</a> may help in getting these info</p>
http://stackoverflow.com/questions/1836369/what-are-scriptmanager-benefits-over-direct-jquery-ajax-calls1What are scriptmanager benefits over direct jquery ajax calls?Amr ElGarhy2009-12-02T22:38:44Z2009-12-02T23:16:54Z
<p>I am a little confused about the benefits or conc using scriptmanager with ajax calls or use JQuery to direct call webmethods.</p>
<p>Can some one give me some hints about this issue? when to use which? there is any different while dealing with JSON?</p>
http://stackoverflow.com/questions/600135/whats-the-best-cms-website-starter-kit-for-my-project1Whats the best CMS/Website Starter kit for my project?Amr ElGarhy2009-03-01T17:24:14Z2009-11-26T09:27:54Z
<p>I need to build a company profile website, which will contain a gallery of images which this company designed before, and will contain the normal stuff, such as about us, contact us, menus for fast navigation, and also need to give this company a way to edit the site them selves, so which CMS/Website template you recommend for me?
-Free will be better</p>
http://stackoverflow.com/questions/1778579/javascript-help-combo-box/1778604#17786040Answer by Amr ElGarhy for Javascript help - combo boxAmr ElGarhy2009-11-22T12:40:33Z2009-11-22T12:40:33Z<pre><code>function contractall() {
if (document.getElementById) {
var inc = 0; // counter
// loop on all dropmsg in the document
while (document.getElementById("dropmsg" + inc)) {
// hide one by one
document.getElementById("dropmsg" + inc).style.display = "none"
inc++
}
}
}
function expandone() {
if (document.getElementById) {
var selectedItem = document.dropmsgform.dropmsgoption.selectedIndex; // get the selected item
contractall() // hide all in the document
// show the selected item
document.getElementById("dropmsg" + selectedItem).style.display = "block"
}
}
// add event handlers to windows load.
if (window.addEventListener) window.addEventListener("load", expandone, false)
else if (window.attachEvent) window.attachEvent("onload", expandone)
</code></pre>
http://stackoverflow.com/questions/693709/can-wordpress-install-on-iis-and-how0Can WordPress install on IIS and how?Amr ElGarhy2009-03-28T22:59:30Z2009-11-21T19:05:41Z
<p>Can wordpress install on a IIS hosting?
If yes, which is better and more simple, on IIS6 or IIS7?
And how to install it on IIS?</p>
http://stackoverflow.com/questions/545767/hide-c-windows-application-source-code0Hide c# windows application source codeAmr ElGarhy2009-02-13T12:41:19Z2009-11-20T09:19:18Z
<p>I wrote a windows application using C# .Net 2.0 and i want to do something which hide the source code, so when any one use refactor tool can't see the source code.
I used dotfuscator but it just changed the function names but not all the source code.</p>
<p>UPDATE:
I want to hide the source code, not because of hiding the key, but to hide how the code is working.</p>
<p>Thanks,</p>
http://stackoverflow.com/questions/1762857/how-do-i-dynamically-add-css-class/1762914#17629141Answer by Amr ElGarhy for How do I "dynamically" add css class?Amr ElGarhy2009-11-19T12:21:12Z2009-11-19T12:26:21Z<p>If can't work in databinding # line.</p>
<p>So you can work around this by something like this:</p>
<pre><code><%# isApproved = Convert.ToBoolean(Eval("Approved").ToString()) %>
<% if(isApproved){ %>
<div class="someItem approved">
<%}%>
</code></pre>
<p>And don't forget to declare <code>isApproved</code> as protected in the code behind.</p>
<p>Also please take a look at this question:</p>
<p><a href="http://stackoverflow.com/questions/1553881/is-it-possible-to-use-data-binding-expressions-directly-in-markup-to-show-hide-co">http://stackoverflow.com/questions/1553881/is-it-possible-to-use-data-binding-expressions-directly-in-markup-to-show-hide-co</a></p>
<p>Which may answer the most important part of your question.</p>
http://stackoverflow.com/questions/1756978/how-to-use-jquery-to-find-replace-given-text-with-a-matching-url-instead/1757047#17570470Answer by Amr ElGarhy for How to use jQuery to FIND & REPLACE given text with a matching URL insteadAmr ElGarhy2009-11-18T16:02:29Z2009-11-18T16:02:29Z<p>I think in this case no need for JQuery, Pure JavaScript language is enough.</p>
<p><a href="http://www.w3schools.com/jsref/jsref%5Freplace.asp" rel="nofollow">Replace Method</a></p>
<p><a href="http://www.w3schools.com/jsref/jsref%5Fsearch.asp" rel="nofollow">Search</a></p>
http://stackoverflow.com/questions/1750560/which-url-format-is-better-for-seo/1750590#17505903Answer by Amr ElGarhy for which url format is better for seo?Amr ElGarhy2009-11-17T17:49:22Z2009-11-17T17:49:22Z<p>Subdirectories are generally indexed quicker by the Search Engines </p>
<p>Check this nice article:
<a href="http://www.gottaquirk.com/2009/05/27/subdomains-vs-subdirectories-part-2/" rel="nofollow">http://www.gottaquirk.com/2009/05/27/subdomains-vs-subdirectories-part-2/</a></p>
<p>and this one</p>
<p><a href="http://www.bestrank.com/blog/putting-end-to-subdomains-vs-subdirectories-debate" rel="nofollow">http://www.bestrank.com/blog/putting-end-to-subdomains-vs-subdirectories-debate</a></p>
http://stackoverflow.com/questions/1745489/can-i-put-url-rewriting-http-module-in-a-folder1Can i put URL rewriting http module in a folder?Amr ElGarhy2009-11-16T23:15:25Z2009-11-17T07:58:48Z
<p>I am trying to make a generic URL rewrite methods, and i want it portable so i checked this article: <a href="http://weblogs.asp.net/scottgu/archive/2007/02/26/tip-trick-url-rewriting-with-asp-net.aspx" rel="nofollow">http://weblogs.asp.net/scottgu/archive/2007/02/26/tip-trick-url-rewriting-with-asp-net.aspx</a> which is very nice.</p>
<p>But i want to put all my classes, http modules in one folder, then i can just paste this folder in any asp.net website and edit the web.config to point to this http module, thats it, without the need to add anything in the APP_Code as this article teaching.</p>
<p>My question is is that possible? any conc or better ideas?</p>
http://stackoverflow.com/questions/729771/how-to-call-external-webservice-using-jquery-jsonp0How to call external webservice using jquery "jsonp"?Amr ElGarhy2009-04-08T12:40:19Z2009-11-13T13:49:31Z
<p>I had a previous question <a href="http://stackoverflow.com/questions/727183/can-jquery-ajax-call-external-webservice">can jquery ajax call external webservice?</a></p>
<p><br/> and some good developers answered me to use jsonp, but i don't know how to use it, i am trying to call my service using this code:<br/></p>
<pre><code>$.ajax({
type: "POST",
url: "http://localhost:1096/MySite/WebService.asmx?callback=?",
data: "{}",
contentType: "application/json; charset=utf-8",
dataType: "jsonp",
success: function(msg) {alert(msg);}
});
</code></pre>
<p><br/>
and this is my service code:<br/></p>
<pre><code>[WebMethod]
public string HelloWorld() {
return "Hello World " ;
}
</code></pre>
<p><br/></p>
<p>anyone have examples or can explain this issue for me?</p>
<p><strong>UPDATE</strong>:<br/>
I wrote the code again to be like this:<br/></p>
<pre><code>$.getJSON("http://localhost:1096/YourShoppingTest1/WebService.asmx/HelloWorld?jsonp=?",{name:"test"},
function(data){
alert(data.x);
});
</code></pre>
<p><br/> and the service like this:<br/></p>
<pre><code>[WebMethod]
public string HelloWorld(string name)
{
return "( {\"x\":10 , \"y\":100} )";
}
</code></pre>
<p><br/></p>
<p>But it always give me this error when back: "missing ; before statement
[Break on this error] ( {"x":10 , "y":100} )"
<br/></p>
<p>and never call the success function, can anyone help with that?</p>
http://stackoverflow.com/questions/1724105/javascript-vs-jquery/1724132#17241320Answer by Amr ElGarhy for Javascript vs jQuery?Amr ElGarhy2009-11-12T17:53:20Z2009-11-12T17:53:20Z<p>Yes you can but you will not be able to do complicated stuff which will use pure javascript, because jquery is not everything.</p>
<p>But with the help of the internet and seeing examples, you can do alot.</p>
http://stackoverflow.com/questions/1723811/can-i-programatically-find-the-url-of-a-web-form-based-on-the-class/1723890#17238900Answer by Amr ElGarhy for Can I programatically find the url of a web form based on the class?Amr ElGarhy2009-11-12T17:19:37Z2009-11-12T17:19:37Z<p>That means you want to know the page URL without or before opening it, i believe that this is not possible automatically as you may think.</p>
<p>You will need to construct the URL string your self, because how the page class will know where its page will open for example:</p>
<p><a href="http://localhost/Page1.aspx" rel="nofollow">http://localhost/Page1.aspx</a></p>
<p><a href="http://website/Page1.aspx" rel="nofollow">http://website/Page1.aspx</a></p>
<p>Also you can move the page with its class to another folder.</p>
<p>So you can get page URL from its class by putting a constant variable inside the class contain its URL, construct the page URL your self, or wait till the page loads and by then you can get it by another way: <code>Request.Url</code> </p>
http://stackoverflow.com/questions/1700284/delete-in-repeater/1700324#17003241Answer by Amr ElGarhy for Delete In RepeaterAmr ElGarhy2009-11-09T10:52:26Z2009-11-09T11:27:10Z<p>Put a button or any other control you like, and set for this button the command name property equal "delete" for example, put any id in the command argument property to know which row you will delete, and in the repeater ItemCommand event check for this command name then do the delete function.</p>
<p>Example:</p>
<pre><code><asp:Repeater ID="Repeater1" runat="server" OnItemCommand="Repeater1_ItemCommand">
<ItemTemplate>
<asp:LinkButton ID="LinkButton1" CommandName="Delete" OnClientClick="javascript:if(!confirm('Delete this information? this will delete permanently'))return false;" CommandArgument='<%#Eval("EntityID") %>' runat="server">
</ItemTemplate>
</asp:Repeater>
protected void Repeater1_ItemCommand(object source, RepeaterCommandEventArgs e)
{
if (e.CommandName == "Delete" && e.CommandArgument.ToString() != "")
{
// DoDelete then rebind
}
}
</code></pre>
<p>Delete Code will be something like this:</p>
<pre><code>Dim connectionString As String = ConfigurationManager.ConnectionStrings("UploadConnectionString").ConnectionString
Dim adapter As New SqlDataAdapter("DELETE FROM FileM where id=" & e.CommandArgument.ToString(), connectionString)
</code></pre>
http://stackoverflow.com/questions/1343701/single-javascript-function-for-multiple-web-pages/1343723#13437235Answer by Amr ElGarhy for Single javascript function for multiple web pagesAmr ElGarhy2009-08-27T21:03:12Z2009-11-02T15:28:26Z<p>You will need to put the function in a .js file and call from your pages, but you will need to link to the script in all your 40 pages, since you can't add master page.</p>
http://stackoverflow.com/questions/1656998/does-public-variable-scope-is-for-all-sessions-or-each-session-has-its-variable0Does public variable scope is for all sessions, or each session has its variable copy?Amr ElGarhy2009-11-01T12:03:17Z2009-11-01T12:27:03Z
<p>If i declared a variable as public in a web page, does this variable can hold the same value between different sessions, or each session has its own copy?</p>
<p>And if yes it holds between sessions, how to prevent that? is there an attribute to declare as for one session copy?</p>
<p>May be its a silly question? but i am confused about something..</p>
http://stackoverflow.com/questions/1639313/auto-generating-dal-in-an-asp-net-application/1639363#16393630Answer by Amr ElGarhy for Auto generating DAL in an ASP.NET applicationAmr ElGarhy2009-10-28T18:59:35Z2009-10-28T18:59:35Z<p>Check this list of most famous <strong><a href="http://amrelgarhy.com/blog/orm-tools-quot-net-quot/" rel="nofollow">ORM tools ".Net"</a></strong></p>
http://stackoverflow.com/questions/950167/what-points-i-should-consider-to-create-api-for-a-new-website-i-am-building3what points i should consider to create API for a new website i am building?Amr ElGarhy2009-06-04T12:18:32Z2009-10-25T17:55:43Z
<p>What points i should consider while building a website, and planing to support users with API to use?</p>
<p>I see that most of famous websites are giving developers an API to deal with, such as facebook, twitter, google, ....</p>
<p>There are any general points i should consider while building a new website to be able to support developers with an API? "just very general points regardless the website service its self"</p>
<p><strong>UPDATE</strong> all answers below helped me a lot.</p>
http://stackoverflow.com/questions/635706/how-to-scroll-to-an-element-inside-a-div2How to scroll to an element inside a div?Amr ElGarhy2009-03-11T18:12:20Z2009-10-20T05:38:46Z
<p>I have a scrolled <code>div</code> and I want to have a link when I click on it it will force this <code>div</code> to scroll to view an element inside.
I wrote its javascript like this: </p>
<pre><code>document.getElementById(chr).scrollIntoView(true);
</code></pre>
<p>but this scrolls all the page while scrolling the <code>div</code> itsself.
How to fix that?</p>
<p>I want to say it like that</p>
<pre><code>MyContainerDiv.getElementById(chr).scrollIntoView(true);
</code></pre>
http://stackoverflow.com/questions/878960/why-put-search-input-inside-a-form-tag0Why put search input inside a form tag?Amr ElGarhy2009-05-18T17:47:33Z2009-10-19T15:13:17Z
<p>I found that SO put the search input inside a form tag, and i found some other websites do the same, such as google, they put the search input and search button inside this:</p>
<pre><code><form action="/search" method="get" name="gs" id="tsf">
</code></pre>
<p>I want to just know the benefits of doing so, because it seems common and I miss it.</p>
http://stackoverflow.com/questions/574463/running-ie6-ie7-and-ie8-on-the-same-machine/1584802#15848020Answer by Amr ElGarhy for Running IE6, IE7, and IE8 on the same machineAmr ElGarhy2009-10-18T12:45:32Z2009-10-18T12:45:32Z<p>I wrote an article about how to test on many browsers without having these browsers installed:
<a href="http://amrelgarhy.com/blog/10-ways-for-testing-website-browser-compatibility/" rel="nofollow">10+ Ways for testing website browser compatibility</a></p>
http://stackoverflow.com/questions/315470/why-do-people-ask-for-computer-it-help-if-you-tell-them-youre-a-programmer/1581091#15810910Answer by Amr ElGarhy for Why do people ask for computer (IT) help if you tell them you're a programmer?Amr ElGarhy2009-10-17T00:51:59Z2009-10-17T00:51:59Z<p>Some i met don't know whats a programmer, and some knows but don't know his role,</p>
<p>after some talking with them they think you are a magician, can do anything related to computer, starting from hardware, selling, buying, till high level programming issues.</p>
<p>To solve this i try to explain in more details whats a programmer is, but in many times, they look at me as a not good programmer :) after this explanation.</p>
http://stackoverflow.com/questions/1151821/advantages-and-disadvantages-of-using-ajax-update-panels-in-asp-net-application/1576074#15760741Answer by Amr ElGarhy for Advantages and disadvantages of using Ajax update panels in ASP.NET applicationAmr ElGarhy2009-10-16T01:54:27Z2009-10-16T01:54:27Z<p>I agree that update panel is evil and <a href="http://encosia.com/2007/07/11/why-aspnet-ajax-updatepanels-are-dangerous/" rel="nofollow">dangerous</a> but in some cases you may want to use it, instead of other options.</p>
<ul>
<li>The page has few asp.net controls, and less viewstate.</li>
<li>The page html is not too big.</li>
<li>The time is limited to finish the task.</li>
<li>The performance is not the first concern.</li>
<li>Want to keep the sate of controls with postbacks.</li>
<li>Have a lot of server side events you want to fire.</li>
</ul>
http://stackoverflow.com/questions/1575773/jquery-html-issue-and-internet-explorer/1575797#15757970Answer by Amr ElGarhy for jQuery.html issue and internet explorerAmr ElGarhy2009-10-16T00:12:15Z2009-10-16T00:12:15Z<p>If you wrote:</p>
<pre><code>jQuery("#data-grid").html('<b>test</b>');
jQuery("#data-grid").html('<b>test2</b>');
</code></pre>
<p>Anywhere the output should be:</p>
<p><strong>test2</strong> in the data-grid element.</p>
<p>because <a href="http://docs.jquery.com/Attributes/html" rel="nofollow">.html() function</a> is not appending values.</p>
http://stackoverflow.com/questions/1567012/how-to-enable-session-on-just-a-page-level-not-on-all-the-website0How to enable session on just a page level not on all the website?Amr ElGarhy2009-10-14T15:18:24Z2009-10-14T15:21:04Z
<p>I am developing a website to extend community server, and i found that community server disabled the session in the web.config <code><sessionState mode="Off" /></code>.<br/>
Now i have a webpage that i created and must use session inside it, but i don't want to edit the web.config sessionState value,
<br/>
Can i enable session state on just the page level? or there is another idea to do that?</p>
http://stackoverflow.com/questions/1554026/show-popup-on-mouseover-with-link/1554045#15540450Answer by Amr ElGarhy for Show popup on mouseover with linkAmr ElGarhy2009-10-12T11:32:19Z2009-10-12T11:32:19Z<p>Check this article:
<a href="http://yensdesign.com/2008/09/how-to-create-a-stunning-and-smooth-popup-using-jquery/" rel="nofollow">How to create a stunning and smooth popup using jQuery</a></p>
http://stackoverflow.com/questions/1553881/is-it-possible-to-use-data-binding-expressions-directly-in-markup-to-show-hide-co/1553892#15538920Answer by Amr ElGarhy for Is it possible to use Data-Binding Expressions directly in markup to show/hide content?Amr ElGarhy2009-10-12T10:52:14Z2009-10-12T11:30:13Z<p>Its not possible to use # eval in if statement,</p>
<p>You have some options to solve that:</p>
<ul>
<li>You can put the condition of the if in a previous line then check on this variable in the if</li>
</ul>
<p>example:
in code behind:</p>
<pre><code>protected bool isDisabled;
</code></pre>
<p>in aspx:</p>
<pre><code><%# isDisabled=(bool)Eval("IsDisabled") %>
<% if(isDisabled) %>
</code></pre>
<ul>
<li>Other way is to call a code behind method which return bool and check on it in the if.</li>
</ul>
http://stackoverflow.com/questions/1501649/entity-framework-4-blog-or-information-page/1501699#15016994Answer by Amr ElGarhy for Entity framework 4 blog or information pageAmr ElGarhy2009-10-01T03:06:01Z2009-10-10T19:25:32Z<p><a href="http://blogs.msdn.com/efdesign/" rel="nofollow">http://blogs.msdn.com/efdesign/</a> Entity Framework Design</p>
<p><a href="http://blogs.msdn.com/adonet/default.aspx" rel="nofollow">http://blogs.msdn.com/adonet/default.aspx</a> ADO.Net Team blog</p>
<p><a href="http://misfitgeek.com/blog/resources-for-learning-the-ado-net-entity-framework/" rel="nofollow">http://misfitgeek.com/blog/resources-for-learning-the-ado-net-entity-framework/</a></p>
<p><a href="http://msdn.microsoft.com/en-us/data/aa937723.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/data/aa937723.aspx</a></p>
<p><a href="http://geekswithblogs.net/iupdateable/archive/2009/09/23/entity-framework-4.0-resources-ndash-documentation-links-best-blog-posts.aspx" rel="nofollow">Entity Framework 4.0 Resources – documentation links, best blog posts and more</a></p>
http://stackoverflow.com/questions/607846/is-my-site-down-not-working-or-has-an-error1Is My site down, not working or has an error?Amr ElGarhy2009-03-03T19:48:13Z2009-10-09T18:55:21Z
<p>I want to create a small windows application will go automatically every time period to my site and check if its running fine, if it found it down, not working or have an error "Examples: 404, network error, connection to db failed" it will show a message on my screen.</p>
<p>How can i know that there is an error there programmaticly using any .NET language?</p>
http://stackoverflow.com/questions/651713/do-you-know-any-tools-to-remove-badware-malware-from-my-website-which-google-blo0Do you know any tools to remove badware, malware from my website which google blocks?Amr ElGarhy2009-03-16T18:59:38Z2009-10-08T07:23:04Z
<p>I have a website which google blocked because it had badware i removed the viruses from the server and its completely clean now, the problem that this virus changed in the html, js asp files in the site and added hidden iframes and strange scripts, i removed all what i found in the diles, but the website is toooo big, so any one have any tool which i can use to remove all the effects of this badware?</p>
<p>google gave me this site as a reference to remove the badware from my site
<a href="http://www.stopbadware.org/home/security" rel="nofollow">http://www.stopbadware.org/home/security</a></p>
<p>Thanks,</p>
http://stackoverflow.com/questions/1836369/what-are-scriptmanager-benefits-over-direct-jquery-ajax-calls/1836576#1836576Comment by Amr ElGarhy on What are scriptmanager benefits over direct jquery ajax calls?Amr ElGarhy2009-12-03T09:32:23Z2009-12-03T09:32:23Z@Crescent Fresh: Yes i got that, thank you very much.http://stackoverflow.com/questions/1836369/what-are-scriptmanager-benefits-over-direct-jquery-ajax-calls/1836576#1836576Comment by Amr ElGarhy on What are scriptmanager benefits over direct jquery ajax calls?Amr ElGarhy2009-12-02T23:35:01Z2009-12-02T23:35:01Zi was not comparing all the ASP.NET AJAX framework with jquery, but your answer was helpful, thankshttp://stackoverflow.com/questions/1829570/server-side-method-not-being-calledComment by Amr ElGarhy on Server-side method not being calledAmr ElGarhy2009-12-01T23:12:35Z2009-12-01T23:12:35Zyou can try to put a break point on the server side method to make sure that it isn't called, also can you give us some more html code around this anchor and the server side method?http://stackoverflow.com/questions/1762857/how-do-i-dynamically-add-css-class/1762868#1762868Comment by Amr ElGarhy on How do I "dynamically" add css class?Amr ElGarhy2009-11-19T14:05:47Z2009-11-19T14:05:47Zto use eval you must put #, your example will not workhttp://stackoverflow.com/questions/1762857/how-do-i-dynamically-add-css-class/1762872#1762872Comment by Amr ElGarhy on How do I "dynamically" add css class?Amr ElGarhy2009-11-19T13:15:47Z2009-11-19T13:15:47Zto use eval you must put #, your example will not workhttp://stackoverflow.com/questions/774587/multi-select-dropdown-list-in-asp-net/1114178#1114178Comment by Amr ElGarhy on Multi-select dropdown list in ASP.NETAmr ElGarhy2009-11-19T11:48:45Z2009-11-19T11:48:45Zexactly what i was looking for, thank you very muchhttp://stackoverflow.com/questions/1700284/delete-in-repeater/1700324#1700324Comment by Amr ElGarhy on Delete In RepeaterAmr ElGarhy2009-11-09T11:44:29Z2009-11-09T11:44:29ZI edited my answer to show you how to deletehttp://stackoverflow.com/questions/1700284/delete-in-repeater/1700324#1700324Comment by Amr ElGarhy on Delete In RepeaterAmr ElGarhy2009-11-09T11:26:56Z2009-11-09T11:26:56Zyou will not need the item_DataBound in your casehttp://stackoverflow.com/questions/1700284/delete-in-repeater/1700324#1700324Comment by Amr ElGarhy on Delete In RepeaterAmr ElGarhy2009-11-09T10:59:57Z2009-11-09T10:59:57Zyou are using pure ADO.Net? Connected or disconnected? or using an ORM?http://stackoverflow.com/questions/1656998/does-public-variable-scope-is-for-all-sessions-or-each-session-has-its-variable/1657040#1657040Comment by Amr ElGarhy on Does public variable scope is for all sessions, or each session has its variable copy?Amr ElGarhy2009-11-01T12:34:03Z2009-11-01T12:34:03ZI don't want to keep it, for example, if i declared the sqlconnection as static, i want to know if all will access the same instance or not and when it will die?http://stackoverflow.com/questions/1656998/does-public-variable-scope-is-for-all-sessions-or-each-session-has-its-variable/1657040#1657040Comment by Amr ElGarhy on Does public variable scope is for all sessions, or each session has its variable copy?Amr ElGarhy2009-11-01T12:29:21Z2009-11-01T12:29:21ZI don't want in the page its self, but may be in a class which the page callhttp://stackoverflow.com/questions/1656998/does-public-variable-scope-is-for-all-sessions-or-each-session-has-its-variable/1657040#1657040Comment by Amr ElGarhy on Does public variable scope is for all sessions, or each session has its variable copy?Amr ElGarhy2009-11-01T12:26:05Z2009-11-01T12:26:05Zso if its static it will keep holding the same value between different sessions?http://stackoverflow.com/questions/1639313/auto-generating-dal-in-an-asp-net-application/1639363#1639363Comment by Amr ElGarhy on Auto generating DAL in an ASP.NET applicationAmr ElGarhy2009-10-28T23:27:35Z2009-10-28T23:27:35ZI recommend, linqtosql, llbl, subsonic.http://stackoverflow.com/questions/1639313/auto-generating-dal-in-an-asp-net-application/1639330#1639330Comment by Amr ElGarhy on Auto generating DAL in an ASP.NET applicationAmr ElGarhy2009-10-28T19:08:24Z2009-10-28T19:08:24Z@ Michael <a href="http://damieng.com/blog/2009/06/01/linq-to-sql-changes-in-net-40" rel="nofollow">damieng.com/blog/2009/…</a>http://stackoverflow.com/questions/950167/what-points-i-should-consider-to-create-api-for-a-new-website-i-am-building/1621542#1621542Comment by Amr ElGarhy on what points i should consider to create API for a new website i am building?Amr ElGarhy2009-10-25T18:37:32Z2009-10-25T18:37:32Zyou can post that as a new question not as an answer