想用Code了解前端逻辑

想用Code了解前端逻辑

本文介绍了想用Code了解前端逻辑的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我在这两个标题下面有三个texbox ... 

股票名称 数量

TextBox 1 TextBox 2

Textbox 3 TextBox 4

TextBox 4 TextBox 5

在sql server中我有一个表格代码

创建表格结算

SID int主键标识(100,1)
Sname varchar (250)唯一,
数量varchar(250)



是否可以将所有texbox值带到表格并插入前面的值结束如果是,那么我只想知道逻辑..........

谢谢.......先生/女士
解决方案

i have three texbox under two heading like this...

Stock Name                        qty

TextBox 1                       TextBox 2

Textbox 3                       TextBox 4

TextBox 4                       TextBox 5

In sql server i have a table code

Create table billing
(
   SID int primary key identity(100,1)
   Sname varchar(250) unique,
   Qty varchar(250)
)


Is it possible to take all the texbox values to the table and insert as they appear in front end if yes then i just want to know the logic..........

Thank you.......sir/ma'am
解决方案


这篇关于想用Code了解前端逻辑的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-06 00:08