Hi!
I m using the below code to retrive data from table-
public void Bind_Data()
{
SqlConnection conn = new SqlConnection(ConfigurationManager.ConnectionStrings["connection_string"].ToString());
SqlCommand cmd = conn.CreateCommand();
cmd.CommandText = "Select * from DistrictData where CategoryName='" + result_txtbox.Text + "' and city='" + ddl_results.SelectedValue + "'";
cmd.CommandType = CommandType.Text;
SqlDataAdapter data_adapter = new SqlDataAdapter(cmd);
DataSet ds = new DataSet();
conn.Open();
cmd.ExecuteNonQuery();
data_adapter.Fill(ds);
repeater_1.DataSource = ds;
repeater_1.DataBind();
conn.Close();
} protected void result_btn_search_Click(object sender, EventArgs e)
{
Bind_Data();
}With this Code I m getting all the records from the table, I m using repeater to achive this. But I want to display it in the below format.
Image should be in Left side and remaining data should be in right side (Business name, Contact no and Address) should come below each other.
instead of this:

I need some thing like this.

Thanks in advance !
Keep Coding!!