首页 > 开发 > 综合 > 正文

DataGrid模板列中的超级链接

2024-07-21 02:20:35
字体:
来源:转载
供稿:网友
 

webform2.aspx 文件:

<%@ page language="vb" autoeventwireup="false" codebehind="webform2.aspx.vb" inherits="house.webform2"%>
<!doctype html public "-//w3c//dtd html 4.0 transitional//en">
<html>
 <head>
  <title>webform2</title>
  <meta name="generator" content="microsoft visual studio .net 7.1">
  <meta name="code_language" content="visual basic .net 7.1">
  <meta name="vs_defaultclientscript" content="javascript">
  <meta name="vs_targetschema" content="http://schemas.microsoft.com/intellisense/ie5">
 </head>
 <body ms_positioning="gridlayout">
  <form id="form1" method="post" runat="server">
   <font face="宋体">
    <asp:datagrid id="datagrid1"
     runat="server" width="560px" height="590px" showfooter="true" autogeneratecolumns="false"
     bordercolor="#336666" borderstyle="double" borderwidth="3px" backcolor="white" cellpadding="4"
     gridlines="horizontal">
     <selecteditemstyle font-bold="true" forecolor="white" backcolor="#339966"></selecteditemstyle>
     <itemstyle forecolor="#333333" backcolor="white"></itemstyle>
     <headerstyle font-bold="true" forecolor="white" backcolor="#336666"></headerstyle>
     <footerstyle forecolor="#333333" backcolor="white"></footerstyle>
     <columns>
 
      <asp:templatecolumn>
       <itemtemplate>
        <p>
         <asp:textbox id=textbox2 runat="server" height="88px" text='<% #databinder.eval(container,"dataitem.name") %>' borderstyle="none" readonly="true">
         </asp:textbox></p>
        <p>
         <asp:hyperlink id="hyperlink2" runat="server" navigateurl='<% # "show.aspx?name=" & databinder.eval(container,"dataitem.name") %>' target="_blank">个人信息</asp:hyperlink></p>
       </itemtemplate>
      </asp:templatecolumn>
     </columns>
     <pagerstyle horizontalalign="center" forecolor="white" backcolor="#336666" mode="numericpages"></pagerstyle>
    </asp:datagrid></font>
  </form>
 </body>
</html>
       上面代码中蓝色背景是关键所在, navigateurl='<% # "show.aspx?name=" & databinder.eval(container,"dataitem.name") %>'    其中show.aspx 是超级链接所指向的页面. name是要传递的
参数名(随便取的),dataitem.name 中的name是被绑定的数据表的字段名.
     在show.aspx页面中,获取传递的参数值,ok.

同样,webform2.aspx 文件需要  webform2.aspx.vb 文件 来进行数据筛选与绑定.同
vb.net技巧之五一样.

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表