hi to all,
i got solutions to my problems.
first problem: appplication is working locally but not working on web.
solution : permissions problem.my folder is not enough permissions like write,read & execute.to change ur folder permissions plz read give article and follow that.
http://support.microsoft.com/kb/271071/
second problem: i can view images locally but not on web.
solution: here i given local path so i didn't able to view my images.
before changing my code is
Public Function FormatURL(strArgument)as String
Dim imagePath As String = server.MapPath("/sbp/Images")
Return(imagePath & "/" & strArgument)
End Function
-----------------------------------------------------
after chaning,
Public Function FormatURL(strArgument)as String
Dim imagePath As String = ("http://xyz.org.in/abc/Images")
Return(imagePath & "/" & strArgument)
End Function
finally ask ur web administrator that to give server side permissions after uploading ur folder.
i hope above information wil help u.
thank u to all
shanwaj