摘要: mysql -u root -pmysql>use mysql;mysql>select user,host from user;mysql>update user set host = '%' where user ='root';mysql>flush privileges;mysql>select user,host from user; 阅读全文
posted @ 2009-11-29 00:06 viko 阅读(137) 评论(0) 推荐(0) 编辑
摘要: 今天在做.NET程序时,需要使用到COOKIES,所以这里所一些关于.NET中的COOKIES的使用方法和注意点写下来。其实在.NET里,和ASP差不多,当然也有.NET独特的使用方法,下面先介绍一下比较简单的使用方法:给COOKIES赋值Response.Cookies["uid"].Value = "20";Response.Cookies["LoginCode"].Value = "5846... 阅读全文
posted @ 2009-03-12 18:21 viko 阅读(823) 评论(0) 推荐(0) 编辑