青鸟初级程序员证ACCP(Aptech Certified Computer Professional)
成都创新互联公司-云计算及IDC服务提供商,涵盖公有云、IDC机房租用、达州服务器托管、等保安全、私有云建设等企业级互联网基础服务,电话联系:18982081108
初级程序员—junior programmer 程序员—visual programmer 软件工程师—software engineer
国家助学金statestipend/subsidy
泰安市科技立项technology project of TaiAn
英语四级证书cet 4 certificate
青鸟高级程序员证书senior programmer
全国电子商务大赛一等奖 the first prize of the national electronic commerce contest IT技能 IT skills
软件语言:DownLoad_Language 应用软件语言 applicationsoftware language
熟悉Java、VB、C#、C++、JavaScript、C、HTML语言Familiar with Java, VB, C #, C + +, JavaScript, C, HTML language
相关软件技术software-related technology
精通ASP.NET、JSP编程,精通MVC模式下的抽象工厂模式Proficient in asp.net, JSP programming ,Proficient in abstract factory patternt of MVC pattern
核心技术core technology
技术technology 数据库设计开发技术Database technology of design and development
运用能力sociolinguistic competence
项目管理经验Project Management Experience
项目管理技术与方法techniques and methods of Project management
开发工具developer kits
运用command
设计能力Designed capacity
熟悉C/S系统的三层架构Familiar with three tier architecture of C/S system
熟悉以ASP.NET、JSP为主的B/S架构Familiar with B/S Architecture based on the principle of asp.net, JSP
mvc是一个设计模式,和所用的语言无关。asp.net是基于C#语言或者VB.NET语言的网页设计语言。
MVC是一种设计模式。M(model)、V(view)、C(controller)。讲究在程序设计中,将各个模块最大限度的解耦(降低关联度)。通过C来连接M和V。不过我们比较常用MVC的五层模式。MVC从表面讲是三层。这个具体你可以百度的。
图有点模糊。
服务器端要有方法接收,接收的参数要看方法的定义。
Controller A里面假设有这个get Action
httppost
function get(frm as formcollection) as actionresult
dim a as string=frm("keyword")
return content(a)
end function
页面View 中
@Using FormBegin("get","A","POST")
@div
input name="keyword" type="text"/
Input type="submit" value="提交"/
end using
你在页面上点击按钮“提交”后,就会把表单的中keyword文本框的内容赋值给a.
这里我用的是MVC..前端用的VB Razor.