1
Answer

How to select customer name frim to dropdown list and displa

Anjali Khan

Anjali Khan

7y
285
1
Hi frnds How to display customer info from to select dropdown and display table using data base approach in mvc I have a 2 tables customer and Customer Info --------------------------------–----------------------------------- ID Name City Designation --------------------------------------------------------------------- --------------------------------------------------------------------- 2.Customer Info --------------------------------------------------------------------- ID Name ---------------------------------------------------------------------- --------------------------------------------------------------------- I need to create like this type of form using data base approach Here i want to create page where if i select name from to dropdown list and submit details should be display all details ?
Answers (1)
0
Sourabh Choubey

Sourabh Choubey

NA 186 9.3k 7y
AVINASH can i implement this in wpf webbrowser control and how??
0
Sourabh Choubey

Sourabh Choubey

NA 186 9.3k 7y
I AM USING WEBBROWSER CONTROL IN WPF .IS IT POSSIBLE TO LOAD THE HTM ELEMENT WHEN I CLICKED ON ANCHOR TAG??
0
Avinash Aher

Avinash Aher

NA 260 594.3k 7y
 $('a').click(function(e)
{      
   e.preventDefault();   
   $("#content").append('<div>Test Content</div>');
 });

OR 

 $('a').click(function(e)
{ 
   e.preventDefault(); 
   $("#content").load('test.html');
 });
and test.html have your own html which you want to load in page


0
rajendra singh

rajendra singh

NA 382 421 7y
You Want Load Html Content Of Div when you click on anchor tag if this right
 
so you can do with jquery using display none and block property 
0
Sourabh Choubey

Sourabh Choubey

NA 186 9.3k 7y
sorry it is official...i only want how to do that 
0
rajendra singh

rajendra singh

NA 382 421 7y
Can You Share Your Code