以文本方式查看主题 - Foxtable(狐表) (http://foxtable.net/bbs/index.asp) -- 专家坐堂 (http://foxtable.net/bbs/list.asp?boardid=2) ---- [求助]代码冲突 (http://foxtable.net/bbs/dispbbs.asp?boardid=2&id=89824) |
||||
-- 作者:fox-BT -- 发布时间:2016/8/30 17:44:00 -- [求助]代码冲突
网页修改了数据,无法录入到狐表,求指点!!!
|
||||
-- 作者:Hyphen -- 发布时间:2016/8/30 18:05:00 -- 接收和发送定义的符号都不一致 狐表 Dim k As String = e.message If k.startswith("%") AndAlso k.endswith("%") Dim l() As String = k.Split("%") Dim b2 As DataRow = Tables("表A").Current.DataRow Dim c2 As String = "%" & b2 ("第一列") & "$" & b2 ("第二列")& "$" & b2 ("第三列") c2 &= "%" e.ReturnValue = c2 End If If k.startswith("#") AndAlso k.endswith("#") Dim l() As String = k.Split("#") Tables("表A").current("第一列") = l(1) Tables("表A").current("第二列") = l(2) Tables("表A").current("第三列") = l(3) End If asp网页 Protected Sub Button2_Click(sender As Object, e As System.EventArgs) Handles Button2.Click UDPCommunication("#|" & Text1.Value & "#" & Text2.Value & "#" & Text3.Value & "#" & Text4.Value & "#") End Sub 如果对aspnet没有感觉的话,还是等狐表下个版本吧,可以自动生成网页 |
||||
-- 作者:fox-BT -- 发布时间:2016/8/30 18:44:00 -- 此主题相关图片如下:`cfymh`nyny3`)thqt3h17y.png 您好,我直接使用您发来的代码,结果出现这个
|
||||
-- 作者:狐狸爸爸 -- 发布时间:2016/8/31 7:21:00 -- dim s() as string = c(0).split("%") if s.length < 3 then messagebox.show("长度不对呀,你看看内容是:" & c(0)) else text1.value = s(0) text2.value = s(1) text3.value = s(2) end if
|