Rai Yawar Ijaz

blog

  Home  |   Contact  |   Syndication    |   Login
  6 Posts | 3 Stories | 16 Comments | 34 Trackbacks

News

Article Categories

Archives

Post Categories

November 2004 Entries

a feature new to ASP.NET 2.0, including how to use both cascading style sheets and images with themes, and how you can dynamically load themes at run time

there was seminar on 4th of november on CMS . I will inshallah put the slides here soon .

var mydata=document.SignUP.txtZ... the name of the form is “SignUp” and name of the text field on which i want to enforce numerical characters is “txtZip“ for(var i=0;i < mydata.length;i++) { var mydigit = mydata.charAt(i); if(mydigit < "0" || mydigit > "9") { alert('Please Enter a Numeric value'); document.SignUP.txtZip.focu... return false; } }...

I just have notices that you can't access hyperlink as usually you access other serverside controls. Suppose there is a Server side TextBox named “txtBox” you will Access it in javaScript as [document_name].[form_name]... document.form.txtBox.value here is assume that the name of my Server Side Text box is “txtBox“ and the name of my Form is “form“ okie this is the normal procedure . you can't Access Server Side in the same fashion. As it is rendered...

function validateEmail(strEmail) { var at="@" var dot="." var lat=strEmail.indexOf(at) var lstr=strEmail.length var ldot=strEmail.indexOf(dot) if (strEmail.indexOf(at)==-1) { alert("Invalid E-mail ID") return false } if (strEmail.indexOf(at)==-1 || strEmail.indexOf(at)==0 || strEmail.indexOf(at)==lstr) { alert("Invalid E-mail ID") return false } if (strEmail.indexOf(dot)==-1 || str.indexOf(dot)==0 || strEmail.indexOf(dot)==lstr) { alert("Invalid E-mail ID") return false } if (strEmail.indexOf(at,(lat+1...

Mobile internet extends traditional Internet to wireless devices such as cellular phones and Personal Digital Assistants (PDA's). It brings information and services to the user's fingertips whenever and where ever they need it. Wireless internet is not just an extension of the internet into the mobile environment, it is an integration of the internet and telecommunication technologies into a single system. GPRS (General Packet Radio Service) is a new technology that has been added to traditional...