ASP.NET AJAX Animation work fine in Localhost but not work in ip host -


if run on machine using localhost:56993/website7/default.aspx works fine

if run using 192.168.1.3/website7/default.aspx address page opens when click click on textbox no fadein happens:

<%@ page language="vb" autoeventwireup="false" codefile="default.aspx.vb" inherits="_default" %> <%@ register assembly="system.web.extensions, version=3.5.0.0, culture=neutral, publickeytoken=31bf3856ad364e35" namespace="system.web.ui" tagprefix="asp" %> <%@ register assembly="ajaxcontroltoolkit" namespace="ajaxcontroltoolkit" tagprefix="asp" %>  <!doctype html public "-//w3c//dtd xhtml 1.0 transitional//en" "http://www.w3.org/tr/xhtml1/dtd/xhtml1-transitional.dtd">  <html xmlns="http://www.w3.org/1999/xhtml"> <head runat="server">     <title>untitled page</title>   </head> <body>     <form id="form1" runat="server">     <div>            <asp:toolkitscriptmanager id="toolkitscriptmanager1" runat="server">         </asp:toolkitscriptmanager>         <br />         <asp:button id="button1" runat="server" text="button" />         <asp:animationextender id="button1_animationextender" runat="server"              targetcontrolid="textbox1"  >                <animations>     <onclick>     <sequence>     <styleaction attribute="display" value="block" animationtarget="panel1" />     <parallel duration="1" animationtarget="panel1" fps="20">      <fadein />      </parallel>      </sequence>     </onclick>   </animations>          </asp:animationextender>          <asp:panel id="panel1" runat="server"                style="position:absolute; top: 180px; left: 89px; height: 148px; width: 151px; ">             <asp:calendar id="calendar1" runat="server" backcolor="#ffffcc"                  bordercolor="#ffcc66" borderwidth="1px" daynameformat="shortest"                  font-names="verdana" font-size="8pt" forecolor="#663399" height="99px"                  showgridlines="true" width="61px" >                 <selecteddaystyle backcolor="#ccccff" font-bold="true" />                 <selectorstyle backcolor="#ffcc66" />                 <todaydaystyle backcolor="#ffcc66" forecolor="white" />                 <othermonthdaystyle forecolor="#cc9966" />                 <nextprevstyle font-size="9pt" forecolor="#ffffcc" />                 <dayheaderstyle backcolor="#ffcc66" font-bold="true" height="1px" />                 <titlestyle backcolor="#990000" font-bold="true" font-size="9pt"                      forecolor="#ffffcc" />             </asp:calendar>         </asp:panel>          <br />          <asp:textbox id="textbox1" runat="server"></asp:textbox>      </div>     </form> </body> </html> 

what doing wrong here?


Comments

Popular posts from this blog

Why does Ruby on Rails generate add a blank line to the end of a file? -

keyboard - Smiles and long press feature in Android -

node.js - Bad Request - node js ajax post -