这段代码还能怎么写?

<% int loop1;
//Load NameValueCollection object.
NameValueCollection coll = Request.Form;
//Get name of all keys into a string array.
String[] arr1 = coll.AllKeys;
String[]
arr2 = coll.GetValues(arr1[0]);
Response.Write(arr2[0] + "你好!
");
arr2 = coll.GetValues(arr1[1]);
Response.Write("你喜欢的课程为" + arr2[0] + "
");
%>

你想要的实现方式是?