@{
Layout = null;
}
@foreach(string s in ViewBag.t) {
<p>@s</p>
using System;
using System.Web.Mvc;
using System.Collections.Generic;
using System.Linq;
namespace HelloWorldMvcApp
{
public class HomeController : Controller
public ActionResult Index()
string bbmin = "AABBMin -7.60293600 -6.90761700 -3.6202900";
string[] arr = bbmin.Split(' ');
ViewBag.t = arr;
return View();