Can we reach 1000 likes on this video. Share this video among your friends and Give your suggestions on which topic I should make videos. Thanks
@sadenlav5 жыл бұрын
How to use @foreach from two models? Example: we have two function FunctionGetParamenter and FunctionSelectAll from SQL Server to display data into the only table
@mehmetaltuntas4227 жыл бұрын
Your explaining is most beatifull.Thanks!
@aapkanigam7 жыл бұрын
+MEHMET ALTUNTAŞ thanks keep sharing if you find this useful
@devdattrai58587 жыл бұрын
Thank you very much..its important question of MVC.
@IrizLegaspi2 жыл бұрын
How can you hide the tope menu link while on registration or when your only general user?
@pankajgour21137 жыл бұрын
Thank you very much awesome videos!!!!! keep it up
@rajeshyada67145 жыл бұрын
thq for vedios , We r going to use ViewModels to achieve same.
@donaghyamachi92495 жыл бұрын
Nice tip, the other option would be... using viewbag for each model(a & b)
@vinayakjambhale59856 жыл бұрын
Sir i got an error of- foreach statement cannot operate on variables of type "MyViewModel" because "MyViewModel" does not contain a public definition for 'GetEnumerator'... When i try to display single & List of data in same view...Please Help me...
@francomacias89045 жыл бұрын
Very Nice, Thanks a Lot!!!
@zoeliu26513 жыл бұрын
Helpful!
@kaushikbhadani42277 жыл бұрын
very very nice Ashish.
@Yogeshghonate6 жыл бұрын
Ashish how to apply required validation to the multiple model view
@sanketdholu6494 жыл бұрын
hello sir i m facing error Under -- (m=> m.name) error is--- "an expression tree may not contain a dynamic operation " please help....
@WildZesty5 жыл бұрын
Thank you Ashish!
@cavidhummatov44315 жыл бұрын
quite helpfull. Thanks alot
@lifet48008 жыл бұрын
can we use expandoobjects without creating separate viewmodel.
@aapkanigam8 жыл бұрын
+LifeT ya there are several possibility..
@lifet48008 жыл бұрын
can u please explain...how it can be achieved
@icccricket17418 жыл бұрын
sir how to achieve editable table with multiple rows and post the data of multiple rows to a multiple tables in SQL server using MVC
@aapkanigam8 жыл бұрын
+Virender Mehta with Jquery you can get the value of table . And with $.each fuction you can get value of each row. For inserting data into multiple tables please watch part 14
@aapkanigam8 жыл бұрын
+Virender Mehta watch part 13 for insert data into multiple tables
@achalprajapati11926 жыл бұрын
Nice video sir, If i m insert data same multiple model then how it is possible ?
@sandeepnath48126 жыл бұрын
ViewModel,Dynamic model,Tuple
@benjaminotero19245 жыл бұрын
Thank you very much ! ! !
@balasenk6 жыл бұрын
Ashish, This is great tutorial. and if i need to pull data from sql for Dropdownlist what should i do.
@aapkanigam6 жыл бұрын
+balasubramanian senthilkumar Thanks..part 36 will help you definitely
@dotNet65 жыл бұрын
Why create the list of model c???
@marioazulay83907 жыл бұрын
THANK YOU!!!!!
@RiderInHell4 жыл бұрын
Oh, ok. So, basically use a global model that encapsulates the models you need for a page. What I have been doing, basically. Just checking it there was a better way but it's more of the same.
@narendarsingh46726 жыл бұрын
great sir
@amamsharma37210 ай бұрын
What is answer of questions please provide a summary in end
@adishjain30737 жыл бұрын
How to pass Data from one view to another View?
@aapkanigam7 жыл бұрын
+Adish Jain use tempData to persist your data from successive request using temp.keep method. Watch part 5
@sandeepnath48126 жыл бұрын
You can use "Session" object for this purpose. Ofcourse, you have other ways too like ViewData, TempData and ViewBag. But they are (ViewData and ViewBag) available only for the next request. TempData will avail still you read (if you want you can extend it's lifetime).