设为首页收藏本站

新微赢技术网

 找回密码
 注册
搜索
热搜: 回贴
查看: 214|回复: 3
打印 上一主题 下一主题

结合MS AJAX将资源文件编译到动态链接库

[复制链接]
跳转到指定楼层
1#
发表于 2009-3-16 14:22:24 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式
一、创建类库项目LocalizingScriptResources。
二、添加System.Web 和 System.Web.Extensions命名控件引用。
三、添加一个Jscript文件。
四、将如下代码加入到js文件中:
function CheckAnswer()
{
var firstInt = $get('firstNumber').innerText;
var secondInt = $get('secondNumber').innerText;
var userAnswer = $get('userAnswer');
if (parseInt(firstInt)+parseInt(secondInt) ==userAnswer.value)
{
alert(Answer.Correct);
return true;
}
else
{
alert(Answer.Incorrect);
return false;
}
}
五、右键js文件的属性,在高级里将“生成操作”设置成“嵌入的资源”。
六、添加类ClientVerification代码如下:
using System;
using System.Collections.Generic;
using System.Text;
using System.Web.UI;
using System.Web.UI.HtmlControls;
using System.Web.UI.WebControls;

using System.Resources;
namespace LocalizingScriptResources
{
public class ClientVerification : Control
{
private Button _button;
private Label _firstLabel;
private Label _secondLabel;
private TextBox _answer;
private int _firstInt;
2#
发表于 2010-1-21 15:05:03 | 只看该作者
那个贴子 让它沉下去吧! 不要啦
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 注册

本版积分规则

申请友链|小黑屋|最新主题|手机版|新微赢技术网 ( 苏ICP备08020429号 )  

GMT+8, 2024-11-18 17:27 , Processed in 0.119462 second(s), 10 queries , Gzip On, Memcache On.

Powered by xuexi

© 2001-2013 HaiAn.Com.Cn Inc. 寰耽

快速回复 返回顶部 返回列表