无忧上挂了简历,让个外企的hr约好面试,今天刚面完,整理出来给大家看看。难度不是很大,基本就是Asp.net Mvc 用到的东西,没有问数据库方面的。
background-color: #000000;
background-image: url(./img.png);
background-repeat: no-repeat;
background-attachment: fixed;
background-position: right top;
margin-left: 10px;
margin-right: 10px;
margin-top: 5px;
margin-bottom: 5px;
---> background:##000000 url(./img.png) no-repeat fixed right top;margin:5px 10px;
<div style=”width:100px; float:left;” class=”exam”></div>
.exam
{
}
--> .exam{pozistion:relative;left:50%;top:50%}
$("button").disable();//以为有现成的,好久没做前端的 真记不清了
被问有这个方法吗? 我就又写了$("button").attr("disabled","disabled"); 失效当然还有很多方法。
ViewResult表示HTML的页面内容 EmptyResult表示空白的页面内容 RedirectResult表示定位到另外一个URL JsonResult表示可以运用到AJAX程序中JSON结果 JavaScriptResult表示一个JavaScript对象 ContentResult表示一个文本内容 FileContentResult表示一个可以下载的、二进制内容的文件 FilePathResult表示一个可以下载的、指定路径的文件 FileStreamResult表示一个可以下载的、流式的文件
当时只回答了四个常用的 Json Content View(partview)
static void Main(string[] args)
{
try
{
new Obj1();
using (new Obj1())
{
throw new Exception();
}
}
catch
{ }
Console.Read();
} public class Obj1:IDisposable
{
static Obj1()
{
Console.WriteLine("");
} public void Dispose()
{
Console.WriteLine("");
}
}
回答了“12” 问为什么,说第一次New的时候输出1 using结束输出“2” 结果确实是“12” 不知道解释的对不对。
11.How to optimize the following code?
string b="a ="+ a +"\n b="+b+"\n c= "+c ;
不怕丑的说,当时真没看懂optimize这个单词,僵持了一会,不知道要干嘛,瞧瞧有道了下,才想起用StringBuilder .... 汗。
12. What is the result when serializing the following "arry" variable to Json ?please write out .
public class Obj1
{
public int Id { get; set; }
public string Name { get; set; }
} private Obj1[] arry = new Obj1[]
{
new Obj1(){Id=,Name = "Bob"},
new Obj1(){Id=,Name = "Leo"}
};
就是换成Json -->[{"ID":4,"Name":"Bob"},{"ID":2,"Name":"Leo"}]
basic skill in frontend(HTML/CSS) development.
Don't have enough project experience
know ASP.NET MVC
basic experience in .NET,but don't have full understanding