| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 573 人关注过本帖
标题:[求助]convertstring”在命名空间“nsASPNETCase”中不明确。
取消只看楼主 加入收藏
tm_ma
Rank: 1
来 自:中南林
等 级:新手上路
帖 子:147
专家分:0
注 册:2007-3-20
收藏
 问题点数:0 回复次数:1 
[求助]convertstring”在命名空间“nsASPNETCase”中不明确。

老是出错,帮忙看看
____________________________________
Imports System
Imports Microsoft.VisualBasic
Namespace nsASPNETCase1

Public Class Cstring
Public version As String = "2.0"
Public Overridable Function HTMLencode(ByVal strinput As String) As String
strinput = Replace(strinput, "&", "&amp")
strinput = Replace(strinput, "<", "&lt")
strinput = Replace(strinput, ">", "&gt")
strinput = Replace(strinput, Chr(10), "<Br>")
strinput = Replace(strinput, Chr(32), "&nbsp;")
strinput = Replace(strinput, Chr(9), "&nbsp;&nbsp;&nbsp;&nbsp:") '替换制表符
HTMLencode = strinput
End Function

End Class
End Namespace
____________________________________________________________________
<%@ Page Language="VB" validaterequest="false" %>
<%@ Import Namespace ="nsaspnetcase1" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<script runat="server">
Sub enter_click(ByVal sender As Object, ByVal e As EventArgs)
Dim strconvert As New Cstring()
message.Text = strconvert.HTMLencode(txt.Text)

End Sub
</script>

<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>无标题页</title>
</head>
<body>
<form id="form1" runat="server">
<div>
<asp:TextBox id="txt" TextMode ="multiLine" Columns ="40" Rows ="4" runat ="server" />
<br />
<asp:Button ID="enter" OnClick ="enter_click" Text ="提交" runat ="server" />
<br />
<asp:Label ID="message" runat ="server" />
</div>
</form>
</body>
</html>

[此贴子已经被作者于2007-5-25 18:25:26编辑过]

搜索更多相关主题的帖子: nsASPNETCase 空间 
2007-05-25 17:40
tm_ma
Rank: 1
来 自:中南林
等 级:新手上路
帖 子:147
专家分:0
注 册:2007-3-20
收藏
得分:0 
解决了,把cstring该成cstring123就好了.怪

每个人都他妈的那么开心,为什么我就不行!
2007-05-25 18:26
快速回复:[求助]convertstring”在命名空间“nsASPNETCase”中不明确。
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.020706 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved