今天去了求职面试。 [英] Went on a Job Interview today.

查看:72
本文介绍了今天去了求职面试。的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我今天接受了面试......基本上,你已经有了大型机

尝试在asp.net中创建报告模块,他们需要一个

程序员具有vb.net/asp.net经验。


其中一个问题是......


如何传递数据从一种形式到另一种形式,例如,你填写一个

webform,然后转到下一个webform,然后是下一个webform,直到

你已经到了最后,然后处理所有数据。


他们使用会话变量做所有事情?我主要使用会话

varibles。所以他们可能最终得到30或40个会话变量来获得特定报告。


我个人通过URL的参数传递尽可能多的信息。并使用

会话变量主要用于设置参数,系统范围配置

参数和存储viewstate。


什么是你的对此的看法?

此外,他们转换到DB2,并学习存储的速度。
procs。但是,人们还不错。


***通过开发人员指南发送http://www.developersdex.com ***

不要只是参加USENET ......获得奖励!

I went on a job interview today... Basically, you''ve got mainframers
trying to create reports modules in asp.net, and the they need a
programmer with vb.net/asp.net experience.

One of the questions was...

How do you pass data from one form to another, example, you fill out a
webform, then go to the next webform, then the next webform, until
you''ve reached the end, then process all the data.

They use session variables for everything ? I mainly use session
varibles. So they might end up with 30 or 40 session variables for a
particular report.

I personally pass as much info via the parameters of a URL. and use
session variables for mainly setup parameters, system wide configuration
parameters and storing viewstate.

What''s your opinion on this ?
Also, they converting over to DB2, and learning the speed of stored
procs. Nice enough people, though.

*** Sent via Developersdex http://www.developersdex.com ***
Don''t just participate in USENET...get rewarded for it!

推荐答案

我使用会话变量,但也要有创意

记住你也可以在数据库中存储东西


Francisco

" Terry Williams" < TL ********** @ aol.com>在消息中写道

新闻:#Q ************** @ tk2msftngp13.phx.gbl ...
I use session variables, but be creative too
remember you can store stuff in the database too

Francisco
"Terry Williams" <tl**********@aol.com> wrote in message
news:#Q**************@tk2msftngp13.phx.gbl...
我继续今天的工作面试...基本上,你已经有了大型机'
尝试在asp.net中创建报表模块,他们需要一个具有vb.net/asp.net经验的程序员。 />
其中一个问题是......

如何将数据从一个表单传递到另一个表单,例如,您填写一个
webform,然后转到下一个webform,然后是下一个webform,直到你已经到达终点,然后处理所有数据。

他们使用会话变量来做所有事情?我主要使用会话
varibles。因此,他们最终可能会为特定报告提供30或40个会话变量。

我个人通过URL的参数传递尽可能多的信息。并使用会话变量主要用于设置参数,系统范围配置参数和存储viewstate。

您对此有何看法?

此外,他们转换到DB2,并学习存储的
procs的速度。但是,人们还不错。

***通过开发人员指南 http:// www.developersdex.com ***
不要只是参加USENET ......获得奖励!
I went on a job interview today... Basically, you''ve got mainframers
trying to create reports modules in asp.net, and the they need a
programmer with vb.net/asp.net experience.

One of the questions was...

How do you pass data from one form to another, example, you fill out a
webform, then go to the next webform, then the next webform, until
you''ve reached the end, then process all the data.

They use session variables for everything ? I mainly use session
varibles. So they might end up with 30 or 40 session variables for a
particular report.

I personally pass as much info via the parameters of a URL. and use
session variables for mainly setup parameters, system wide configuration
parameters and storing viewstate.

What''s your opinion on this ?
Also, they converting over to DB2, and learning the speed of stored
procs. Nice enough people, though.

*** Sent via Developersdex http://www.developersdex.com ***
Don''t just participate in USENET...get rewarded for it!



嘿特里,


嗯,祝你在求职面试中好运,我真的希望它能给你带来好处......

关于如何处理它的问题,这就是我要做的事。


现在,你在查询字符串中传递所有内容的方法是完全的

可以接受,现在好几天了。有些浏览器在查询字符串中有一个255

字符限制,但这些只是很少而且很远。


现在,显而易见的方法是使用post变量,agian,完全

可接受,特别是在ASP 1.0-3.0中。


缺点是安全性,如果你的安全性很容易被压缩不小心(好吧,一个受过良好教育的人是......乔吹不会想出来

可能......)但这很少是一个问题,特别是在一个内联网

环境。


但是,你不再是一个ASP 3.0程序员Terry,你的.NET类。并且

微软给了你一些非常好的工具。现在,

所有存储在会话对象中都没有错,我喜欢使用它,减少了我在放置在viewstate和其他地方的
(和变量到跟踪它们所在的位置和。

。所以当你有一个多部分表单来组织系列数据时,请使用数据集,并将该数据集存储在会话对象。那个

方式,你不是经常重新填充的东西,你只使用会话对象的一个​​区域,而且它都是一个很好的紧密的面向对象结构。


希望它有所帮助,祝你好运。


-CJ

" Terry Williams" < TL ********** @ aol.com>在消息中写道

新闻:%2 **************** @ tk2msftngp13.phx.gbl ...
Hey Terry,

Well, I wish you the best of luck with your job interview, I really hope it
works out for you...

As for your question how to handle it, here is what I would do.

Now, your approach of passing everything in the query string is perfectly
acceptable, now a days it is. There are some browsers that have a 255
character limit in the query string, but these are few and far between.

Now, the obvious way to go is to use post variables, agian, perfectly
acceptable, especially in ASP 1.0-3.0.

The downside is security, which can be easily comprimised if your not
careful (well, by an educated person that is... joe blow wont figure it out
probably...) But that is rarely a concern especially in an intranet
environment.

However, your not an ASP 3.0 programmer anymore Terry, your .NET class. And
Microsoft gave you some pretty sweet tools. Now, there is nothing wrong at
all with storing in the session object, I enjoy using it, reduces amount I
put in the viewstate and other places (and variables to keep track of and
where they are at.) So when you have a multi part form for organized series
of data, use a Dataset, and store that dataset in the session object. That
way, your not constantly repopulating things, your only using one area of
the session object, and its all in a nice tight object oriented structure.

Hope it helps and again, best of luck.

-CJ
"Terry Williams" <tl**********@aol.com> wrote in message
news:%2****************@tk2msftngp13.phx.gbl...
我去了在今天的求职面试中......基本上,你已经有了大型机试图在asp.net中创建报表模块,他们需要一个具有vb.net/asp.net经验的程序员。

其中一个问题是......

如何将数据从一个表单传递到另一个表单,例如,您填写一个
webform,然后转到下一个webform,然后是下一个webform,直到你已经到达终点,然后处理所有数据。

他们使用会话变量来做所有事情?我主要使用会话
varibles。因此,他们最终可能会为特定报告提供30或40个会话变量。

我个人通过URL的参数传递尽可能多的信息。并使用会话变量主要用于设置参数,系统范围配置参数和存储viewstate。

您对此有何看法?

此外,他们转换到DB2,并学习存储的
procs的速度。但是,人们还不错。

***通过开发人员指南 http:// www.developersdex.com ***
不要只是参加USENET ......获得奖励!
I went on a job interview today... Basically, you''ve got mainframers
trying to create reports modules in asp.net, and the they need a
programmer with vb.net/asp.net experience.

One of the questions was...

How do you pass data from one form to another, example, you fill out a
webform, then go to the next webform, then the next webform, until
you''ve reached the end, then process all the data.

They use session variables for everything ? I mainly use session
varibles. So they might end up with 30 or 40 session variables for a
particular report.

I personally pass as much info via the parameters of a URL. and use
session variables for mainly setup parameters, system wide configuration
parameters and storing viewstate.

What''s your opinion on this ?
Also, they converting over to DB2, and learning the speed of stored
procs. Nice enough people, though.

*** Sent via Developersdex http://www.developersdex.com ***
Don''t just participate in USENET...get rewarded for it!



- 我认为 - 很好的方法是为每个webform创建一个dataObject

(甚至每个webform包含另一个对象的一个​​对象)


put所有这一切都在一些(第一选择)或一个(第二)会话vars


这种方式也很容易在webforms之间移动并检查是否

用户已经在一个表单上传递以填写所有内容作为默认变量...

Dominique

Terry Williams < TL ********** @ aol.com>在消息中写道

新闻:%2 **************** @ tk2msftngp13.phx.gbl ...
an -in my opinion- nice way is to create one dataObject for each webform
(or even one object containing another object for each webform)

put all this in a few (first choice) or one (second) session vars

this way is it also very easy to move between the webforms and check if the
user already passed on one form to fill in everything as default vars...
Dominique
"Terry Williams" <tl**********@aol.com> wrote in message
news:%2****************@tk2msftngp13.phx.gbl...
我去了在今天的求职面试中......基本上,你已经有了大型机试图在asp.net中创建报表模块,他们需要一个具有vb.net/asp.net经验的程序员。

其中一个问题是......

如何将数据从一个表单传递到另一个表单,例如,您填写一个
webform,然后转到下一个webform,然后是下一个webform,直到你已经到达终点,然后处理所有数据。

他们使用会话变量来做所有事情?我主要使用会话
varibles。因此,他们最终可能会为特定报告提供30或40个会话变量。

我个人通过URL的参数传递尽可能多的信息。并使用会话变量主要用于设置参数,系统范围配置参数和存储viewstate。

您对此有何看法?

此外,他们转换到DB2,并学习存储的
procs的速度。但是,人们还不错。

***通过开发人员指南 http:// www.developersdex.com ***
不要只是参加USENET ......获得奖励!
I went on a job interview today... Basically, you''ve got mainframers
trying to create reports modules in asp.net, and the they need a
programmer with vb.net/asp.net experience.

One of the questions was...

How do you pass data from one form to another, example, you fill out a
webform, then go to the next webform, then the next webform, until
you''ve reached the end, then process all the data.

They use session variables for everything ? I mainly use session
varibles. So they might end up with 30 or 40 session variables for a
particular report.

I personally pass as much info via the parameters of a URL. and use
session variables for mainly setup parameters, system wide configuration
parameters and storing viewstate.

What''s your opinion on this ?
Also, they converting over to DB2, and learning the speed of stored
procs. Nice enough people, though.

*** Sent via Developersdex http://www.developersdex.com ***
Don''t just participate in USENET...get rewarded for it!



这篇关于今天去了求职面试。的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆