2016 - 2024

感恩一路有你

打开Visual Studio 2015

浏览量:2883 时间:2024-06-17 20:15:54 作者:采采

首先,我们需要打开Visual Studio 2015。在开始菜单中找到并点击打开该程序。

创建新项目

在Visual Studio的界面中,选择“文件”-gt;“新建”-gt;“项目”,弹出一个新建项目的窗口。

选择Web应用程序模板

在新建项目窗口中,选择“ Web应用程序”,然后点击确定按钮。

选择模板

在模板选择界面中,选择“WebForm模板”,点击确定按钮。

添加新建项

在解决方案资源管理器中,右键点击解决方案,选择“添加”-gt;“新建项...”来添加一个新的Web窗体。

添加Web窗体

在新建项窗口中,选择Web窗体,并设置名称,然后点击添加按钮。

在文件中添加代码

在打开的文件中,添加以下代码:

```

lt;%@ Page Language"C" AutoEventWireup"true" CodeBehind"" Inherits"WebApplication11.WebForm1" %gt;

lt;!DOCTYPE htmlgt;

lt;html xmlns""gt;

lt;head runat"server"gt;

lt;meta http-equiv"Content-Type" content"text/html; charsetutf-8" /gt;

lt;titlegt;获取自动生成的编号lt;/titlegt;

lt;script src"Scripts/jquery-1.10.2.js"gt;lt;/scriptgt;

lt;scriptgt;

function fRandomBy(under, over) {

switch (arguments.length) {

case 1: return parseInt(Math.random() * under 1);

case 2: return parseInt(Math.random() * (over - under 1) under);

default: return 0;

}

}

$(function () {

var random fRandomBy(1, 100);

alert(random);

$("lt;% %gt;").val(random);

});

lt;/scriptgt;

lt;/headgt;

lt;bodygt;

lt;form id"form1" runat"server"gt;

lt;divgt;

lt;asp:Button ID"btnRandom" runat"server" Text"获取自动生成的编号" OnClick"btnRandom_Click" /gt;

lt;/divgt;

lt;asp:HiddenField ID"hd" runat"server" /gt;

lt;/formgt;

lt;/bodygt;

lt;/htmlgt;

```

在后台文件中添加代码

在后台文件中,添加以下代码:

```c

using System;

using ;

using ;

using System.Web;

using System.Web.UI;

using System.Web.UI.WebControls;

namespace WebApplication11

{

public partial class WebForm1 :

{

protected void Page_Load(object sender, EventArgs e)

{

}

protected void btnRandom_Click(object sender, EventArgs e)

{

string random ; // 获取前台js产生的自动编号

Response.Write(random);

}

}

}

```

在浏览器中查看效果

右键点击,选择“在浏览器中打开”。点击按钮后,你就会看到生成的值在页面上显示了出来。

通过以上步骤,你就可以在C后台代码中获取由前端自动生成的编号了。希望这篇经验对你的工作和学习有所帮助!

版权声明:本文内容由互联网用户自发贡献,本站不承担相关法律责任.如有侵权/违法内容,本站将立刻删除。