Telerik Forums
UI for ASP.NET AJAX Forum
2 answers
138 views

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);    
 

Now, how do I get the grid to rebind on the parent page?
Mike
Top achievements
Rank 1
 answered on 13 Sep 2008
0 answers
159 views
Hi,

I have an aspx (+ grid ) which pops up a radwindow, which uses a button and clientclick script   which calls

RefreshParentPage() )..courtesy of Telerik ..thanks guys
(which uses function GetRadWindow()   to refresh the parent

to unload and refresh the aspx page...Works Fine.

BUT...this RadWindow dialog, itself has "radwindow popups"...
AND these do not have buttons to fire a similar client side event, but require that when the RadWindow top min/max/pin/exit strip's exit button is clicked, ...the parent radwindow should refresh.
How do I do this please?
(I have tried the body onunload event but that closed both dialog windows.)
(and I have ensured that both the aspx page and it's RadWindow Manager and the RadWindow's RadWindow manager and the loaded dialogs have different id's...in case that may make a difference

TIA
Neal
Neal
Top achievements
Rank 1
 asked on 13 Sep 2008
0 answers
176 views
Hi,

        I created radtrabstrip with tabs and associated  RadPageView for each tab. Each radpageview is attached to user control. It is working fine for the first tab. When i click on different tabs it is dispying the first page user control. Can you please help me how we can refresh the user control?

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
{

}
}
}


Notes User Control:



<%

@ 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" /> -->

 

&nbsp;

 

</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 " /> &nbsp;

 

</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;

}

}

}



 

Ravi Prasad Potturi
Top achievements
Rank 1
 asked on 13 Sep 2008
0 answers
137 views
Hello,
I want to use RadUpload like this link

http://demos.telerik.com/ASPNET/Prometheus/Upload/Examples/AdditionalFields/DefaultCS.aspx
but i want only one text box that should appear after the radUpload File Choose in the same row.$0$0It will be the sequence
RadUpload File choose > additional textBox > Remove botton
it should be in one row.

i have tried so much to do that but failed.
how can i do that.

Thanks.
zeshan
Top achievements
Rank 1
 asked on 13 Sep 2008
4 answers
201 views

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

tlp
Top achievements
Rank 1
 answered on 12 Sep 2008
2 answers
109 views
We have in our master page a setup like this:

<a id="#SearchResults>
<asp:ContentPlaceHolder id="cphSearchResults" runat="server"/>

<a id="#Edit">
<asp:ContentPlaceHolder id="cphEdit" runat="server"/>

Then, in each page in our application, we put a radgrid in the search results place holder, and an edit control in the other.  When we click a row in the search results grid, we invoke a process to look up that item, populate the edit control, and make the edit control visible.

What I'm trying to accomplish is to position the browser at my #Edit anchor after this postback, so the user is positioned right at the edit control.

No luck so far, I've tried several variations of this:

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?

golddog
Top achievements
Rank 1
 answered on 12 Sep 2008
0 answers
82 views
Hi All, i´m trying to bind tabs from objects
The Second level tabs is loaded from a object collection that belongs to other object: 1st label-->Authors  and 2nd label-->Books (from an author)

I implemented a similar class to Declarative DataSources's example, and added the following code that gets the data (RadTabScript DataSocurce).

 List<SiteDataItem> siteData = new List<SiteDataItem>();
foreach (Author myauthor in GetAllAuthorsl()) {
   siteData.Add(new SiteDataItem(myauthor.Identity, null, myauthor.Name));
    foreach (Book myBook in GetAllBooks(myauthor.Identity))
        siteData.Add(new SiteDataItem myBook.Identity,myauthor.Identity, myBook.Name));
}

RadTabStrip properties are:
DataTextField = "Text" DataFieldID="ID" DataFieldParentID="ParentID"

The problem here is that all tabs are at the same level and the ID is not being set. 


any help would be grateful!
Alejandra
Top achievements
Rank 1
 asked on 12 Sep 2008
2 answers
368 views
I saw your CRM example and really like a couple features.
http://www.telerik.com/crmsample/

Can you tell me how you are doing the tooltip and the modal popup for the edit?

I am looking for the source code on the site and don't see it and I am not seeing in as an example in the Grid Demos.

Thanks in advance!
Mike
Top achievements
Rank 1
 answered on 12 Sep 2008
2 answers
158 views
I'm using pivot table(display the data in a reverse order)to dispay the data and I dont want to display header on this grid. How do I remove the header panel from the grid.

Thanks!
jo
Top achievements
Rank 1
 answered on 12 Sep 2008
3 answers
173 views
Hello,

We are using the exact scenario as described in this knowledge base article: http://www.telerik.com/support/kb/article/b454K-tgd-b454T-a.aspx using RadControls for ASP.NET AJAX Q2 2008.

Inside one of the UserControls, we have a RadUpload control. We also have a button that should perform the upload.

The button is not handled by the RadAjaxManager in the Page and also not handled in the RadAjaxManagerProxy in the UserControl. Yet it still does not perform a real postback so the upload will not work.

It looks like all the controls inside the UserControl are automatically ajaxified.

How can we get the upload control to work?
Daniel
Telerik team
 answered on 12 Sep 2008
Narrow your results
Selected tags
Tags
+? more
Top users last month
Shiori
Top achievements
Rank 2
Iron
Tien
Top achievements
Rank 1
Iron
Robert
Top achievements
Rank 1
Rob
Top achievements
Rank 4
Bronze
Bronze
Iron
Geoff
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Top users last month
Shiori
Top achievements
Rank 2
Iron
Tien
Top achievements
Rank 1
Iron
Robert
Top achievements
Rank 1
Rob
Top achievements
Rank 4
Bronze
Bronze
Iron
Geoff
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?