Hi
I have two related tables Products and Related Products
I bind FormView with Products table and ListView with Related Products
I Want to using DropDownList instead of text box for edit and insert.
this is complete application based on online sql server database
web.config
<?xml version="1.0" encoding="utf-8"?>
<!--
For more information on how to configure your ASP.NET application, please visit
http://go.microsoft.com/fwlink/?LinkId=169433
-->
<configuration>
<connectionStrings>
<add name="just_for_test_ConnectionString" connectionString="Data Source=198.71.226.6;Initial Catalog=just_for_test;User ID=just_for_test;Password=te$t_001"
providerName="System.Data.SqlClient" />
</connectionStrings>
<system.web>
<compilation debug="true" strict="fa ...
Go to the complete details ...