VerySource

 找回密码
 立即注册
搜索
热搜: 活动 交友 discuz
查看: 609|回复: 3

高手过来帮帮忙>>>>>>>

[复制链接]

4

主题

5

帖子

6.00

积分

新手上路

Rank: 1

积分
6.00
发表于 2020-1-7 01:50:01 | 显示全部楼层 |阅读模式
在datagrid中
Sub DataGrid1_ItemDataBound(sender As Object, e As DataGridItemEventArgs)
dim itemtype as listitemtype
itemtype=e.item.itemtype
  if itemtype=listitemtype.item or itemtype=listitemtype.alternatingitem then

    dim button as imagebutton
    button=ctype(e.Item.FindControl("ImageButton4"),imagebutton)
    '''''
    button.attributes.add("onclick","return confirm('que ren shan chu?');")

  end if
End Sub
可以弹出窗口
我想把
   button.attributes.add("onclick","return confirm('que ren shan chu?');")
换成
button.attributes.add("onclick","window.open('aa.aspx?id='&e.item.cells(0).text &'')")
怎么不行?

另外 我把
dim itemtype as listitemtype
itemtype=e.item.itemtype
  if itemtype=listitemtype.item or itemtype=listitemtype.alternatingitem then

    dim button as imagebutton
    button=ctype(e.Item.FindControl("ImageButton4"),imagebutton)
    '''''
    button.attributes.add("onclick","return confirm('que ren shan chu?');")

  end if
代码放到datagrid1_itemcommand事件中 怎么出不来弹出框?
这个问题怎么解决?
回复

使用道具 举报

0

主题

43

帖子

29.00

积分

新手上路

Rank: 1

积分
29.00
发表于 2020-1-7 13:48:01 | 显示全部楼层
Select Case e.Item.ItemType
            Case ListItemType.Item, ListItemType.AlternatingItem
                Dim links As Button
                links = e.Item.FindControl("delete")
                links.Attributes.Add("onclick", "return confirm('你是否确定删除?');")
        End Select
回复

使用道具 举报

0

主题

43

帖子

29.00

积分

新手上路

Rank: 1

积分
29.00
发表于 2020-1-7 13:54:02 | 显示全部楼层
window.open要有参数
回复

使用道具 举报

0

主题

9

帖子

7.00

积分

新手上路

Rank: 1

积分
7.00
发表于 2020-1-7 15:36:01 | 显示全部楼层
楼上的楼上正解!
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

Archiver|手机版|CopyRight © 2008-2023|verysource.com ( 京ICP备17048824号-1 )

快速回复 返回顶部 返回列表