<?xml version="1.0" encoding="UTF-8"?><!-- generator="WordPress/2.8.4" -->
<rss version="0.92">
<channel>
	<title>Avance Zone</title>
	<link>http://blogs.avancezone.com</link>
	<description>Technical Experts Zone Blogs</description>
	<lastBuildDate>Wed, 20 Jan 2010 15:44:58 +0000</lastBuildDate>
	<docs>http://backend.userland.com/rss092</docs>
	<language>en</language>
	
	<item>
		<title>Find elements in form GetElementById Javascript</title>
		<description>Many time we find javascript error that the element is found or not initialized in the form.



for (i=1;i </description>
		<link>http://blogs.avancezone.com/web-development/java-scripts/find-elements-by-id-form/</link>
			</item>
	<item>
		<title>Web Hosting Expert</title>
		<description>I Have started a Web Hoting Firm 



I will update you here soon. </description>
		<link>http://blogs.avancezone.com/web-hosting/web-hosting-expert/</link>
			</item>
	<item>
		<title>Get Asp.net Dynamic ID In Client Side For JavaScript</title>
		<description>Get Asp.net ID Dynamic Server Id in Client Side For JavaScript 
&#60;script type="text/javascript" language="javascript"&#62;

    function search()

    {

    if (document.getElementById("&#60;%=txt_search.ClientID %&#62;").value=="")

    {

        alert("Please Enter Keyword");

    }    

    }

&#60;/script&#62;

&#60;asp:ImageButton ID="btn_search" OnClientClick="return search()" runat="server" ToolTip="Search the website"/&#62;

Here i Shown How i Fetched the Dynamic Image Button Id in the server side ...</description>
		<link>http://blogs.avancezone.com/technical/microsoft-dot-net/get-aspnet-dynamic-id-in-client-side-for-javascript/</link>
			</item>
	<item>
		<title>javascript right click &#8211; disable right click To avoid view source or steal Images</title>
		<description>Here is the simple way to make the visitor not to steal your webpage image or source, You can use this for Any web designs - html/php/asp.net 
Insert this html with your source code
Way 1

&#60;img src="PicFileName.gif" height="24" width="100" onContextMenu="return false;"&#62;
&#60;img src="PicFileName.gif" height="24" width="100" onContextMenu="alert('Avance Zone Alert!');return false;"&#62;
&#60;img src="PicFileName.gif" height="24" width="100" onContextMenu="alert('Visitor! ...</description>
		<link>http://blogs.avancezone.com/web-development/java-scripts/disable-right-click-on-images/</link>
			</item>
	<item>
		<title>javascript page redirect</title>
		<description>You can add this Meta tag :

&#60;meta http-equiv="Refresh" content="8;URL=http:// www.example.com/somepage.html"&#62;

Calling A javaScript functionwith Time and Delay :


&#60;body onload="timer=setTimeout('callme()',100)"&#62;
&#60;script language="JavaScript"&#62;
&#60;!--
var time = null
function callme() {
window.location = 'http://www.avancezone.com'
}
//--&#62;
&#60;/script&#62;

Insert The Body tag and the function CALLME will be call in 100ms and your page will be redirected to other .
To redirect the page ...</description>
		<link>http://blogs.avancezone.com/web-development/java-scripts/url-redirect/</link>
			</item>
	<item>
		<title>ASP.Net tablecell add image</title>
		<description>Here are the steps to add a image dynamically to a table cell in asp.net
tc1 = New TableCell
'tc1.Text = dr1.Item(6)
If (dr1.Item(6) = 2) Then
tc1.Text = "&#60;img src=images/image1.bmp &#62;"
End If
If (dr1.Item(6) = 1) Then
tc1.Text = "&#60;img src=images/image2.bmp &#62;"
End If
If (dr1.Item(6) = 0) Then
tc1.Text = "&#60;img src=images/image3.bmp &#62;"
End If

Here "tc1" is the ...</description>
		<link>http://blogs.avancezone.com/technical/microsoft-dot-net/aspnet-tablecell-add-image/</link>
			</item>
	<item>
		<title>Avoid Or Donot Allow user To Enter Space &#124; JavaScript Exprestion</title>
		<description>Avoid Or Donot Allow user To Enter Space &#124; JavaScript Exprestion
Just put range 1 to 9 in exp if you want to allow number also
&#60;form onsubmit="return formValidator()" method="POST" action="arv.php"&#62;
&#60;script type='text/javascript'&#62;
function formValidator(){
  var name = document.getElementById('x1');
       if(Validator(name, "dont put space")){
  }
  return false;
  }

function Validator(elem, helperMsg){
 var alphaExp = /^[a-zA-Z]+$/;
 if(elem.value.match(alphaExp)){
  return true;
 }else{
  alert(helperMsg);
  return false;
 }
}
&#60;/script&#62;
        &#60;input name="name" value="" ...</description>
		<link>http://blogs.avancezone.com/web-development/java-scripts/avoid-or-donot-allow-user-to-enter-space-javascript-exprestion/</link>
			</item>
	<item>
		<title>Asp.Net Request rediect from current url</title>
		<description>Use The below sring to get the current url and redirect from there with a query string
Request.Url.ToString will give the current url as sting
Response.Redirect(Request.Url.ToString + "&#38;page=newpage")
  </description>
		<link>http://blogs.avancezone.com/technical/microsoft-dot-net/aspnet-request-rediect-from-current-url/</link>
			</item>
	<item>
		<title>JavaScript Onclick Status Message</title>
		<description>&#60;script language="javascript"&#62;
  function scroll()

  {
   var txt=" Loading your page...";
   var len=txt.length;
   var width=100;
   var pos=0;
   pos++;
   var str="";
   if(pos==len) pos=1-width;
    if(pos&#60;0){
     for(var i=1;i&#60;=Math.abs(pos);i++) str +=" ";
      str += txt.substring(0,width-i+1);
    }else
     str = txt.substring(pos,pos+width);
   window.status=str;
   setTimeout("scroll()",150);
  }

&#60;/script&#62;
&#60;a onClick="scroll();return true;" href="#"&#62;hello&#60;/a&#62; </description>
		<link>http://blogs.avancezone.com/web-development/java-scripts/javascript-loading-please-wait/</link>
			</item>
	<item>
		<title>WebPage or WebSite Simple redirection Script</title>
		<description>THe below html can be userd any web language and it just redirect you to the webpage specified.
&#60;html&#62;
&#60;script&#62;
location = "http://avancezone.com";
&#60;/script&#62;
&#60;/html&#62;
The above script will redirect yoour page to avancezone.com...
Chage your page url and Enjoy the cute working script </description>
		<link>http://blogs.avancezone.com/technical/scripts/webpage-or-website-simple-redirection-script/</link>
			</item>
</channel>
</rss>
