2
Answers

Setting up mysql for use on a local area network

patrick

patrick

15y
3.2k
1
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
Mahesh Bodepudi

Mahesh Bodepudi

NA 90 14.3k 9y
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
Manas Mohapatra

Manas Mohapatra

NA 29.3k 3.3m 9y
How you are getting data from Controller's action: AJAX or direct call to action.
 
Provide some code snippet.