2
Answers

How to separate int and string values in a table?

Renjith V S

Renjith V S

11y
697
1
Hi,
     I have a  table named Itemdetails. There is a column named ItemCode it is initialised as varchar(50). So I entered both int and string values to the column. Now I need to use auto increment operation for the integer values in the column. So I need to get  max(ItemCode)+1 value. For that I need to seperate string and int values. 
Thanks 
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.