asp net jquery popup dialog form in asp:formview
- by qwebek
Hi, i have following problem, i am using a popup jquery dialog with asp:formview .
the purpose of this popup is for user to enter a hyperlink which is placed then in textbox control in formview
the popup dialog div is located outside a formview just after body tag
    <body style="background-color: #FFFFFF; font-family:Lucida Console;">
        <div id="dialog-form" title="sdfdfsdf" style="font-size:14px; ">
            <form>
            <fieldset>
                <label for="link">sdfdf</label>
                <input type="text" name="sdfsdf" id="link" size="32" />
            </fieldset>
            </form>
        </div>
    <form id="form1" runat="server" style="margin-top:50px;" >
    <div>
        <asp:FormView ID="FormView1"
.......
  <InsertItemTemplate>
   ...
      <sometextbox ...../>
      <button id="create-user" class="ui-state-default ui-corner-all">Create link</button>
   ...
  </InsertItemTemplate>
After clicking a button a popup window is shown BUT the page starts to refresh immidiately
((( and ofc popup s hidden after that
if relocate the button outside the formview  - the page is not refreshed, but i need it in formview..
any ideas what to do?