1

我必须搜索特定成员,因此当我在文本框中输入成员 ID 并单击搜索按钮时,我希望消息在 jgrowl 中显示为“未找到成员”(如果未找到),否则它将被重定向到memberId 页面。

现在的问题是,当单击按钮时,我在 button_click(c#) 事件中写入有关 conn estd 的详细信息,如果找到则重定向到成员页面等。但是如果找不到怎么办?即如何激起JGrowl(在asp.net 中的javascript 中)?怎么称呼?

我对必须实施它的方式感到困惑。将不胜感激任何帮助。

谢谢你

PS 实现代码片段后

string js = "$.jGrowl('Hello world!');";
Page.ClientScript.RegisterStartupScript(typeof(string), "jgrowlwarn", js, true);

来自 Gabriel 先生的 jGrowl 工作正常,但看起来像这样 ->
http://www.4shared.com/photo/vx7mKAnL/jGRowl.html
有什么建议吗?
仅供参考,我在项目中有其他 jquery 函数。

4

1 回答 1

2

当检查未能找到用户时执行此操作:这取决于您是否使用 AJAX(或不使用 ScriptManager)如果不是:

string js = "$.jGrowl('Hello world!');";
Page.ClientScript.RegisterStartupScript(typeof(string), "jgrowlwarn", js, true);

如果是这样的话:

string js = "$.jGrowl('Hello world!');";
ScriptManager.RegisterStartupScript(this, typeof(pageBase), "jgrowlwarn", js, true);
于 2010-04-26T19:23:12.353 回答