Click here to Skip to main content
15,885,546 members

Comments by ubaidh sayed (Top 22 by date)

ubaidh sayed 19-Mar-13 6:55am View    
And the data that i am trying to pull is flash file.
ubaidh sayed 19-Mar-13 6:53am View    
Our client MB India would like to know if the pages from the main corporate website can be incorporated as it is on the dealership websites.

http://www.mercedes-benz.co.in/content/india/mpc/mpc_india_website/enng/home_mpc/passengercars/home/new_cars/models/b-class/w246.flash.html#_int_passengercars:home:model-navi:w246

the link above is on the corporate website for the B class which needs to be incorporated on the all dealership websites. The header and footer of the dealerships will be maintained with the content from the main site.

http://autohangar.mercedes-benzdealers.co.in/Pages03/BClass.aspx
ubaidh sayed 28-Jan-13 9:20am View    
Code is not short :)
ubaidh sayed 30-Jul-11 2:08am View    
I have tried that but nothing seems to work.
Here is my updated code.
<asp:Content ID="Content3" ContentPlaceHolderID="MainContent" runat="Server">
<asp:ScriptManager ID="MainScriptManager" runat="server" EnablePartialRendering="true" />
<asp:UpdatePanel ID="UpdatePanel1" runat="server" ChildrenAsTriggers="false" UpdateMode="Conditional">

<asp:DataList ID="dlProdocut" runat="server" RepeatColumns="3" RepeatDirection="Horizontal"
BorderColor="Black">

<asp:Table ID="Table1" runat="server" border="0" CellSpacing="0" CellPadding="0">
<asp:TableRow>
<asp:TableCell Height="10" HorizontalAlign="Center" VerticalAlign="Top">



<%--Image--%>
<asp:TableRow>
<asp:TableCell Height="150" Width="7" HorizontalAlign="left" VerticalAlign="top">
<asp:HyperLink ID="hyrProductImg" runat="server">
<img alt='<%# DataBinder.Eval(Container.DataItem,"Title")%>' src="../images/<%# DataBinder.Eval(Container.DataItem,"SmallImage") %>" border="0" width="226" height="166" />


<asp:TableCell Width="5">

<%--Title--%>
<asp:TableRow>
<asp:TableCell Height="45" Width="7" CssClass="product-name" HorizontalAlign="Center"
VerticalAlign="Top">
<%# DataBinder.Eval(Container.DataItem, "Title")%>


<%--ShortDescription--%>
<asp:TableRow>
<asp:TableCell Width="7" HorizontalAlign="Justify" VerticalAlign="Top" CssClass="testimonial-text">
<asp:Label ID="Label1" runat="server" Text='<%# DataBinder.Eval(Container.DataItem,"ShortDescription")%>'>


<%--Read More--%>
<asp:TableRow>
<asp:TableCell HorizontalAlign="Left">
<asp:HyperLink ID="lnkProductDetails" CssClass="read-more" runat="server">Read More →


<asp:TableRow>
<asp:TableCell Height="60" HorizontalAlign="Justify" VerticalAlign="Top" CssClass="testimonial-text">






<asp:Label ID="lblPage" runat="server" Text="" />
<asp:Button ID="Button1" runat="server" Text="<<" />
<asp:Button ID="btnNext" runat="server" Text=">>" OnClick="btnNext_Click" />

<Triggers>
<asp:AsyncPostBackTrigger ControlID="btnNext" EventName="Click" />
<asp:AsyncPostBackTrigger ControlID="dlProdocut" />
</Triggers>

<asp:Panel ID="BottomPager_Panel" runat="server">
ubaidh sayed 26-Jul-11 7:56am View    
Deleted
I have tried that but nothing seems to work.
Here is my updated code.
<asp:Content ID="Content3" ContentPlaceHolderID="MainContent" runat="Server">
<asp:ScriptManager ID="MainScriptManager" runat="server" EnablePartialRendering="true" />
<asp:UpdatePanel ID="UpdatePanel1" runat="server" ChildrenAsTriggers="false" UpdateMode="Conditional">
<contenttemplate>
<asp:DataList ID="dlProdocut" runat="server" RepeatColumns="3" RepeatDirection="Horizontal"
BorderColor="Black">
<itemtemplate>
<asp:Table ID="Table1" runat="server" border="0" CellSpacing="0" CellPadding="0">
<asp:TableRow>
<asp:TableCell Height="10" HorizontalAlign="Center" VerticalAlign="Top">



<%--Image--%>
<asp:TableRow>
<asp:TableCell Height="150" Width="7" HorizontalAlign="left" VerticalAlign="top">
<asp:HyperLink ID="hyrProductImg" runat="server">
<img alt='<%# DataBinder.Eval(Container.DataItem,"Title")%>' src="../images/<%# DataBinder.Eval(Container.DataItem,"SmallImage") %>" border="0" width="226" height="166" />


<asp:TableCell Width="5">  

<%--Title--%>
<asp:TableRow>
<asp:TableCell Height="45" Width="7" CssClass="product-name" HorizontalAlign="Center"
VerticalAlign="Top">
 <%# DataBinder.Eval(Container.DataItem, "Title")%>


<%--ShortDescription--%>
<asp:TableRow>
<asp:TableCell Width="7" HorizontalAlign="Justify" VerticalAlign="Top" CssClass="testimonial-text">
<asp:Label ID="Label1" runat="server" Text='<%# DataBinder.Eval(Container.DataItem,"ShortDescription")%>'>


<%--Read More--%>
<asp:TableRow>
<asp:TableCell HorizontalAlign="Left">
<asp:HyperLink ID="lnkProductDetails" CssClass="read-more" runat="server">Read More →


<asp:TableRow>
<asp:TableCell Height="60" HorizontalAlign="Justify" VerticalAlign="Top" CssClass="testimonial-text">






<asp:Label ID="lblPage" runat="server" Text="" />
<asp:Button ID="Button1" runat="server" Text="<<" />
<asp:Button ID="btnNext" runat="server" Text=">>" OnClick="btnNext_Click" />

<Triggers>
<asp:AsyncPostBackTrigger ControlID="btnNext" EventName="Click" />
<asp:AsyncPostBackTrigger ControlID="dlProdocut" />
</Triggers>

<asp:Panel ID="BottomPager_Panel" runat="server">