I have two pages parent.aspx and window.aspx. parent.aspx has a grid which allows me to edit a row in a RadWindow. The opening, saving and closing of the RadWindow work fine, however I would like to rebind the grid in the parent.aspx page after pressing save.
Closing the RadWind page.
| string closingScript; |
| closingScript = "<script type='text/javascript'>window.onload = closeWin</script> "; |
| ClientScript.RegisterStartupScript(this.GetType(), "closeWin", closingScript); |
RefreshParentPage() )..courtesy of Telerik ..thanks guys
(which uses function GetRadWindow() to refresh the parent
Code is Below:
ASPX:
<%
@ Page Language="C#" MasterPageFile="~/DealerFinance.master" AutoEventWireup="true"
CodeFile="DealerDetails.aspx.cs" Inherits="Dealer_DealerDetails" Title="Untitled Page" %>
<%
@ MasterType VirtualPath="~/DealerFinance.master" %>
<%
@ Register Assembly="Telerik.Web.UI" Namespace="Telerik.Web.UI" TagPrefix="telerik" %>
<%
@ Register TagPrefix="uc1" TagName="ucDealer" Src="Dealer.ascx" %>
<%
@ Register TagPrefix="uc2" TagName="ucVehicles" Src="Vehicles.ascx" %>
<%
@ Register TagPrefix="uc3" TagName="ucNotes" Src="Notes.ascx" %>
<%
@ Register TagPrefix="uc4" TagName="ucActivities" Src="Activities.ascx" %>
<%
@ Register TagPrefix="uc5" TagName="ucContacts" Src="Contacts.ascx" %>
<%
@ Register TagPrefix="uc6" TagName="ucCollaterals" Src="Collaterals.ascx" %>
<%
@ Register TagPrefix="uc7" TagName="ucBalance" Src="Balance.ascx" %>
<%
@ Register TagPrefix="uc8" TagName="ucInvoice" Src="Invoice.ascx" %>
<%
@ Register TagPrefix="uc9" TagName="ucAudit" Src="Audit.ascx" %>
<%
@ Register TagPrefix="uc10" TagName="ucPayments" Src="Payments.ascx" %>
<
asp:Content ID="Content2" ContentPlaceHolderID="DealerFinancePlaceHolder" runat="Server">
<telerik:RadAjaxManager ID="RadAjaxManager1" runat="server" OnAjaxRequest="RadAjaxManager1_AjaxRequest">
<AjaxSettings>
<telerik:AjaxSetting AjaxControlID="RadAjaxManager1">
<UpdatedControls>
<telerik:AjaxUpdatedControl ControlID="rtsDealerDetails" />
</UpdatedControls>
</telerik:AjaxSetting>
</AjaxSettings>
</telerik:RadAjaxManager>
<table width="100%">
<tr>
<td align="center" class="moduleborder">
<table align="center">
<tr>
<td align="left">
<table width="50%">
<tr>
<td align="right" nowrap="nowrap" class="labelDisp">
<%
# Resources.DealerFinance.DealerNumber %>
</td>
<td align="left" nowrap="nowrap">
<asp:Label ID="lblDealerNumber" runat="server" SkinID="DisplayNormal">1005</asp:Label>
</td>
</tr>
<tr>
<td align="right" nowrap="nowrap" class="labelDisp">
<%
# Resources.DealerFinance.LegalName%>
</td>
<td nowrap="nowrap" align="left">
<asp:Label ID="lblLegalName" runat="server" SkinID="DisplayNormal">Kawasaki Legal Name </asp:Label>
</td>
</tr>
<tr>
<td align="right" nowrap="nowrap" class="labelDisp">
<%
# Resources.DealerFinance.Address%>
</td>
<td nowrap="nowrap" align="left">
<asp:Label ID="lblAddress" runat="server" SkinID="DisplayNormal">900 Irvine Blvd dkgjsjfd sfdjl </asp:Label>
</td>
</tr>
<tr>
<td align="right" nowrap="nowrap" class="labelDisp">
<%
# Resources.DealerFinance.Address%>
</td>
<td nowrap="nowrap" align="left">
<asp:Label ID="Label1" runat="server" SkinID="DisplayNormal">Righr Place Holder</asp:Label>
</td>
</tr>
<tr>
<td align="right" nowrap="nowrap" class="labelDisp">
<%
#Resources.DealerFinance.Address%>
</td>
<td nowrap="nowrap" align="left">
<asp:Label ID="Label2" runat="server" SkinID="DisplayNormal">Right Place Holder</asp:Label>
</td>
</tr>
</table>
</td>
<td align="left">
<table width="50%">
<tr>
<td align="right" nowrap="nowrap" class="labelDisp">
<%
# Resources.DealerFinance.DealerName %>
</td>
<td nowrap="nowrap" align="left">
<asp:Label ID="lblDealerName" runat="server" SkinID="DisplayNormal">Kawasaki Dealer Name</asp:Label>
</td>
</tr>
<tr>
<td align="right" nowrap="nowrap" class="labelDisp">
<%
# Resources.DealerFinance.KawasakiName %>
</td>
<td nowrap="nowrap" align="left">
<asp:Label ID="lblKawasakiName" runat="server" SkinID="DisplayNormal">Kawasaki</asp:Label>
</td>
</tr>
<tr>
<td align="right" nowrap="nowrap" class="labelDisp">
<%
# Resources.DealerFinance.StateCityZip %>
</td>
<td nowrap="nowrap" align="left">
<asp:Label ID="lblStateCityZip" runat="server" SkinID="DisplayNormal">Irvine, CA 92602</asp:Label>
</td>
</tr>
<tr>
<td align="right" nowrap="nowrap" class="labelDisp">
<%
# Resources.DealerFinance.Address%>
</td>
<td nowrap="nowrap" align="left">
<asp:Label ID="Label3" runat="server" SkinID="DisplayNormal">Left Place Holder</asp:Label>
</td>
</tr>
<tr>
<td align="right" nowrap="nowrap" class="labelDisp">
<%
# Resources.DealerFinance.Address%>
</td>
<td nowrap="nowrap" align="left">
<asp:Label ID="Label4" runat="server" SkinID="DisplayNormal">Left Place Holder</asp:Label>
</td>
</tr>
</table>
</td>
</tr>
</table>
</td>
</tr>
<tr>
<td align="center">
<telerik:RadTabStrip ID="rtsDealerDetails" MultiPageID="dealerDetailpages" runat="server"
Skin="Web20" AutoPostBack="True" SelectedIndex="9">
<Tabs>
<telerik:RadTab Text="Details" PageViewID="viewDealer" />
<telerik:RadTab Text="Vehicles" PageViewID="viewVehicles" />
<telerik:RadTab Text="Notes" PageViewID="viewNotes">
<Tabs>
<telerik:RadTab Text="KMFC" PageViewID="viewNotes" />
<telerik:RadTab Text="KMC" PageViewID="viewNotes" />
<telerik:RadTab Text="Special" PageViewID="viewNotes" />
<telerik:RadTab Text="Flash" PageViewID="viewNotes" />
</Tabs>
</telerik:RadTab>
<telerik:RadTab Text="Activities" PageViewID="viewActivities" />
<telerik:RadTab Text="Contacts" PageViewID="viewContacts" />
<telerik:RadTab Text="Collaterals" PageViewID="viewCollaterals" />
<telerik:RadTab Text="Balance" PageViewID="viewBalance" />
<telerik:RadTab Text="Invoice" PageViewID="viewInvoice" />
<telerik:RadTab Text="Audit" PageViewID="viewAudit" />
<telerik:RadTab Text="Payments" PageViewID="viewPayments" Selected="True" />
</Tabs>
</telerik:RadTabStrip>
<telerik:RadMultiPage ID="dealerDetailpages" runat="server" SelectedIndex="0" Width="400"
RenderSelectedPageOnly="true">
<telerik:RadPageView ID="viewDealer" runat="server">
<uc1:ucDealer ID="ctlDealer" runat="server" />
</telerik:RadPageView>
<telerik:RadPageView ID="viewVehicles" runat="server">
<uc2:ucVehicles ID="ctlVehicles" runat="server" />
</telerik:RadPageView>
<telerik:RadPageView ID="viewNotes" runat="server">
<uc3:ucNotes ID="UcNotes" runat="server" />
</telerik:RadPageView>
<telerik:RadPageView ID="viewActivities" runat="server">
<uc4:ucActivities ID="ctlActivities" runat="server" />
</telerik:RadPageView>
<telerik:RadPageView ID="viewContacts" runat="server">
<uc5:ucContacts ID="ctlContacts" runat="server" />
</telerik:RadPageView>
<telerik:RadPageView ID="viewCollaterals" runat="server">
<uc6:ucCollaterals ID="ctlCollaterals" runat="server" />
</telerik:RadPageView>
<telerik:RadPageView ID="viewBalance" runat="server">
<uc7:ucBalance ID="ctlBalance" runat="server" />
</telerik:RadPageView>
<telerik:RadPageView ID="viewInvoice" runat="server">
<uc8:ucInvoice ID="ctlInvoice" runat="server" />
</telerik:RadPageView>
<telerik:RadPageView ID="viewAudit" runat="server">
<uc9:ucAudit ID="ctlAudit" runat="server" />
</telerik:RadPageView>
<telerik:RadPageView ID="viewPayments" runat="server">
<uc10:ucPayments ID="ctlPayments" runat="server" />
</telerik:RadPageView>
</telerik:RadMultiPage>
</td>
</tr>
</table>
</
asp:Content>
Code Behind:
using System;
using System.Collections;
using System.Configuration;
using System.Data;
using System.Linq;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.HtmlControls;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Xml.Linq;
using Telerik.Web.UI;
public partial class Dealer_DealerDetails : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
rtsDealerDetails.MultiPageID = dealerDetailpages.UniqueID;
Master.SelectedDealerTab = 1;
if (!IsPostBack)
{
rtsDealerDetails.SelectedIndex = 0;
Response.Write(rtsDealerDetails.SelectedTab.Text);
}
}
protected void RadAjaxManager1_AjaxRequest(object sender, AjaxRequestEventArgs e)
{
if (e.Argument == "Rebind")
{
//if (rtsDealerDetails.SelectedTab.Text.Equals("Notes"))
//{
// rtsDealerDetails.SelectedTab.Tabs.se
//}
//grdDealerList.MasterTableView.SortExpressions.Clear();
//grdDealerList.MasterTableView.GroupByExpressions.Clear();
//grdDealerList.DataSource = BindGrid();
//grdDealerList.Rebind();
}
}
public RadTabStrip DealerDetailsTab
{
get
{
return rtsDealerDetails;
}
set
{
}
}
}
<%
@ Control Language="C#" AutoEventWireup="true" CodeFile="Notes.ascx.cs" Inherits="Dealer_Notes" %>
<%
@ Register Assembly="Telerik.Web.UI" Namespace="Telerik.Web.UI" TagPrefix="telerik" %>
<telerik:RadAjaxManagerProxy ID="radAjaxProxy" runat="server">
<AjaxSettings>
<telerik:AjaxSetting AjaxControlID="radAjaxProxy">
<UpdatedControls>
<telerik:AjaxUpdatedControl ControlID="rtsDealerDetails" />
</UpdatedControls>
</telerik:AjaxSetting>
</AjaxSettings>
</telerik:RadAjaxManagerProxy>
<table>
<tr>
<td align="left">
<!-- <asp:Button ID="tempbtnSearch" runat="server" CausesValidation="false" OnClientClick="LookupParameter()" SkinID="DisplayButton"
Text="Search" /> -->
<!-- <asp:Button ID="btnSearch" runat="server" CausesValidation="false" SkinID="DisplayButton"
OnClientClick = "return ShowInsertForm();" Text="Search" /> -->
</td>
</tr>
<tr>
<td>
<telerik:RadGrid
ID="grdNotes"
runat="server"
AllowPaging="True"
AllowSorting="True"
PageSize="10"
GridLines="None"
OnItemCommand="RadGrid1_ItemCommand"
OnNeedDataSource="RadGrid1_NeedDataSource"
EnableAJAX="true"
Skin="Vista"
ShowFooter="false"
ShowStatusBar = "false"
>
<PagerStyle Mode="NumericPages" />
<MasterTableView
AutoGenerateColumns="False"
DataKeyNames="ROW_ID,DEALER_NUM"
Width="100%"
CommandItemDisplay="Top"
PageSize="15">
<Columns>
<telerik:GridButtonColumn
DataTextField="DEALER_ID"
CommandArgument="DEALER_ID"
HeaderText="Edit/Delete"
CommandName="Select"
DataTextFormatString = "<nobr>{0}</nobr>"
SortExpression="ROW_ID,DEALER_ID"
ItemStyle-CssClass= "RadGridItemTemplate"
HeaderStyle-Wrap = "false" >
</telerik:GridButtonColumn>
<telerik:GridBoundColumn
DataField="NOTES"
HeaderText="Notes"
ReadOnly="True"
SortExpression="NOTES"
UniqueName="NOTES"
DataFormatString = "<nobr>{0}</nobr>">
</telerik:GridBoundColumn>
<telerik:GridBoundColumn
DataField="START_DT"
HeaderText="Start Date"
SortExpression="START_DT"
UniqueName="START_DT"
DataFormatString = "<nobr>{0}</nobr>">
</telerik:GridBoundColumn>
<telerik:GridBoundColumn
DataField="END_DT"
HeaderText="End Date"
SortExpression="END_DT"
UniqueName="END_DT"
DataFormatString = "<nobr>{0}</nobr>">
</telerik:GridBoundColumn>
<telerik:GridBoundColumn
DataField="DURATION"
HeaderText="Duration"
SortExpression="DURATION"
UniqueName="DURATION"
DataFormatString = "<nobr>{0}</nobr>">
</telerik:GridBoundColumn>
</Columns>
<CommandItemTemplate>
<asp:Button ID="btnAdd" runat="server" CausesValidation="false" SkinID="DisplayButton"
OnClientClick="return ShowInsertForm('DealersSearch');" Text=" Add " />
</CommandItemTemplate>
</MasterTableView>
</telerik:RadGrid>
</td>
</tr>
</table>
<telerik:RadWindowManager ID="RadWindowManager1" runat="server" Width="400px" Skin="Mac" Height="425px" Left="550px" >
<Windows >
<telerik:RadWindow ID="windowDealerSearch" runat="server" Title="Dealer Search"
ReloadOnShow="true" visiblestatusbar="false"
></telerik:RadWindow>
</Windows>
</telerik:RadWindowManager>
Code Behind :
using System;
using System.Collections;
using System.Configuration;
using System.Data;
using System.Linq;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.HtmlControls;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Xml.Linq;
using Telerik.Web.UI;
using System.Data.SqlClient;
public partial class Dealer_Notes : System.Web.UI.UserControl
{
protected void Page_Load(object sender, EventArgs e)
{
if (!IsPostBack)
{
}
}
protected void RadGrid1_NeedDataSource(object source, Telerik.Web.UI.GridNeedDataSourceEventArgs e)
{
grdNotes.DataSource = BindGrid();
}
protected void RadAjaxManager1_AjaxRequest(object sender, AjaxRequestEventArgs e)
{
if (e.Argument == "Rebind")
{
grdNotes.MasterTableView.SortExpressions.Clear();
grdNotes.MasterTableView.GroupByExpressions.Clear();
grdNotes.DataSource = BindGrid();
grdNotes.Rebind();
}
}
protected void RadGrid1_ItemCommand(object source, Telerik.Web.UI.GridCommandEventArgs e)
{
if (e.CommandName == "Select")
{
GridDataItem dataItem = (GridDataItem)e.Item;
string strTxt = dataItem.GetDataKeyValue("ROW_ID").ToString();
string rowID = dataItem.GetDataKeyValue("DEALER_NUM").ToString();
}
}
private DataTable BindGrid()
{
string searchCondition = "";
string sql = "";
//grdDealerList.DataSource = null;
DealSearchFields dealerSeachFieldsObj = (DealSearchFields)Session["DealerSearchFields"];
if (dealerSeachFieldsObj != null)
{
searchCondition = dealerSeachFieldsObj.DealerNumber;
}
else
{
searchCondition = "";
}
if (searchCondition.Length > 0)
{
sql = "SELECT ROW_ID ,DEALER_ID ,AREA, TYPE, STATUS, NOTES,START_DT,END_DT,DURATION FROM KF_NOTES_DL where DEALER_ID = '" + searchCondition + "%' order by START_DT";
}
else
{
sql = "SELECT ROW_ID ,DEALER_ID ,AREA, TYPE, STATUS, NOTES,START_DT,END_DT,DURATION FROM KF_NOTES_DL order by START_DT";
}
SqlDataAdapter adapter = new SqlDataAdapter(sql,
ConfigurationManager.ConnectionStrings["KC_DealerFinanceConnectionString"].ConnectionString);
DataTable dt = new DataTable();
adapter.Fill(dt);
return dt;
}
public DataTable NotesTable
{
get
{
return BindGrid();
}
set { }
}
public RadGrid NotesGrid
{
get
{
return grdNotes;
}
set
{
grdNotes = value;
}
}
}
Dealer User Control:
<FONT size=2>
<P><%</FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2>@</FONT></FONT><FONT size=2> </FONT><FONT color=#a31515 size=2><FONT color=#a31515 size=2>Control</FONT></FONT><FONT size=2> </FONT><FONT color=#ff0000 size=2><FONT color=#ff0000 size=2>Language</FONT></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2>="C#"</FONT></FONT><FONT size=2> </FONT><FONT color=#ff0000 size=2><FONT color=#ff0000 size=2>AutoEventWireup</FONT></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2>="true"</FONT></FONT><FONT size=2> </FONT><FONT color=#ff0000 size=2><FONT color=#ff0000 size=2>CodeFile</FONT></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2>="Dealer.ascx.cs"</FONT></FONT><FONT size=2> </FONT><FONT color=#ff0000 size=2><FONT color=#ff0000 size=2>Inherits</FONT></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2>="Dealer_Dealer"</FONT></FONT><FONT size=2> %></P></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2>
<P><</FONT></FONT><FONT color=#a31515 size=2><FONT color=#a31515 size=2>table</FONT></FONT><FONT size=2> </FONT><FONT color=#ff0000 size=2><FONT color=#ff0000 size=2>width</FONT></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2>="800px"></P></FONT></FONT><FONT size=2>
<P></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2><</FONT></FONT><FONT color=#a31515 size=2><FONT color=#a31515 size=2>tr</FONT></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2>></P></FONT></FONT><FONT size=2>
<P></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2><</FONT></FONT><FONT color=#a31515 size=2><FONT color=#a31515 size=2>td</FONT></FONT><FONT size=2> </FONT><FONT color=#ff0000 size=2><FONT color=#ff0000 size=2>align</FONT></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2>="center"</FONT></FONT><FONT size=2> </FONT><FONT color=#ff0000 size=2><FONT color=#ff0000 size=2>colspan</FONT></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2>="3"></P></FONT></FONT><FONT size=2>
<P></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2><</FONT></FONT><FONT color=#a31515 size=2><FONT color=#a31515 size=2>br</FONT></FONT><FONT size=2> </FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2>/></P></FONT></FONT><FONT size=2>
<P></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2><</FONT></FONT><FONT color=#a31515 size=2><FONT color=#a31515 size=2>div</FONT></FONT><FONT size=2> </FONT><FONT color=#ff0000 size=2><FONT color=#ff0000 size=2>class</FONT></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2>="TitleTextNormal"></P></FONT></FONT><FONT size=2>
<P><%</FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2>=</FONT></FONT><FONT size=2>Resources.</FONT><FONT color=#2b91af size=2><FONT color=#2b91af size=2>DealerFinance</FONT></FONT><FONT size=2>.DealerDetailsSubTab%></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2></</FONT></FONT><FONT color=#a31515 size=2><FONT color=#a31515 size=2>div</FONT></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2>></P></FONT></FONT><FONT size=2>
<P></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2><</FONT></FONT><FONT color=#a31515 size=2><FONT color=#a31515 size=2>br</FONT></FONT><FONT size=2> </FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2>/></P></FONT></FONT><FONT size=2>
<P></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2></</FONT></FONT><FONT color=#a31515 size=2><FONT color=#a31515 size=2>td</FONT></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2>></P></FONT></FONT><FONT size=2>
<P></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2></</FONT></FONT><FONT color=#a31515 size=2><FONT color=#a31515 size=2>tr</FONT></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2>></P></FONT></FONT><FONT size=2>
<P></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2><</FONT></FONT><FONT color=#a31515 size=2><FONT color=#a31515 size=2>tr</FONT></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2>></P></FONT></FONT><FONT size=2>
<P></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2><</FONT></FONT><FONT color=#a31515 size=2><FONT color=#a31515 size=2>td</FONT></FONT><FONT size=2> </FONT><FONT color=#ff0000 size=2><FONT color=#ff0000 size=2>align</FONT></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2>="center"></P></FONT></FONT><FONT size=2>
<P></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2><</FONT></FONT><FONT color=#a31515 size=2><FONT color=#a31515 size=2>table</FONT></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2>></P></FONT></FONT><FONT size=2>
<P></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2><</FONT></FONT><FONT color=#a31515 size=2><FONT color=#a31515 size=2>tr</FONT></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2>></P></FONT></FONT><FONT size=2>
<P></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2><</FONT></FONT><FONT color=#a31515 size=2><FONT color=#a31515 size=2>td</FONT></FONT><FONT size=2> </FONT><FONT color=#ff0000 size=2><FONT color=#ff0000 size=2>align</FONT></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2>="right"</FONT></FONT><FONT size=2> </FONT><FONT color=#ff0000 size=2><FONT color=#ff0000 size=2>nowrap</FONT></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2>="nowrap"</FONT></FONT><FONT size=2> </FONT><FONT color=#ff0000 size=2><FONT color=#ff0000 size=2>class</FONT></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2>="labelDisp"></P></FONT></FONT><FONT size=2>
<P><%</FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2>=</FONT></FONT><FONT size=2>Resources.</FONT><FONT color=#2b91af size=2><FONT color=#2b91af size=2>DealerFinance</FONT></FONT><FONT size=2>.FlashDate%></P>
<P></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2></</FONT></FONT><FONT color=#a31515 size=2><FONT color=#a31515 size=2>td</FONT></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2>></P></FONT></FONT><FONT size=2>
<P></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2><</FONT></FONT><FONT color=#a31515 size=2><FONT color=#a31515 size=2>td</FONT></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2>></P></FONT></FONT><FONT size=2>
<P></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2><</FONT></FONT><FONT color=#a31515 size=2><FONT color=#a31515 size=2>asp</FONT></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2>:</FONT></FONT><FONT color=#a31515 size=2><FONT color=#a31515 size=2>Label</FONT></FONT><FONT size=2> </FONT><FONT color=#ff0000 size=2><FONT color=#ff0000 size=2>ID</FONT></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2>="lblDealerNumber"</FONT></FONT><FONT size=2> </FONT><FONT color=#ff0000 size=2><FONT color=#ff0000 size=2>runat</FONT></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2>="server"</FONT></FONT><FONT size=2> </FONT><FONT color=#ff0000 size=2><FONT color=#ff0000 size=2>SkinID</FONT></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2>="DisplayNormal"></FONT></FONT><FONT size=2>Sai Baba</FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2></</FONT></FONT><FONT color=#a31515 size=2><FONT color=#a31515 size=2>asp</FONT></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2>:</FONT></FONT><FONT color=#a31515 size=2><FONT color=#a31515 size=2>Label</FONT></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2>></P></FONT></FONT><FONT size=2>
<P></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2></</FONT></FONT><FONT color=#a31515 size=2><FONT color=#a31515 size=2>td</FONT></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2>></P></FONT></FONT><FONT size=2>
<P></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2></</FONT></FONT><FONT color=#a31515 size=2><FONT color=#a31515 size=2>tr</FONT></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2>></P></FONT></FONT><FONT size=2>
<P></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2><</FONT></FONT><FONT color=#a31515 size=2><FONT color=#a31515 size=2>tr</FONT></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2>></P></FONT></FONT><FONT size=2>
<P></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2><</FONT></FONT><FONT color=#a31515 size=2><FONT color=#a31515 size=2>td</FONT></FONT><FONT size=2> </FONT><FONT color=#ff0000 size=2><FONT color=#ff0000 size=2>align</FONT></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2>="right"</FONT></FONT><FONT size=2> </FONT><FONT color=#ff0000 size=2><FONT color=#ff0000 size=2>nowrap</FONT></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2>="nowrap"</FONT></FONT><FONT size=2> </FONT><FONT color=#ff0000 size=2><FONT color=#ff0000 size=2>class</FONT></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2>="labelDisp"></P></FONT></FONT><FONT size=2>
<P><%</FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2>=</FONT></FONT><FONT size=2>Resources.</FONT><FONT color=#2b91af size=2><FONT color=#2b91af size=2>DealerFinance</FONT></FONT><FONT size=2>.FlashDate%></P>
<P></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2></</FONT></FONT><FONT color=#a31515 size=2><FONT color=#a31515 size=2>td</FONT></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2>></P></FONT></FONT><FONT size=2>
<P></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2><</FONT></FONT><FONT color=#a31515 size=2><FONT color=#a31515 size=2>td</FONT></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2>></P></FONT></FONT><FONT size=2>
<P></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2><</FONT></FONT><FONT color=#a31515 size=2><FONT color=#a31515 size=2>asp</FONT></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2>:</FONT></FONT><FONT color=#a31515 size=2><FONT color=#a31515 size=2>Label</FONT></FONT><FONT size=2> </FONT><FONT color=#ff0000 size=2><FONT color=#ff0000 size=2>ID</FONT></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2>="Label3"</FONT></FONT><FONT size=2> </FONT><FONT color=#ff0000 size=2><FONT color=#ff0000 size=2>runat</FONT></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2>="server"</FONT></FONT><FONT size=2> </FONT><FONT color=#ff0000 size=2><FONT color=#ff0000 size=2>SkinID</FONT></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2>="DisplayNormal"></FONT></FONT><FONT size=2>Sai Baba</FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2></</FONT></FONT><FONT color=#a31515 size=2><FONT color=#a31515 size=2>asp</FONT></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2>:</FONT></FONT><FONT color=#a31515 size=2><FONT color=#a31515 size=2>Label</FONT></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2>></P></FONT></FONT><FONT size=2>
<P></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2></</FONT></FONT><FONT color=#a31515 size=2><FONT color=#a31515 size=2>td</FONT></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2>></P></FONT></FONT><FONT size=2>
<P></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2></</FONT></FONT><FONT color=#a31515 size=2><FONT color=#a31515 size=2>tr</FONT></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2>></P></FONT></FONT><FONT size=2>
<P></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2><</FONT></FONT><FONT color=#a31515 size=2><FONT color=#a31515 size=2>tr</FONT></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2>></P></FONT></FONT><FONT size=2>
<P></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2><</FONT></FONT><FONT color=#a31515 size=2><FONT color=#a31515 size=2>td</FONT></FONT><FONT size=2> </FONT><FONT color=#ff0000 size=2><FONT color=#ff0000 size=2>align</FONT></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2>="right"</FONT></FONT><FONT size=2> </FONT><FONT color=#ff0000 size=2><FONT color=#ff0000 size=2>nowrap</FONT></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2>="nowrap"</FONT></FONT><FONT size=2> </FONT><FONT color=#ff0000 size=2><FONT color=#ff0000 size=2>class</FONT></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2>="labelDisp"></P></FONT></FONT><FONT size=2>
<P><%</FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2>=</FONT></FONT><FONT size=2>Resources.</FONT><FONT color=#2b91af size=2><FONT color=#2b91af size=2>DealerFinance</FONT></FONT><FONT size=2>.FlashDate%></P>
<P></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2></</FONT></FONT><FONT color=#a31515 size=2><FONT color=#a31515 size=2>td</FONT></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2>></P></FONT></FONT><FONT size=2>
<P></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2><</FONT></FONT><FONT color=#a31515 size=2><FONT color=#a31515 size=2>td</FONT></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2>></P></FONT></FONT><FONT size=2>
<P></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2><</FONT></FONT><FONT color=#a31515 size=2><FONT color=#a31515 size=2>asp</FONT></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2>:</FONT></FONT><FONT color=#a31515 size=2><FONT color=#a31515 size=2>Label</FONT></FONT><FONT size=2> </FONT><FONT color=#ff0000 size=2><FONT color=#ff0000 size=2>ID</FONT></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2>="Label4"</FONT></FONT><FONT size=2> </FONT><FONT color=#ff0000 size=2><FONT color=#ff0000 size=2>runat</FONT></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2>="server"</FONT></FONT><FONT size=2> </FONT><FONT color=#ff0000 size=2><FONT color=#ff0000 size=2>SkinID</FONT></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2>="DisplayNormal"></FONT></FONT><FONT size=2>Sai Baba</FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2></</FONT></FONT><FONT color=#a31515 size=2><FONT color=#a31515 size=2>asp</FONT></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2>:</FONT></FONT><FONT color=#a31515 size=2><FONT color=#a31515 size=2>Label</FONT></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2>></P></FONT></FONT><FONT size=2>
<P></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2></</FONT></FONT><FONT color=#a31515 size=2><FONT color=#a31515 size=2>td</FONT></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2>></P></FONT></FONT><FONT size=2>
<P></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2></</FONT></FONT><FONT color=#a31515 size=2><FONT color=#a31515 size=2>tr</FONT></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2>></P></FONT></FONT><FONT size=2>
<P></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2><</FONT></FONT><FONT color=#a31515 size=2><FONT color=#a31515 size=2>tr</FONT></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2>></P></FONT></FONT><FONT size=2>
<P></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2><</FONT></FONT><FONT color=#a31515 size=2><FONT color=#a31515 size=2>td</FONT></FONT><FONT size=2> </FONT><FONT color=#ff0000 size=2><FONT color=#ff0000 size=2>align</FONT></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2>="right"</FONT></FONT><FONT size=2> </FONT><FONT color=#ff0000 size=2><FONT color=#ff0000 size=2>nowrap</FONT></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2>="nowrap"</FONT></FONT><FONT size=2> </FONT><FONT color=#ff0000 size=2><FONT color=#ff0000 size=2>class</FONT></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2>="labelDisp"></P></FONT></FONT><FONT size=2>
<P><%</FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2>=</FONT></FONT><FONT size=2>Resources.</FONT><FONT color=#2b91af size=2><FONT color=#2b91af size=2>DealerFinance</FONT></FONT><FONT size=2>.FlashDate%></P>
<P></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2></</FONT></FONT><FONT color=#a31515 size=2><FONT color=#a31515 size=2>td</FONT></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2>></P></FONT></FONT><FONT size=2>
<P></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2><</FONT></FONT><FONT color=#a31515 size=2><FONT color=#a31515 size=2>td</FONT></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2>></P></FONT></FONT><FONT size=2>
<P></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2><</FONT></FONT><FONT color=#a31515 size=2><FONT color=#a31515 size=2>asp</FONT></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2>:</FONT></FONT><FONT color=#a31515 size=2><FONT color=#a31515 size=2>Label</FONT></FONT><FONT size=2> </FONT><FONT color=#ff0000 size=2><FONT color=#ff0000 size=2>ID</FONT></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2>="Label5"</FONT></FONT><FONT size=2> </FONT><FONT color=#ff0000 size=2><FONT color=#ff0000 size=2>runat</FONT></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2>="server"</FONT></FONT><FONT size=2> </FONT><FONT color=#ff0000 size=2><FONT color=#ff0000 size=2>SkinID</FONT></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2>="DisplayNormal"></FONT></FONT><FONT size=2>Sai Baba</FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2></</FONT></FONT><FONT color=#a31515 size=2><FONT color=#a31515 size=2>asp</FONT></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2>:</FONT></FONT><FONT color=#a31515 size=2><FONT color=#a31515 size=2>Label</FONT></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2>></P></FONT></FONT><FONT size=2>
<P></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2></</FONT></FONT><FONT color=#a31515 size=2><FONT color=#a31515 size=2>td</FONT></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2>></P></FONT></FONT><FONT size=2>
<P></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2></</FONT></FONT><FONT color=#a31515 size=2><FONT color=#a31515 size=2>tr</FONT></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2>></P></FONT></FONT><FONT size=2>
<P></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2></</FONT></FONT><FONT color=#a31515 size=2><FONT color=#a31515 size=2>table</FONT></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2>></P></FONT></FONT><FONT size=2>
<P></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2></</FONT></FONT><FONT color=#a31515 size=2><FONT color=#a31515 size=2>td</FONT></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2>></P></FONT></FONT><FONT size=2>
<P></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2><</FONT></FONT><FONT color=#a31515 size=2><FONT color=#a31515 size=2>td</FONT></FONT><FONT size=2> </FONT><FONT color=#ff0000 size=2><FONT color=#ff0000 size=2>align</FONT></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2>="left"></P></FONT></FONT><FONT size=2>
<P></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2><</FONT></FONT><FONT color=#a31515 size=2><FONT color=#a31515 size=2>table</FONT></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2>></P></FONT></FONT><FONT size=2>
<P></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2><</FONT></FONT><FONT color=#a31515 size=2><FONT color=#a31515 size=2>tr</FONT></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2>></P></FONT></FONT><FONT size=2>
<P></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2><</FONT></FONT><FONT color=#a31515 size=2><FONT color=#a31515 size=2>td</FONT></FONT><FONT size=2> </FONT><FONT color=#ff0000 size=2><FONT color=#ff0000 size=2>align</FONT></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2>="right"</FONT></FONT><FONT size=2> </FONT><FONT color=#ff0000 size=2><FONT color=#ff0000 size=2>nowrap</FONT></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2>="nowrap"</FONT></FONT><FONT size=2> </FONT><FONT color=#ff0000 size=2><FONT color=#ff0000 size=2>class</FONT></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2>="labelDisp"></P></FONT></FONT><FONT size=2>
<P><%</FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2>=</FONT></FONT><FONT size=2>Resources.</FONT><FONT color=#2b91af size=2><FONT color=#2b91af size=2>DealerFinance</FONT></FONT><FONT size=2>.FlashDate%></P>
<P></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2></</FONT></FONT><FONT color=#a31515 size=2><FONT color=#a31515 size=2>td</FONT></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2>></P></FONT></FONT><FONT size=2>
<P></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2><</FONT></FONT><FONT color=#a31515 size=2><FONT color=#a31515 size=2>td</FONT></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2>></P></FONT></FONT><FONT size=2>
<P></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2><</FONT></FONT><FONT color=#a31515 size=2><FONT color=#a31515 size=2>asp</FONT></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2>:</FONT></FONT><FONT color=#a31515 size=2><FONT color=#a31515 size=2>Label</FONT></FONT><FONT size=2> </FONT><FONT color=#ff0000 size=2><FONT color=#ff0000 size=2>ID</FONT></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2>="Label1"</FONT></FONT><FONT size=2> </FONT><FONT color=#ff0000 size=2><FONT color=#ff0000 size=2>runat</FONT></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2>="server"</FONT></FONT><FONT size=2> </FONT><FONT color=#ff0000 size=2><FONT color=#ff0000 size=2>SkinID</FONT></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2>="DisplayNormal"></FONT></FONT><FONT size=2>Sai Baba</FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2></</FONT></FONT><FONT color=#a31515 size=2><FONT color=#a31515 size=2>asp</FONT></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2>:</FONT></FONT><FONT color=#a31515 size=2><FONT color=#a31515 size=2>Label</FONT></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2>></P></FONT></FONT><FONT size=2>
<P></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2></</FONT></FONT><FONT color=#a31515 size=2><FONT color=#a31515 size=2>td</FONT></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2>></P></FONT></FONT><FONT size=2>
<P></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2></</FONT></FONT><FONT color=#a31515 size=2><FONT color=#a31515 size=2>tr</FONT></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2>></P></FONT></FONT><FONT size=2>
<P></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2><</FONT></FONT><FONT color=#a31515 size=2><FONT color=#a31515 size=2>tr</FONT></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2>></P></FONT></FONT><FONT size=2>
<P></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2><</FONT></FONT><FONT color=#a31515 size=2><FONT color=#a31515 size=2>td</FONT></FONT><FONT size=2> </FONT><FONT color=#ff0000 size=2><FONT color=#ff0000 size=2>align</FONT></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2>="right"</FONT></FONT><FONT size=2> </FONT><FONT color=#ff0000 size=2><FONT color=#ff0000 size=2>nowrap</FONT></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2>="nowrap"</FONT></FONT><FONT size=2> </FONT><FONT color=#ff0000 size=2><FONT color=#ff0000 size=2>class</FONT></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2>="labelDisp"></P></FONT></FONT><FONT size=2>
<P><%</FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2>=</FONT></FONT><FONT size=2>Resources.</FONT><FONT color=#2b91af size=2><FONT color=#2b91af size=2>DealerFinance</FONT></FONT><FONT size=2>.FlashDate%></P>
<P></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2></</FONT></FONT><FONT color=#a31515 size=2><FONT color=#a31515 size=2>td</FONT></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2>></P></FONT></FONT><FONT size=2>
<P></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2><</FONT></FONT><FONT color=#a31515 size=2><FONT color=#a31515 size=2>td</FONT></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2>></P></FONT></FONT><FONT size=2>
<P></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2><</FONT></FONT><FONT color=#a31515 size=2><FONT color=#a31515 size=2>asp</FONT></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2>:</FONT></FONT><FONT color=#a31515 size=2><FONT color=#a31515 size=2>Label</FONT></FONT><FONT size=2> </FONT><FONT color=#ff0000 size=2><FONT color=#ff0000 size=2>ID</FONT></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2>="Label6"</FONT></FONT><FONT size=2> </FONT><FONT color=#ff0000 size=2><FONT color=#ff0000 size=2>runat</FONT></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2>="server"</FONT></FONT><FONT size=2> </FONT><FONT color=#ff0000 size=2><FONT color=#ff0000 size=2>SkinID</FONT></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2>="DisplayNormal"></FONT></FONT><FONT size=2>Sai Baba</FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2></</FONT></FONT><FONT color=#a31515 size=2><FONT color=#a31515 size=2>asp</FONT></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2>:</FONT></FONT><FONT color=#a31515 size=2><FONT color=#a31515 size=2>Label</FONT></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2>></P></FONT></FONT><FONT size=2>
<P></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2></</FONT></FONT><FONT color=#a31515 size=2><FONT color=#a31515 size=2>td</FONT></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2>></P></FONT></FONT><FONT size=2>
<P></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2></</FONT></FONT><FONT color=#a31515 size=2><FONT color=#a31515 size=2>tr</FONT></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2>></P></FONT></FONT><FONT size=2>
<P></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2><</FONT></FONT><FONT color=#a31515 size=2><FONT color=#a31515 size=2>tr</FONT></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2>></P></FONT></FONT><FONT size=2>
<P></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2><</FONT></FONT><FONT color=#a31515 size=2><FONT color=#a31515 size=2>td</FONT></FONT><FONT size=2> </FONT><FONT color=#ff0000 size=2><FONT color=#ff0000 size=2>align</FONT></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2>="right"</FONT></FONT><FONT size=2> </FONT><FONT color=#ff0000 size=2><FONT color=#ff0000 size=2>nowrap</FONT></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2>="nowrap"</FONT></FONT><FONT size=2> </FONT><FONT color=#ff0000 size=2><FONT color=#ff0000 size=2>class</FONT></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2>="labelDisp"></P></FONT></FONT><FONT size=2>
<P><%</FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2>=</FONT></FONT><FONT size=2>Resources.</FONT><FONT color=#2b91af size=2><FONT color=#2b91af size=2>DealerFinance</FONT></FONT><FONT size=2>.FlashDate%></P>
<P></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2></</FONT></FONT><FONT color=#a31515 size=2><FONT color=#a31515 size=2>td</FONT></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2>></P></FONT></FONT><FONT size=2>
<P></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2><</FONT></FONT><FONT color=#a31515 size=2><FONT color=#a31515 size=2>td</FONT></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2>></P></FONT></FONT><FONT size=2>
<P></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2><</FONT></FONT><FONT color=#a31515 size=2><FONT color=#a31515 size=2>asp</FONT></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2>:</FONT></FONT><FONT color=#a31515 size=2><FONT color=#a31515 size=2>Label</FONT></FONT><FONT size=2> </FONT><FONT color=#ff0000 size=2><FONT color=#ff0000 size=2>ID</FONT></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2>="Label7"</FONT></FONT><FONT size=2> </FONT><FONT color=#ff0000 size=2><FONT color=#ff0000 size=2>runat</FONT></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2>="server"</FONT></FONT><FONT size=2> </FONT><FONT color=#ff0000 size=2><FONT color=#ff0000 size=2>SkinID</FONT></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2>="DisplayNormal"></FONT></FONT><FONT size=2>Sai Baba</FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2></</FONT></FONT><FONT color=#a31515 size=2><FONT color=#a31515 size=2>asp</FONT></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2>:</FONT></FONT><FONT color=#a31515 size=2><FONT color=#a31515 size=2>Label</FONT></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2>></P></FONT></FONT><FONT size=2>
<P></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2></</FONT></FONT><FONT color=#a31515 size=2><FONT color=#a31515 size=2>td</FONT></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2>></P></FONT></FONT><FONT size=2>
<P></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2></</FONT></FONT><FONT color=#a31515 size=2><FONT color=#a31515 size=2>tr</FONT></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2>></P></FONT></FONT><FONT size=2>
<P></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2><</FONT></FONT><FONT color=#a31515 size=2><FONT color=#a31515 size=2>tr</FONT></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2>></P></FONT></FONT><FONT size=2>
<P></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2><</FONT></FONT><FONT color=#a31515 size=2><FONT color=#a31515 size=2>td</FONT></FONT><FONT size=2> </FONT><FONT color=#ff0000 size=2><FONT color=#ff0000 size=2>align</FONT></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2>="right"</FONT></FONT><FONT size=2> </FONT><FONT color=#ff0000 size=2><FONT color=#ff0000 size=2>nowrap</FONT></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2>="nowrap"</FONT></FONT><FONT size=2> </FONT><FONT color=#ff0000 size=2><FONT color=#ff0000 size=2>class</FONT></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2>="labelDisp"></P></FONT></FONT><FONT size=2>
<P><%</FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2>=</FONT></FONT><FONT size=2>Resources.</FONT><FONT color=#2b91af size=2><FONT color=#2b91af size=2>DealerFinance</FONT></FONT><FONT size=2>.FlashDate%></P>
<P></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2></</FONT></FONT><FONT color=#a31515 size=2><FONT color=#a31515 size=2>td</FONT></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2>></P></FONT></FONT><FONT size=2>
<P></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2><</FONT></FONT><FONT color=#a31515 size=2><FONT color=#a31515 size=2>td</FONT></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2>></P></FONT></FONT><FONT size=2>
<P></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2><</FONT></FONT><FONT color=#a31515 size=2><FONT color=#a31515 size=2>asp</FONT></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2>:</FONT></FONT><FONT color=#a31515 size=2><FONT color=#a31515 size=2>Label</FONT></FONT><FONT size=2> </FONT><FONT color=#ff0000 size=2><FONT color=#ff0000 size=2>ID</FONT></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2>="Label8"</FONT></FONT><FONT size=2> </FONT><FONT color=#ff0000 size=2><FONT color=#ff0000 size=2>runat</FONT></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2>="server"</FONT></FONT><FONT size=2> </FONT><FONT color=#ff0000 size=2><FONT color=#ff0000 size=2>SkinID</FONT></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2>="DisplayNormal"></FONT></FONT><FONT size=2>Sai Baba</FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2></</FONT></FONT><FONT color=#a31515 size=2><FONT color=#a31515 size=2>asp</FONT></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2>:</FONT></FONT><FONT color=#a31515 size=2><FONT color=#a31515 size=2>Label</FONT></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2>></P></FONT></FONT><FONT size=2>
<P></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2></</FONT></FONT><FONT color=#a31515 size=2><FONT color=#a31515 size=2>td</FONT></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2>></P></FONT></FONT><FONT size=2>
<P></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2></</FONT></FONT><FONT color=#a31515 size=2><FONT color=#a31515 size=2>tr</FONT></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2>></P></FONT></FONT><FONT size=2>
<P></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2></</FONT></FONT><FONT color=#a31515 size=2><FONT color=#a31515 size=2>table</FONT></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2>></P></FONT></FONT><FONT size=2>
<P></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2></</FONT></FONT><FONT color=#a31515 size=2><FONT color=#a31515 size=2>td</FONT></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2>></P></FONT></FONT><FONT size=2>
<P></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2><</FONT></FONT><FONT color=#a31515 size=2><FONT color=#a31515 size=2>td</FONT></FONT><FONT size=2> </FONT><FONT color=#ff0000 size=2><FONT color=#ff0000 size=2>align</FONT></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2>="left"></P></FONT></FONT><FONT size=2>
<P></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2><</FONT></FONT><FONT color=#a31515 size=2><FONT color=#a31515 size=2>table</FONT></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2>></P></FONT></FONT><FONT size=2>
<P></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2><</FONT></FONT><FONT color=#a31515 size=2><FONT color=#a31515 size=2>tr</FONT></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2>></P></FONT></FONT><FONT size=2>
<P></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2><</FONT></FONT><FONT color=#a31515 size=2><FONT color=#a31515 size=2>td</FONT></FONT><FONT size=2> </FONT><FONT color=#ff0000 size=2><FONT color=#ff0000 size=2>align</FONT></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2>="right"</FONT></FONT><FONT size=2> </FONT><FONT color=#ff0000 size=2><FONT color=#ff0000 size=2>nowrap</FONT></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2>="nowrap"</FONT></FONT><FONT size=2> </FONT><FONT color=#ff0000 size=2><FONT color=#ff0000 size=2>class</FONT></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2>="labelDisp"></P></FONT></FONT><FONT size=2>
<P><%</FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2>=</FONT></FONT><FONT size=2>Resources.</FONT><FONT color=#2b91af size=2><FONT color=#2b91af size=2>DealerFinance</FONT></FONT><FONT size=2>.FlashDate%></P>
<P></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2></</FONT></FONT><FONT color=#a31515 size=2><FONT color=#a31515 size=2>td</FONT></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2>></P></FONT></FONT><FONT size=2>
<P></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2><</FONT></FONT><FONT color=#a31515 size=2><FONT color=#a31515 size=2>td</FONT></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2>></P></FONT></FONT><FONT size=2>
<P></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2><</FONT></FONT><FONT color=#a31515 size=2><FONT color=#a31515 size=2>asp</FONT></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2>:</FONT></FONT><FONT color=#a31515 size=2><FONT color=#a31515 size=2>Label</FONT></FONT><FONT size=2> </FONT><FONT color=#ff0000 size=2><FONT color=#ff0000 size=2>ID</FONT></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2>="Label2"</FONT></FONT><FONT size=2> </FONT><FONT color=#ff0000 size=2><FONT color=#ff0000 size=2>runat</FONT></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2>="server"</FONT></FONT><FONT size=2> </FONT><FONT color=#ff0000 size=2><FONT color=#ff0000 size=2>SkinID</FONT></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2>="DisplayNormal"></FONT></FONT><FONT size=2>Sai Baba</FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2></</FONT></FONT><FONT color=#a31515 size=2><FONT color=#a31515 size=2>asp</FONT></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2>:</FONT></FONT><FONT color=#a31515 size=2><FONT color=#a31515 size=2>Label</FONT></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2>></P></FONT></FONT><FONT size=2>
<P></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2></</FONT></FONT><FONT color=#a31515 size=2><FONT color=#a31515 size=2>td</FONT></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2>></P></FONT></FONT><FONT size=2>
<P></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2></</FONT></FONT><FONT color=#a31515 size=2><FONT color=#a31515 size=2>tr</FONT></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2>></P></FONT></FONT><FONT size=2>
<P></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2><</FONT></FONT><FONT color=#a31515 size=2><FONT color=#a31515 size=2>tr</FONT></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2>></P></FONT></FONT><FONT size=2>
<P></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2><</FONT></FONT><FONT color=#a31515 size=2><FONT color=#a31515 size=2>td</FONT></FONT><FONT size=2> </FONT><FONT color=#ff0000 size=2><FONT color=#ff0000 size=2>align</FONT></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2>="right"</FONT></FONT><FONT size=2> </FONT><FONT color=#ff0000 size=2><FONT color=#ff0000 size=2>nowrap</FONT></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2>="nowrap"</FONT></FONT><FONT size=2> </FONT><FONT color=#ff0000 size=2><FONT color=#ff0000 size=2>class</FONT></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2>="labelDisp"></P></FONT></FONT><FONT size=2>
<P><%</FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2>=</FONT></FONT><FONT size=2>Resources.</FONT><FONT color=#2b91af size=2><FONT color=#2b91af size=2>DealerFinance</FONT></FONT><FONT size=2>.FlashDate%></P>
<P></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2></</FONT></FONT><FONT color=#a31515 size=2><FONT color=#a31515 size=2>td</FONT></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2>></P></FONT></FONT><FONT size=2>
<P></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2><</FONT></FONT><FONT color=#a31515 size=2><FONT color=#a31515 size=2>td</FONT></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2>></P></FONT></FONT><FONT size=2>
<P></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2><</FONT></FONT><FONT color=#a31515 size=2><FONT color=#a31515 size=2>asp</FONT></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2>:</FONT></FONT><FONT color=#a31515 size=2><FONT color=#a31515 size=2>Label</FONT></FONT><FONT size=2> </FONT><FONT color=#ff0000 size=2><FONT color=#ff0000 size=2>ID</FONT></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2>="Label9"</FONT></FONT><FONT size=2> </FONT><FONT color=#ff0000 size=2><FONT color=#ff0000 size=2>runat</FONT></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2>="server"</FONT></FONT><FONT size=2> </FONT><FONT color=#ff0000 size=2><FONT color=#ff0000 size=2>SkinID</FONT></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2>="DisplayNormal"></FONT></FONT><FONT size=2>Sai Baba</FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2></</FONT></FONT><FONT color=#a31515 size=2><FONT color=#a31515 size=2>asp</FONT></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2>:</FONT></FONT><FONT color=#a31515 size=2><FONT color=#a31515 size=2>Label</FONT></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2>></P></FONT></FONT><FONT size=2>
<P></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2></</FONT></FONT><FONT color=#a31515 size=2><FONT color=#a31515 size=2>td</FONT></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2>></P></FONT></FONT><FONT size=2>
<P></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2></</FONT></FONT><FONT color=#a31515 size=2><FONT color=#a31515 size=2>tr</FONT></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2>></P></FONT></FONT><FONT size=2>
<P></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2><</FONT></FONT><FONT color=#a31515 size=2><FONT color=#a31515 size=2>tr</FONT></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2>></P></FONT></FONT><FONT size=2>
<P></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2><</FONT></FONT><FONT color=#a31515 size=2><FONT color=#a31515 size=2>td</FONT></FONT><FONT size=2> </FONT><FONT color=#ff0000 size=2><FONT color=#ff0000 size=2>align</FONT></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2>="right"</FONT></FONT><FONT size=2> </FONT><FONT color=#ff0000 size=2><FONT color=#ff0000 size=2>nowrap</FONT></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2>="nowrap"</FONT></FONT><FONT size=2> </FONT><FONT color=#ff0000 size=2><FONT color=#ff0000 size=2>class</FONT></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2>="labelDisp"></P></FONT></FONT><FONT size=2>
<P><%</FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2>=</FONT></FONT><FONT size=2>Resources.</FONT><FONT color=#2b91af size=2><FONT color=#2b91af size=2>DealerFinance</FONT></FONT><FONT size=2>.FlashDate%></P>
<P></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2></</FONT></FONT><FONT color=#a31515 size=2><FONT color=#a31515 size=2>td</FONT></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2>></P></FONT></FONT><FONT size=2>
<P></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2><</FONT></FONT><FONT color=#a31515 size=2><FONT color=#a31515 size=2>td</FONT></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2>></P></FONT></FONT><FONT size=2>
<P></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2><</FONT></FONT><FONT color=#a31515 size=2><FONT color=#a31515 size=2>asp</FONT></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2>:</FONT></FONT><FONT color=#a31515 size=2><FONT color=#a31515 size=2>Label</FONT></FONT><FONT size=2> </FONT><FONT color=#ff0000 size=2><FONT color=#ff0000 size=2>ID</FONT></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2>="Label10"</FONT></FONT><FONT size=2> </FONT><FONT color=#ff0000 size=2><FONT color=#ff0000 size=2>runat</FONT></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2>="server"</FONT></FONT><FONT size=2> </FONT><FONT color=#ff0000 size=2><FONT color=#ff0000 size=2>SkinID</FONT></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2>="DisplayNormal"></FONT></FONT><FONT size=2>Sai Baba</FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2></</FONT></FONT><FONT color=#a31515 size=2><FONT color=#a31515 size=2>asp</FONT></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2>:</FONT></FONT><FONT color=#a31515 size=2><FONT color=#a31515 size=2>Label</FONT></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2>></P></FONT></FONT><FONT size=2>
<P></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2></</FONT></FONT><FONT color=#a31515 size=2><FONT color=#a31515 size=2>td</FONT></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2>></P></FONT></FONT><FONT size=2>
<P></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2></</FONT></FONT><FONT color=#a31515 size=2><FONT color=#a31515 size=2>tr</FONT></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2>></P></FONT></FONT><FONT size=2>
<P></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2></</FONT></FONT><FONT color=#a31515 size=2><FONT color=#a31515 size=2>table</FONT></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2>></P></FONT></FONT><FONT size=2>
<P></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2></</FONT></FONT><FONT color=#a31515 size=2><FONT color=#a31515 size=2>td</FONT></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2>></P></FONT></FONT><FONT size=2>
<P></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2></</FONT></FONT><FONT color=#a31515 size=2><FONT color=#a31515 size=2>tr</FONT></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2>></P>
<P></</FONT></FONT><FONT color=#a31515 size=2><FONT color=#a31515 size=2>table</FONT></FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2>></P></FONT></FONT>
Code Behind:
using
System;
using
System.Collections;
using
System.Configuration;
using
System.Data;
using
System.Linq;
using
System.Web;
using
System.Web.Security;
using
System.Web.UI;
using
System.Web.UI.HtmlControls;
using
System.Web.UI.WebControls;
using
System.Web.UI.WebControls.WebParts;
using
System.Xml.Linq;
using
Telerik.Web.UI;
using
System.Data.SqlClient;
public
partial class Dealer_Notes : System.Web.UI.UserControl
{
protected void Page_Load(object sender, EventArgs e)
{
if (!IsPostBack)
{
}
}
protected void RadGrid1_NeedDataSource(object source, Telerik.Web.UI.GridNeedDataSourceEventArgs e)
{
grdNotes.DataSource = BindGrid();
}
protected void RadAjaxManager1_AjaxRequest(object sender, AjaxRequestEventArgs e)
{
if (e.Argument == "Rebind")
{
grdNotes.MasterTableView.SortExpressions.Clear();
grdNotes.MasterTableView.GroupByExpressions.Clear();
grdNotes.DataSource = BindGrid();
grdNotes.Rebind();
}
}
protected void RadGrid1_ItemCommand(object source, Telerik.Web.UI.GridCommandEventArgs e)
{
if (e.CommandName == "Select")
{
GridDataItem dataItem = (GridDataItem)e.Item;
string strTxt = dataItem.GetDataKeyValue("ROW_ID").ToString();
string rowID = dataItem.GetDataKeyValue("DEALER_NUM").ToString();
}
}
private DataTable BindGrid()
{
string searchCondition = "";
string sql = "";
//grdDealerList.DataSource = null;
DealSearchFields dealerSeachFieldsObj = (DealSearchFields)Session["DealerSearchFields"];
if (dealerSeachFieldsObj != null)
{
searchCondition = dealerSeachFieldsObj.DealerNumber;
}
else
{
searchCondition =
"";
}
if (searchCondition.Length > 0)
{
sql =
"SELECT ROW_ID ,DEALER_ID ,AREA, TYPE, STATUS, NOTES,START_DT,END_DT,DURATION FROM KF_NOTES_DL where DEALER_ID = '" + searchCondition + "%' order by START_DT";
}
else
{
sql =
"SELECT ROW_ID ,DEALER_ID ,AREA, TYPE, STATUS, NOTES,START_DT,END_DT,DURATION FROM KF_NOTES_DL order by START_DT";
}
SqlDataAdapter adapter = new SqlDataAdapter(sql,
ConfigurationManager.ConnectionStrings["KC_DealerFinanceConnectionString"].ConnectionString);
DataTable dt = new DataTable();
adapter.Fill(dt);
return dt;
}
public DataTable NotesTable
{
get
{
return BindGrid();
}
set { }
}
public RadGrid NotesGrid
{
get
{
return grdNotes;
}
set
{
grdNotes =
value;
}
}
}
I’m in the process of converting our web application from RadControls for ASP.NET to the new RadControls for ASP.NET AJAX. I have encountered a scenario that does not seem to work with the new AJAX controls but had worked previously.
Basically, there is a page with a grid control that allows editing using a user control. The user control contains a RadWindow control and some javascript to open the RadWindow. There is a button on the user control that is used to execute the script to open the RadWindow. When the grid is in edit mode and the button is clicked to open the RadWindow, the following JavaScript error is thrown:
“Microsoft JScript runtime error: Object expected”
If I try and debug the error, the following message is provided.
“There is not source code available at the current location.”
It seems like the RadWindow control and the javascript within the user control are ignored when the user control is rendered on the page.
Any help in resolving the above issue would be greatly appreciated.
Thanks in advance,
Tony
protected void grdTemplate_SelectedIndexChanged(object sender, EventArgs e)
{
if (grdTemplate.SelectedValue is int)
{
this.Presenter.Edit((int)grdTemplate.SelectedValue);
ClientScript.RegisterStartupScript(this.GetType(), "edit", "document.location = '#Edit';", true);
}
}
Thinking that after postback, the location would be set to the #Edit anchor by javascript. I don't see any evidence of this being in the page source after postback.
Anybody else have any ideas I might try?