5
Answers

Why do we go for ASP.Net MVC?


My project is in ASP.Net webform and we have plan to move on ASP.Net MVC.
Also Microsoft is recommending to move on MVC. on google it I can see many feature but i am not satisfied to migrate it.

i have couple of question on migrating to MVC. Is there any points you can strongly enforce to do migration?

Question:

  why do we go for MVC?
  Is there any strong reason you can say because of this you should go for MVC?
  Is there anything we could not achieve in asp.net?
  Is there any metrics will be improved in aspect of performance, response time?

Thanks
jai
Answers (5)
1
Vulpes

Vulpes

NA 98.3k 1.5m 13y
Try this:

            string s = listBox1.SelectedItem.ToString();
            string[] items = s.Split(new string[] { " " }, StringSplitOptions.RemoveEmptyEntries);
            DateTime date = DateTime.Parse(items[6] + " " + items[5]);
            DateTime time = date + DateTime.Parse(items[7]).TimeOfDay;
            string fileName = items[8];
Accepted
0
Sasikumar S

Sasikumar S

NA 29 29k 13y
List box value generate through the FTP connection from the remote system files. That files could be added into listbox with that format. i need to get the details which i was asked u...
0
Zoran Horvat

Zoran Horvat

NA 5.7k 516.3k 13y
Sasi,

What is the precise format of the string shown in the ListBox?

How do you create that string?

Zoran
0
Sasikumar S

Sasikumar S

NA 29 29k 13y
No, that length could be vary depends upon the file name, file size and its corresponding date.
0
Dorababu Meka

Dorababu Meka

NA 8.2k 1.2m 13y
Does that a constant length for the remaining fields if so

get the required by using Substring


like  listbox.selecteditem.tostring().substring(40,10) some thing like that