热门面试题与答案和在线测试
面向面试准备、在线测试、教程与实战练习的学习平台

通过聚焦学习路径、模拟测试和面试实战内容持续提升技能。

WithoutBook 将分主题面试题、在线练习测试、教程和对比指南整合到一个响应式学习空间中。

面试准备

ASP 面试题与答案

相关差异对比

JSP vs ASP

问题 71. What are the tags necessary to be present within the <FORM> tag?

-----tag: Provides input spaces (text boxes, combo boxes, radio button, etc.) on a form called fields. It has three attributes TYPE, NAME and VALUE. TYPE provides the characteristics of the field and the NAME specifies a name to the field by which it can be referred.

这有帮助吗? 添加评论 查看评论
 

问题 72. What are the collections of Application Object?

* Contents collection - contains all variables added via scripts in global.asa.
* Static collection - contains the names of all objects.

这有帮助吗? 添加评论 查看评论
 

问题 73. Explain the difference between POST and GET Method.

GET requests are string data that is visible to the end user via the URL and a limit of 2kb, POST requests have no limit on total data and the user can’t see the data in a query string.

这有帮助吗? 添加评论 查看评论
 

问题 74. Why do we use Option Explicit?

This statement force the declaration of variables in VB before using them.

这有帮助吗? 添加评论 查看评论
 

问题 75. How do you write an SQL insert statement?

insert into tablename (fieldA, fieldB, fieldC)Values(’dataA’, ‘dataB’, ‘dataC’);

这有帮助吗? 添加评论 查看评论
 

用户评价最有帮助的内容:

版权所有 © 2026,WithoutBook。