Hi
below is my code

i am taking one fileupload control i.e.,

and my javascript code is:
function Showpath(e) {
         var file;
         file = e;
         PageMethods.SaveImage("how to pass fileupload control here");        
         }

in my .vb page i write one function i.e.,
_
    Public Shared Function SaveImage(ByVal fUpload As fileupload) As String

    Return ""
    End Function

i want to pass the fileupload1 control in this method "
PageMethods.SaveImage".. 
how can i do it? 

Thanks
K.Ajay