码迷,mamicode.com
首页 >  
搜索关键字:name    ( 94827个结果
web
<inputtype="file"name="pic">链接硬盘获得当前时间:Datedate=newDate();out.write(date.toLocaleString());http://localhost:8080/fuxi1/index.jsp浏览器访问地址在jsp页面中嵌入Java代码需要<%%>web数据传输的两总方式1,跟着地址栏走method="GET"2,通过action传..
分类:Web程序   时间:2015-06-01 00:53:22    阅读次数:146
Flask Ajax Demo
Python Code: from flask import Flask, jsonify, request, render_template app = Flask( __name__ ) @app.route( "/", methods = [ "POST", "GET" ] ) def index(): if request.method == "POST":...
分类:Web程序   时间:2015-06-01 00:50:21    阅读次数:327
现有有N个学生的数据记录,每个记录包括学号、姓名、三科成绩。 编写一个函数input,用来输入一个学生的数据记录。 编写一个函数print,打印一个学生的数据记录。 在主函数调用这两个函数,读取N条记录输入,再按要求输出。 N<100
#include using namespace std;struct student{char num[100];char name[100];int a;int b;int c;}stu[100];void input(int N){for(int i=0;i>stu[i].num>>stu[i...
分类:其他好文   时间:2015-06-01 00:43:26    阅读次数:311
js对象私有变量公有变量问题
0js对象私有变量公有变量问题5 小弟初学JS面向对象编程 现有一问题 请教各位大虾: Person=function (){//私有变量定义var name;vae age;var Alert=function (){ alert(name+age);};return { printName:fu...
分类:Web程序   时间:2015-06-01 00:38:54    阅读次数:253
代码生成器Sql Server 和 Mysql 数据库脚本
#SQL SERVER ??????? private string SqlTableList = @"SELECT ??????????????????????????????????????????????????? so.name, ??????????...
分类:数据库   时间:2015-05-31 23:30:09    阅读次数:358
HTML布局总结
网页的三大元素结构(内容html标签)+表现(布局CSS)+行为(js)CSS选择器1.标记选择器2.类别选择器(.red)3.ID选择器(#name)4.复合选择器(交集选择器 标记选择器+类别选择器||ID选择器)(并集选择器 以逗号相连)(后代选择器 p span|| p>span)使用CSS...
分类:Web程序   时间:2015-05-31 23:14:23    阅读次数:187
获取SQL server 中的表和说明
SELECT 表名 = case when a.colorder = 1 then d.name else '' end, 表说明 = case when a.colorder = 1 then isnull(f.value, '') else '' endFROM syscolumns a inn...
分类:数据库   时间:2015-05-31 22:58:02    阅读次数:164
IIS7.5 APPCMD 简单用法及示例
1 添加应用程序进城池appcmd.exe add apppool /name:test.com /managedRuntimeVersion:"v4.0" /managedPipelineMode:"Integrated"2 添加站点,指定站点名,绑定,物理路径appcmd.exe add sit...
分类:移动开发   时间:2015-05-31 22:52:08    阅读次数:209
函数化继承
迄今为止,所看到的继承模式的一个弱点就是我们没办法保护隐私。对象的所有属性都是可见的。我们没法得到私有变量和私有函数。var mammal = function (spec) { var that = {}, that.get_name = function ...
分类:其他好文   时间:2015-05-31 20:06:14    阅读次数:98
出现java.lang.NoSuchFieldException resourceEntries错误的解决方法
JSP表单里面的表单输入这里面的每一个输入都是一个Attribute,相当于setAttribute("name",user);如果是提交到Action里面,则需要相应的Action有对应的同名变量定义和setter/getter方法,即使你没有用它做任何操作。Action里面的提供Setter/G...
分类:编程语言   时间:2015-05-31 19:56:24    阅读次数:121
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!