Rearranging textboxes

  • Thread starter Thread starter rsine
  • Start date Start date
R

rsine

I saw a site done in java that allowed the user to
rearrange textboxes on a webpage by clicking on the
textbox and dragging it to the new location on the page.
I would like to duplicate this using ASP.Net. Is this
possible and if so, how do I go about doing it? I am
really new to ASP.Net and would appreciate any guidance
on this.
 
What you say was done using a Java applet. Since applets have to download
to the client and run on the client, ASP.NET can't duplicate this
functionality. You need a client-side solution, which essentially means
DHTML, Java applet or ActiveX control.
 
Back
Top