摘要:
有个字符串csdn chengxu 现我把它分开,要德到chengxu这个字符串。 我的思路如下: cstring str="csdn chengxu"; if(str.find(" ")>0) { int dd=str.find(); cstring jieguo=str.right(dd); } 还有请问字符串的mid()函数是什么意识......
摘要:
我想在非asp.net应用下(普通windows)使用类似server.urlencode()server.urldecode() 的函数,我该如何办??? httpcontext.current.server.urlencode() httpcontext.current.server.urldecode() 这两个必须在asp.net应用中才能用。普通应用中如何用呀??
......
如何做到用户在输入提示问题答案后将密码发送到他的信箱
这个步骤用asp该如何实现?谢谢!我搜索过帖子了,可是页面始终打不开,csdn为什么不能把搜索做的稳定一点呢?
NO.1 作者: tonnycncn
就是一个发EMAIL的功能嘛。可以用cdonts组件发信
NO.2 作者: muxinpp
就是一个发EMAIL的功能嘛
NO.3 作者: awaysrain
先验证一下提示问题答案通过后发信
发信的去FAQ找吧
NO.4 作者: ministrybill
set mail=server.CreateObject("CDONTS.NewMail")
mail.MailFormat=0
mail.BodyFormat=0
mail.To ="对方邮箱"
mail.from="回复邮箱"
mail.Subject="标题"
mail.Body="正文"----html
mail.Send
得到的email和密码都可以发送过去:
如正文:html="your passwords is :"&request.form("passwords")&""
NO.5 作者: Dabay
加上 set mail=nothing
摘要:
class point { public: point(); ~point(); point(float x,float y,float z); private: float m_x,m_y,m_z; public: float distance(point& p); //如果我定义为: //float distance(point p); //有什么区别? fl......