将div的内容保存在不同位置
我左边有一些名称(div),右边有 3 个方块,它们是 div(nr1、nr2、nr3)。 我可以将三个名字拖到右侧的方块上并制作前 3 个。所有这些都是使用 jquery 完成的。
我如何使用asp.net将拖动到方块上的位置和名称保存在sql数据库中。
I have on the left some names(divs) and on the right 3 squares which are divs (nr1, nr2, nr3).
I can drag the three names on the right squares and make a top 3. All this is done with jquery.
How can i save in an sql database with asp.net the positions and names which were dragged on the squares.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我认为当您单击“保存”按钮时,会将子 div 放入容器 div 中。然后像父子关系一样保存它。获取 chid div 的位置(左侧和顶部)(相对于父级的位置)并保存,
表记录可能看起来像
ChildId ParentId ChildLeftPosition ChildTopPosition
-------- -------- -------------- --- ------------------
当你渲染回来时,读取这些值并定位它
I think when you click the save button get the child divs inside the container div. Then save it like a parent-child relationship.Get the position (left and top) of the chid div (relative position to parent) and save that too
the table records may look like
ChildId ParentId ChildLeftPosition ChildTopPosition
-------- -------- ----------------- ------------------
and when u render back, read these values and position it
这是针对客户端的,现在是针对服务器端的
myNames["Names"] 应该是(如果我是对的)字符串数组的数组。
如果您使用的是 asp.net 4.0,这在服务器端不起作用,我建议您阅读这篇关于 Json 反序列化的一些很酷工具的文章:Hanselman 博客的
That's for the client Side, for the server side now
The myNames["Names"] should be (if I'm right) an array of array of strings.
If that does'nt work on the server side if you're using asp.net 4.0 I suggest you read this article about some cool tools for Json deserialization : Hanselman blog's