Thank you for the fast reply. I found a good solution for this.
All i had to do is just play with post-commit script.
You dig into the repository folders hook directory and all you need is there.
What i have done is just update the server's directory with "svn update" command. And you need to write the script in post-commit file.
Eventually, any commit will update the server's file and I can see the change directly from url.
On windows i have created the post-commit.bat file and following script is placed in it.
@ECHO ON
set repo=%1
set rev=%2
set log=C:\subversion\logs\post-commit_log.log
set err=C:\subversion\logs\post-commit_err-log.txt
set svn=svn
set svnpath=C:\subversion\bin
set working=C:\wamp\www\myproject
( echo ========================================================================
echo Start commit %repo% r%rev%
date /t
time /t
) >> %log%
set cmd=%svn% update --username uSeRnAmE --password StRoNgPaSsWoRd %working%
(start "start-title" /D"%svnpath%" /NORMAL /B %cmd% >> %log%)
Hopefully anyone can find it useful.