I have a simple page that contains a datagrid (Infragistics UltraWebGrid
v6.1). It also contains two buttons, a clear button to clear out the data
from the table and an export button (Intragistics Excel Exporter v6.1). The
code for the page is below. I have tried any IIS timeouts I can find, the
deadloackinterval and I can't get the page to stop reloading. It loads up for
about 10 seconds just like all is going great and then starts all over again
(you can see the loading bar in IE). These pages work perfectly until they
get between 160-200 records (depending on what we're capturing) and then they
start this reloading.
Dim attLib As New CareerFairClassLibrary.ISBARainmaker
Dim m_xmlReader As System.Xml.XmlTextReader
Dim m_strFilePath As String
With attLib
If .GetListDs AndAlso Not .RainmakersDs Is Nothing Then
UltraWebGrid1.DataSource = .RainmakersDs
UltraWebGrid1.DataBind()
m_strFilePath = Me.MapPath("../Styles/WebGridLayout.xml")
m_xmlReader = New System.Xml.XmlTextReader(m_strFilePath)
UltraWebGrid1.DisplayLayout.LoadLayout(m_xmlReader , True, True, _
False, False)
m_xmlReader.Close()
End If
End With
thanks everyone
--
Nathon Dalton
Developer