2 small questions

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

2 small questions:

1)In steps, how can we deploy a website locally (without publishing it on
the internet) using Copy Website dialog box ?

2) How can we select an area (say a rectangle) from an image on a webpage
and then store the selection coordinates X & Y in a database ?

Thank you so much in advance !
 
1)

Open the tool
Click Connect
On the dialog that comes up select "Local IIS"
Click the Create New Virtual Folder button
Create the vdir you want to point to
Synchronize as usual

2)

You have to put a handler at mouseDown, mouseUp ,mouseMove events in
your img control. When a user clicks mouseDown you keep a flag until
you recieve a mouseup. In the middle, you can handle the movement of
the pointer with mouseMove. Obviously you 'll get two points (meaning 2
x and 2 y) where you store them in a hidden field which you can
retrieve from the Page_Load event in your page.

Regards,
Tasos
 
thank you for your reply ...
but i couldn't get the second answer ! is their any other easier solution !?
 
Unfortunately no ...
You will have to do this "manually".

Do you need more information regarding the second question ?
 
Back
Top