Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
Which is the best way to implement grids with common functionality for ASP.NET MVC application?
I don't want to develop it by my own, so could you please suggest best implementation, possibly with MVC support and free?
You can try the below ones..
DataTables.net
jqGrid
These are free and opensource. you just have to include the needed js files and call js methods to start using them...
Related
Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 6 years ago.
Improve this question
I am working on a new project which involves building a chat window. Normally, I would have no hesitation in using Flexbox for this project, however, a requirement of this project is that I support IE9.
I know that using tools like Modernizr can provide a fallback, but if I need to support this anyways is there much advantage of using this method?
No. Not worth it. You'll wind up doing everything twice to get the fallback support, so spend your effort doing it once, fully compatible with the oldest browser you need to support.
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
I want to make my website remember variables for each user and display them, something like local storage that I can use in c#. What is the best way to achieve this concept?
ASP.NET Session State is what you are looking for.
http://msdn.microsoft.com/en-us/library/ms972429.aspx
Or if you want permanent storage (ie they leave and come back another day)
Connecting to a SQL Server database.
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
friends
I want to add three languages to my ASP.NET website to give users language options.How could I do this.If possible, could you explain it me in details?Thanks...
You can do it by using the Resources.
And for setting/detecting current language in the views you can use cookies or the routing (which is more preferable due to it's SEO and cache friendly behavior). Here is a tutorial.
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 9 years ago.
Improve this question
I've heard that Microsoft has unleashed a windows 8 style (previously known as metro) API for ASP.NET
Does anyone knows anything about it? What is it called? Where to get it from?
Unfortunately I don't have any link about that API. I've tried searching for it but didn't get any luck.
I have found some JQuery APIs, but I'm asking about the one done by Microsoft itself. Is there any?
I was hoping that there's a simple way of creating "metro look" without having to reinvent any wheel (if there's already an API for it)
That's not called an API, that's ususally called a theme: a set of stylesheets and images.
I think you are looking for Metro UI CSS. It's got little to do with Microsoft though.
Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 10 years ago.
Improve this question
When do you actually use/create a module for Drupal 7? Because like i see it, you can pretty much use templates.
This is a called Separation of Concerns. Templates are, well, templates. They are supposed to deal with data presentation and layout. Producing, retrieving, storage and processing of data is not supposed to happen in a template. Cleanly separated features implemented in different modules ease maintenance, evolution and code re-use.
To hook into the core functionality.