Chinaunix首页 | 论坛 | 博客
  • 博客访问: 148437
  • 博文数量: 35
  • 博客积分: 2386
  • 博客等级: 大尉
  • 技术积分: 380
  • 用 户 组: 普通用户
  • 注册时间: 2009-05-05 06:11
文章分类

全部博文(35)

文章存档

2011年(1)

2010年(2)

2009年(32)

分类:

2009-12-13 21:44:03

Version 0.00

# -*- coding: utf-8 -*-

# form_demo.py V0.00


# TODOS
#     1) Add more componects, such as textarea, password, radio/checkbox, etc
#     2) Redirect
#     3) Using django.newforms


from django.http import HttpResponse

def form_demo(request):
    text = u'''
            Hi, %s!

            你今年 %s 岁了!
    '
''

    output = u'''
        


        姓名:
        年龄:
        
        
    '''

    if request.POST.has_key('name') and request.POST.has_key('age'):
        name = request.POST.get('name', '')
        age = request.POST.get('age', '')
        output += text
        fillin = (name, age, name, age)
    else:
        name = ''
        age = ''
        fillin = (name, age)

    return HttpResponse(output % fillin)

    






阅读(759) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~