Hi guys,
I have a master page and a radajaxpanel radajaxloadingpanel ... from a button I open a second aspx page that loads records from a SQL database server. Because just when I open the second page, the master page the radajaxloading starts, but the animated gif is not moving. This with Internet Explorer 9 instead if I start with google chrome the animated gif works
this my code that call the second page:
while this is the code of the second page:
I have a master page and a radajaxpanel radajaxloadingpanel ... from a button I open a second aspx page that loads records from a SQL database server. Because just when I open the second page, the master page the radajaxloading starts, but the animated gif is not moving. This with Internet Explorer 9 instead if I start with google chrome the animated gif works
this my code that call the second page:
Protected
Sub
ImageButtonRicerca_Click(sender
As
Object
, e
As
System.Web.UI.ImageClickEventArgs)
Handles
ImageButtonRicerca.Click
Response.Redirect(
"Resultsearch.aspx?_str1="
& Txt_ricerca1.Text &
"&_str2="
& Txt_ricerca2.Text)
End
Sub
while this is the code of the second page:
Dim
lista
As
List(Of PropertyUtente) = Loadsearch.Search(_str1, _str2)
RadListView1.DataSource = lista
RadListView1.DataBind()