由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
DotNet版 - How to get button name? (转载)
相关主题
Button's refresh problemHelp ASP.NET!!!
C#编程求助, 500伪币酬谢, 在线等一个非常奇怪的问题
mouse overhow to let button response 'return' key?
How to make Internet Explorer Toolbar?C# problems
.Net Thread questionmono问题请教
[转载] 问一个javascript 和 .NET 的问题怎么样才能让control随window的大小变化而变化?
C# smart device questionA question about JavaScript (转载)
问题又来了.问个多语言的Windows Application问题
相关话题的讨论汇总
话题: button话题: functin话题: onclick话题: buttons话题: get
进入DotNet版参与讨论
1 (共1页)
i**p
发帖数: 902
1
【 以下文字转载自 BuildingWeb 讨论区 】
发信人: isup (No), 信区: BuildingWeb
标 题: How to get button name?
发信站: BBS 未名空间站 (Thu May 31 23:09:24 2007)
There are several buttons in one page. It always calls the fuction no matter
clicking any button. Inside this function, how can we know which button is
clicked? In other word, how can we get value "b1" or "b2"?
The buttons in the HTML are defined like these.


g***y
发帖数: 27
2
event.srcElement.id
y********o
发帖数: 2565
3
Maybe he wants this on the server side.
I think he can have a method that does the real work, and then call this met
hod in Button1_click, Button2_click, Button3_click, Button4_click. This is n
ot exactly what he wants, but it is straightforward and does not increase th
at many lines of code.
protected void doTheNastyWork()
{
// do something
}
protected void Button1_click(object sender, EventArgs e)
{
doTheNastyWork();
}
protected void Button2_click(object sender, EventArgs e)
{
doTheN
l*s
发帖数: 783
4
why bother? Just get it from sender/eventargs

met
n
th

【在 y********o 的大作中提到】
: Maybe he wants this on the server side.
: I think he can have a method that does the real work, and then call this met
: hod in Button1_click, Button2_click, Button3_click, Button4_click. This is n
: ot exactly what he wants, but it is straightforward and does not increase th
: at many lines of code.
: protected void doTheNastyWork()
: {
: // do something
: }
: protected void Button1_click(object sender, EventArgs e)

g***y
发帖数: 27
5
if the story is on server side, sender object has everything he needs. also
one function will work when you register the func with all three buttons.
y********o
发帖数: 2565
6
That's wonderful.
Understood that one function works if he registers it with the buttons. I t
hought he wanted to know which button was clicked, which of course, as you g
uys have pointed out, can be obtained from the event arguments.

also

【在 g***y 的大作中提到】
: if the story is on server side, sender object has everything he needs. also
: one function will work when you register the func with all three buttons.

1 (共1页)
进入DotNet版参与讨论
相关主题
问个多语言的Windows Application问题.Net Thread question
为什么web server自动改我的form action[转载] 问一个javascript 和 .NET 的问题
C#的new在method declaration里有和没有有啥区别么C# smart device question
javascript question: possible to know when option items are added to a 问题又来了.
Button's refresh problemHelp ASP.NET!!!
C#编程求助, 500伪币酬谢, 在线等一个非常奇怪的问题
mouse overhow to let button response 'return' key?
How to make Internet Explorer Toolbar?C# problems
相关话题的讨论汇总
话题: button话题: functin话题: onclick话题: buttons话题: get