This is the design page that contains my datalist. Also a button within datalist which will pass data to another page on clicking.
Product.aspx
<%@ Page Title="" Language="C#" MasterPageFile="~/Home.Master" AutoEventWireup="true" CodeBehind="Products.aspx.cs" Inherits="GasBookingPortal.Products" %>
<asp:Content ID="Content1" ContentPlaceHolderID="head" runat="server">
<style type="text/css">
</style>
</asp:Content>
<asp:Content ID="Content2" ContentPlaceHolderID="ContentPlaceHolder1" runat="server">
<asp:DataList ID="DataListProduct" ItemStyle-Width="500px" ItemStyle-BorderStyle="Solid" runat="server" RepeatColumns="2" RepeatDirection="Horizontal" RepeatLayout="Table" EnableViewState="false">
<ItemStyle BorderStyle="Solid" Width="500px"></ItemStyle>
<ItemTemplate>
<table>
<tr>
<td style="border-width: 1px">
<img width="100" src='Product_Images/<%# Eval("Product_Image") %>' />
</td>
</tr>
<tr>
<td style="border-width: 1px">
Product Name
</td>
<td>
<%# Eval("Product_Name") %>
</td>
<tr>
<td style="border-width: 1px">
Product ID
</td>
<td>
<%# Eval("P_ID") %>
</td>
</tr>
</tr>
<tr>
<td style="border-width: 1px">
Product Price
</td>
<td>
<%# Eval("Product_Price") %>
</td>
</tr>
<tr>
<td style="border-width: 1px">
Product Category
</td>
<td>
<%# Eval("Product_Category") %>
</td>
</tr>
<tr>
<td style="border-width: 1px">
Product Description
</td>
<td>
<%# Eval("Product_Description") %>
</td>
</tr>
<tr>
<td style="border-width: 1px">
<asp:Button ID="btnBook" runat="server" Text="BOOK" OnClick="btnBook_Click"/>
</td>
</tr>
</table>
</ItemTemplate>
</asp:DataList>
</asp:Content>
This is the code behind. Here I want to write button click event for redirection. Also want to pass few data. I don't know what exactly I have to use for example datalist_itemcommand
event or button_click
event to redirect into another page and to pass data from datalist.
Product.aspx.cs
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Data;
using System.Data.SqlClient;
using System.Web.Configuration;
namespace GasBookingPortal
{
public partial class Products : System.Web.UI.Page
{
SqlConnection con = new SqlConnection(WebConfigurationManager.ConnectionStrings["gbpcon"].ToString());
protected void Page_Load(object sender, EventArgs e)
{
if (!IsPostBack)
{
GetDataFromTable();
BindDataToDataList();
}
}
public void GetDataFromTable()
{
SqlDataAdapter da = new SqlDataAdapter("select Product_Image,Product_Name,Product_Price,P_ID,Product_Category,Product_Description from Product", con);
DataSet ds = new DataSet();
da.Fill(ds, "table_product");
DataTable dt = ds.Tables["table_product"];
//Session["Product_Category"] = dt.Rows[0]["Product_Category"].ToString();
Session["da"] = da;
Session["dt"] = dt;
}
public void BindDataToDataList()
{
DataListProduct.DataSource = (DataTable)Session["dt"];
DataListProduct.DataBind();
}
protected void btnBook_Click(object sender, EventArgs e)
{
Response.Redirect("PaymentGateway.aspx");
}
}
}
Question: I want to send Product_ID
, Product_Name
, Product_Price
to another page Payment.aspx
whenever someone will click on BOOK button within datalist. On clicking BOOK button the Product page should redirect into Payment page alongwith few data. The button within datalist can be any button like normal button, or image button or link button. Please guide me how to do this. Trying to solve this problem since last 4 days.
Please tell me how to do this. Will be very grateful. I have tried with all possible ways from google and youtube but none of them worked.
tried...?