摘要:
当一个文档库或文件对一个用户组只有“只读”权的时候,在别的地方读这个文件提示“拒绝访问”,但对这个用户组“参与讨论”权的时候又可以读到,后来查了是因为没有把文件发布成主版本。找到文件点这个“Publish a Major Version"即可,如下图操作完后如下:检查一下别的文件这里是不是主要版本,这样把用户是只读权的时候就能读到这个文件了。 阅读全文
摘要:
--学生表[Table_Student]{[StudentID],[Sex],[StudentName]}--科目表 [Table_Class]{[CalssID],[ClassName]}--成绩表 [Table_score]{[StudentID],[ClassID],[Score]}查出各科目中前10的学生学号和成绩select * from Table_score as CJ1 where score >= ( select Min(score) From Table_score As CJ2 Where CJ1.classid = CJ2.classid And CJ1.sco 阅读全文
摘要:
Good morning ! It is really my honor to have this opportunity for an interview, I hope i can make a good performance today. I'm confident that I can succeed. Now i will introduce myself briefly I am 26 years old,born in shandong province . I was graduated from qingdao university. my major is ele 阅读全文
摘要:
The solution is to change a single entry in web.config, by modifying the line…<SafeMode MaxControls=“200“ CallStack=“false“…to…<SafeMode MaxControls=“200“ CallStack=“true“…You will also need to set custom errors to 'Off' .<customErrors mode=“Off“/>You will no longer see the “An u 阅读全文