寻找教程脚本#0.8 +

时间:2013-11-24 11:16:39

标签: script#

嗨,我有问题,因为我看到很多关于脚本#的过时教程。 我想学习这个。但我不能做简单的页面。这是我的剧本。 我不知道amd模式。完全正常但假设我需要设置为src ss.js. 第二个问题。在这个版本的脚本#i中,我看不到部署路径。 我需要manualy设置build到Script文件夹。

    Element x = Document.GetElementById("save");
    x.AttachEvent("onclick", delegate()
    {
        Window.Alert("Hello world except IE");
    });

此页面代码

<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="SimplePage.aspx.cs" Inherits="SimplePage.SimplePage" %>

<!DOCTYPE html>

<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
    <title></title>
</head>
<body>
    <form id="form1" runat="server">
    <div style="height: 222px">

        <div>
            <asp:Label ID="ll" runat="server" Text="Name:"></asp:Label>
            <input id="name" type="text" />
        </div>
        <div>
            <asp:Button ID="save" runat="server" Height="30px" Text="Save" />
        </div> 
        <script type="text/javascript" data-main="Scripts/HelloScriptSharp" src="Scripts/required.min.js"></script>
        <script type="text/javascript" src="Scripts/mscorlib.debug.js"></script>
    </div>
    </form>
</body>

编辑我试图从repo编译示例,但他们不会编译。我的代码编译但不工作。 好吧我编译(但有错误)。这帮助了我https://github.com/nikhilk/scriptsharp/issues/340。 编辑2.我编译但是部署脚本存在问题。所以我manualy感动了他们。 但我仍然在用我的榜样。它编译atm但事件不执行。

1 个答案:

答案 0 :(得分:3)

不幸的是,版本0.8没有更新的教程,但我将在scriptsharp wiki上开始一个入门(和更多)教程。如果您对您希望涵盖的内容有任何建议,请与我们联系。

关于部署路径问题,请检查this thread,它还会重定向您以查看check-in notes here。这里的another issue可能具有与部署路径相关的历史价值。

这是关于getting started with the development branch的文章。

编辑:

这是我在一系列教程中的第一次传递:Hello World

第二次编辑:

这是关于Building a spreadsheet in Script# (HTML5)

的第二篇文章