对UI设计我们应该不陌生了,自己做过几个小系统,像学生管理系统、机房收费系统等都是客户端模式,当然还有我们的牛腩新闻发布系统,这是我们第一次接触的比较正规的web系统。现在就vb.net的一些UI设计小技巧给大家做个总结,希望对我们的重构或合作都有所帮助吧。
合作的时候我是负责U层的,所以设计这里就要尽可能的想到“全心全意为人民服务”。因为用户使用
的时候就是跟页面交互嘛,...
分类:
Web程序 时间:
2015-05-06 19:49:27
阅读次数:
287
项目截图:
包截图:
项目下载连接:
http://download.csdn.net/download/cutter_point/8646589
由于写的很简单,也就不要分了,虽然我想搞1分的,但是对于初学者特别是时间紧的人来说太痛苦了,所以希望这个项目能帮到大家快速上手!!!...
分类:
Web程序 时间:
2015-04-29 21:54:33
阅读次数:
154
<?php
include_once '../stuService.class.php';
session_start();
$name = $_SESSION['admin_name'];
if($name == "")
{
header("Location: admin_login.php?error=1");
...
分类:
Web程序 时间:
2015-04-29 21:54:08
阅读次数:
235
<?php
include_once 'adminService.class.php';
include_once 'admin.class.php';
session_start();
$name = $_SESSION['admin_name'];
if($name == "")
{
header("Locat...
分类:
Web程序 时间:
2015-04-29 21:52:25
阅读次数:
168
<?php
include_once 'mysql.class.php';
include_once 'confing.php';
include_once 'stuService.class.php';
//吧用户登陆放到session中,一直检测
session_start();
$name = $_POST['name'];
$pass...
分类:
Web程序 时间:
2015-04-28 22:59:34
阅读次数:
264
学生成绩管理系统
<?php
include_once 'stuService.class.php';
include_once 'student.class.php';
session_start();
$name = $_SESSION['student_name'];
if($name == "")
...
分类:
Web程序 时间:
2015-04-28 22:59:30
阅读次数:
248
<?php
include_once 'stuService.class.php';
session_start();
$name = $_SESSION['student_name'];
if($name == "")
{
header("Location: stu_login.php?error=1");
exi...
分类:
Web程序 时间:
2015-04-28 22:58:47
阅读次数:
387
<?php
include_once '../mysql.class.php';
include_once '../confing.php';
include_once 'adminService.class.php';
//吧用户登陆放到session中,一直检测
// session_start();
if(!isset($_POST['nam...
分类:
Web程序 时间:
2015-04-28 22:57:08
阅读次数:
216