Setting up mysql for use on a local area network
I need to set up mysql for use by 3-4 computers in a local area network. I can't find a good reference on the subject. Also, it will need to be accessed through c# on these computers - this is as simple as putting the ip address in the connection string, right?
Answers (2)
0
As of now in Controller's Action method I am using the code below to set no of records per page
return View(viewModel.ToList().ToPagedList(page ?? 1, 50));
0
How you are getting data from Controller's action: AJAX or direct call to action.
Provide some code snippet.