Part 37- Search record in Asp.net mvc using Jquery and Partial View

  Рет қаралды 21,880

Technotips Ashish

Technotips Ashish

Күн бұрын

Пікірлер: 55
@cherryt6853
@cherryt6853 3 жыл бұрын
Thank u. This is one of the best way using partial view. I know this. But I don't know how to use the partial view for search functionality. Simple solution.
@lutforurc
@lutforurc 7 жыл бұрын
Almost every day I wait for your update. Thank you for the update
@aapkanigam
@aapkanigam 7 жыл бұрын
+Lutfor Rahman thanks for your love and support..keep learning and sharing..
@reidcor
@reidcor 6 жыл бұрын
Hi Ashish, great stuff! Can you plz show how to use a textbox (or ddl) with a submit button to load the list as a partial view. I want to use textbox/ddl to limit the search (for example, by state, or by city, etc.) so that the user does not ever see results that don't apply to him from a large table of records. Thx
@akshayworlikar2661
@akshayworlikar2661 7 жыл бұрын
your tutorials helping me to learn mvc, can you show how to save large file on sql server and download it from server
@Eaglessoft
@Eaglessoft 6 жыл бұрын
you never want to save a file to SQL always store it in the fileserver
@jabthill1012
@jabthill1012 5 жыл бұрын
Thanks a lot for making these videos, still very helpful today! But could you or anyone point me to the right direction? I am trying to do the exact same thing, but in a modal popup... I can make the seach methods allright, but when I click on seach, it reloads the whole page and closes the popup... Help?
@ztrathego
@ztrathego 7 жыл бұрын
Thank you so much for all your videos Ashish, they have helped me a great deal!
@aapkanigam
@aapkanigam 7 жыл бұрын
+Patrik Högberg thanks..if u find this useful then please share this among your friends
@priyankavenu1020
@priyankavenu1020 7 жыл бұрын
I need a partial view to display in a same main view.. hence, both main view and partial view should present in single screen,. is this possible,? please share the demo..
@aapkanigam
@aapkanigam 7 жыл бұрын
+priyanka venu Yes you can render partial view on any page
@MohamedIbrahim-uk7mj
@MohamedIbrahim-uk7mj 6 жыл бұрын
thanks for this amazing tutorial but please we need tutorial for master Details and put search method plz at this task thank you
@aliraza66-h1b
@aliraza66-h1b 7 жыл бұрын
asish sir it's mean when we show the data on front page through partial page.if a product have different categories how we can show from db.and sir you can also make on videos email sending and shopping cart... thanks
@aapkanigam
@aapkanigam 7 жыл бұрын
+Ali Raza ok means you want to show product category wise.
@aliraza66-h1b
@aliraza66-h1b 7 жыл бұрын
Yes Sir.and Request kindly make some videos on email sending and Shoping Cart..Thanks
@aapkanigam
@aapkanigam 7 жыл бұрын
+Ali Raza sure ! I will make as I get time
@aliraza66-h1b
@aliraza66-h1b 7 жыл бұрын
thanks
@MrZeeshanakram
@MrZeeshanakram 6 жыл бұрын
Kindly create a tutorial Master and Master Detail CRUD operation in mvc
@saurabhchauhan232
@saurabhchauhan232 7 жыл бұрын
Hi Can you upload the use of owin framework for login with custom data base tables? I do not want auto generated tables instead of I want to use owin with my existing tables. Please do this when you have some time it will be very helpful.
@aapkanigam
@aapkanigam 7 жыл бұрын
+Saurabh Chauhan sure. Thanks
@saurabhchauhan232
@saurabhchauhan232 7 жыл бұрын
I really appreciate your efforts of making this series. I have learned many things.
@aapkanigam
@aapkanigam 7 жыл бұрын
+Saurabh Chauhan keep learning and sharing
@GeminiLearning
@GeminiLearning 7 жыл бұрын
Awesome. Keep it up brother
@aapkanigam
@aapkanigam 7 жыл бұрын
+Okwaro Isaac thanks keep learning and sharing..
@umairmohsin5202
@umairmohsin5202 6 жыл бұрын
i applied what you applied but intead of viewmodel i use just employee model binding is correct but data is not displaying i receive this error. The entity or complex type 'LMSDBModel.Book' cannot be constructed in a LINQ to Entities query. hCould you please help me out. hurry Up.Please i need to submit it in my project very soon
@aapkanigam
@aapkanigam 6 жыл бұрын
Watch part 61. Where you can download complete project.
@lifet4800
@lifet4800 7 жыл бұрын
good.can u pls make a video of ajax paging in mvc
@aapkanigam
@aapkanigam 7 жыл бұрын
+LifeT sure will add into my list..
@dreamerwithcoffee
@dreamerwithcoffee 6 жыл бұрын
Thank u so much :) U really helped me.
@Luc1X
@Luc1X 6 жыл бұрын
Hey Ashish, i just implemented this search to another page instead of index. My page url is "localhost:51975/Aplicatie/CautaFilm". When i'm typing some text in the searchbox nothing is happening. The "ActionResult GetSearchRecord(string SearchText)" is in my main controller, "AplicatieController.cs". I tried to alter the url in the script, but it's not working. If i am typing in the adress bar something just like "localhost:51975/Aplicatie/GetSearchRecord?SearchText=Nerve" it's opening a blank page with correct search result from database, but it's text only on a blank page. I think i need to do something to get the search working on the following url: "localhost:51975/Aplicatie/CautaFilm/GetSearchRecord?SearchText=Nerve". Is it any chance you can help me? LE: i placed the code on index page and it's not working even there. I checked with your code and all seems good, i'm not seeing any mistake but when i am typing in the search box nothing happens. I placed a breakpoint on the db connection and if i'm manually accessing an URL like "localhost:51975/Aplicatie/GetSearchRecord?SearchText=Nerve" it's starting and when i'm pressing f10 it's going through every line, it's reading fine from db, but in pages it's just keeps the list with all the results from the beginning, it's not filtering the search by typing.
@aapkanigam
@aapkanigam 6 жыл бұрын
Why you type something then jquery keydown event is triggered where you can see the it's calling the method. $(document).ready(function () { $("#Name").keydown(function () { $("#loader").show(); var searchtext = $(this).val(); debugger $.ajax({ type: "Post", url: "/Test/GetSearchRecord?SearchText=" + searchtext, contentType: "html", success: function (response) { $("#loader").hide(); $("#employeeRow").html(response); } }) }) })
@umairmohsin5202
@umairmohsin5202 6 жыл бұрын
how to do that thing without using a partial view
@acbvdf
@acbvdf 7 жыл бұрын
Gr8 dear .....
@MRVenturaCODIGO
@MRVenturaCODIGO 6 жыл бұрын
i can not get the 2dn drop down list, i am trying from 3 weeks ago,
@aapkanigam
@aapkanigam 6 жыл бұрын
Have you tried the code from blog?you can find the link from description
@MRVenturaCODIGO
@MRVenturaCODIGO 6 жыл бұрын
@@aapkanigam , of course i tried with the blog information, and i still get the same result, the ajax is not giving nothing
@mohitgangwar1191
@mohitgangwar1191 7 жыл бұрын
Please upload the how to create login page with user detail
@aapkanigam
@aapkanigam 7 жыл бұрын
+Mohit Gangwar please watch part 28, 29
@aapkanigam
@aapkanigam 7 жыл бұрын
+Mohit Gangwar part 27 also
@mohitgangwar1191
@mohitgangwar1191 7 жыл бұрын
ok
@shwetaabhang7092
@shwetaabhang7092 7 жыл бұрын
hey can i get the source code
@aapkanigam
@aapkanigam 7 жыл бұрын
+shweta abhang code link is in the description
@aliraza66-h1b
@aliraza66-h1b 7 жыл бұрын
Asish Bro Kindlay make on video Detail pages and list pages
@aapkanigam
@aapkanigam 7 жыл бұрын
+Ali Raza I did not get your questions.can you please give more information ;what is this regarding..
@hafizullahqasemi7332
@hafizullahqasemi7332 6 жыл бұрын
thanks alot
@lutforurc
@lutforurc 7 жыл бұрын
Dear Sir, Every day I visit your site. But can not find a new tutorial. Please upload a new tutorial.
@aapkanigam
@aapkanigam 7 жыл бұрын
+Lutfor Rahman Thanks for your love and trust.. I am also seeking free time to publish new video but back to back work keeping me away from this. May be I'll be stuck up to this month. After that will definitely make video for all my lovely viewers.
@ruhulamin7532
@ruhulamin7532 7 жыл бұрын
Thank you sir
@lutforurc
@lutforurc 7 жыл бұрын
Please upload next video
@aapkanigam
@aapkanigam 7 жыл бұрын
+Lutfor Rahman sure but after this month
@lutforurc
@lutforurc 7 жыл бұрын
I got tired of looking for the next video.
Part 38- Attribute routing in asp.net mvc - A complete guide for beginners
24:00
Человек паук уже не тот
00:32
Miracle
Рет қаралды 4,1 МЛН
СКОЛЬКО ПАЛЬЦЕВ ТУТ?
00:16
Masomka
Рет қаралды 1,9 МЛН
HELP!!!
00:46
Natan por Aí
Рет қаралды 56 МЛН
Part 32- Preview Image before upload using JQuery in ASP.NET MVC
28:54
Technotips Ashish
Рет қаралды 21 М.
Google Data Center 360° Tour
8:29
Google Cloud Tech
Рет қаралды 5 МЛН
CREATE and CONNECT DATABASES in ASP.NET
18:11
tutorialsEU - C#
Рет қаралды 65 М.
Understand Clean Architecture in 7 Minutes
7:02
Amichai Mantinband
Рет қаралды 116 М.
Solving one of PostgreSQL's biggest weaknesses.
17:12
Dreams of Code
Рет қаралды 213 М.
Человек паук уже не тот
00:32
Miracle
Рет қаралды 4,1 МЛН