由买买提看人间百态

topics

全部话题 - 话题: html
首页 上页 1 2 3 4 5 6 7 8 9 10 下页 末页 (共10页)
K********S
发帖数: 14
1
最近upgrade windows装上了IE7,发现保存网页时候,默认的文件类型变成了web
archive file, *mht文件,而不是原来默认的html文件了。请问有啥不同么?
Thanks
g**********y
发帖数: 14569
2
1. It doesn't matter where you create the program and where you run javadoc,
result should be the same. BTW, if you create program under JBuilder, you may
miss some .jar/.zip files to run/compile/javadoc it on UNIX.
There is no difference between folling if there is only MyProgram.java in
that directory --
javadoc MyProgram.java
javadoc *.java

some interesting option --
-d: specify document path (where you want to store generated html)
-private: will include private metho
y*******y
发帖数: 4
3
SOS!!!
I am trying to build a web interface for information update. The java applet
reads off a xml file in the same folder as the jar file, then posts the
information on the web. People can go and modify the information which will
be recorded in the same xml file so the information is centralized.
What I have is in:
web.mit.edu/yaol/Public/Ryou/6.003/
if you go to:
web.mit.edu/yaol/Public/Ryou/6.003/assign.html
you can see that it is just a blank form where it should have read off the
actual
w********c
发帖数: 2632
4
来自主题: Java版 - html form and java
did u set response content type to text/html?
h******z
发帖数: 32
5
【 以下文字转载自 Programming 讨论区 】
发信人: heraldaz (heraldaz), 信区: Programming
标 题: 请教个html显示utf8 string的问题
发信站: BBS 未名空间站 (Mon Aug 21 21:59:40 2006)
请问如何用string的hex code让browser显示foreign character
比如utf-8 string 是E38181,怎样让browser显示对应的字符呢
e******r
发帖数: 220
6
来自主题: Java版 - how to make an html file in Eclipse?
I want to click the applet to start the animation. and need a html file
e******r
发帖数: 220
7
来自主题: Java版 - how to make an html file in Eclipse?
thanks, can I write a html file by Eclipse manually?
m******t
发帖数: 2416
8
Use regular expressions to look for
and make sure your page
breaks don't fall in between?
Although note that it's a security risk to render user submitted html code
as is.
t******h
发帖数: 120
9
能不能直接把html文件当成字符串返回
然后用javascript插入到相应位置?
t******h
发帖数: 120
10
看了一下你那个代码
会产生3个.class文件
应该把3个文件打包到一个jar文件里
用的时候

abc是extends了Applet的那个类
你上面的写法3DGraphics.class, 跟那个类不是同一个名字
jar文件要跟html放在同一个目录下面
g*****g
发帖数: 34805
11
来自主题: Java版 - 大家用什么 HTML Parser?
html parser.
b******y
发帖数: 9224
12
来自主题: Java版 - 大家用什么 HTML Parser?
jericho html parser also very good
d****i
发帖数: 4809
13
这三个是否可以理解为MVC架构:
HTML负责定义具体的每个元素来构成页面 (Model)
JavaScript负责控制,协调,处理,改变,增强元素的功能 (Control)
CSS负责每个元素的外观,造型,和给用户看的效果 (View)
这三要素是否基本上就是Web前端技术MVC架构的思路?
d****i
发帖数: 4809
14
JS本身确实有backbone.js这样的MVC框架。我指的是HTML, JavaScript,CSS三者互动
能否算成一种loosely defined的MVC?

身分
d****i
发帖数: 4809
15
这个是不是取决于怎么定义model,如果是指
t*******e
发帖数: 684
16
这个和所谓single page application有什么差别?
server side scripting是指html,xui,还是GWT的xml declarative UI?
g*****g
发帖数: 34805
17
Server side scripting means the full page of html is prepared on server side
, as opposed to client side AJAX partial updates.
Obviously js is getting stronger everyday, and the latter is the trend.
Server side scripting, regardless it's request-response based (struts,
spring mvc), or component-based (wicket, tapestry), the writings are on the
wall.
t*******e
发帖数: 684
18
不就是single page application。
web技术分类不是这么分的。分类主要看html是否完全被抽象掉。否就是传统的web
frameworks,如struts, spring mvc, jsf, wicket。尽管他们也支持ajax,reverse
ajax。如果完全抽象掉了,就算RIA,GWT,Vaddin,ZK,Echo都是。
传统的web frameworks好处是designer friendly。作出的网页完全受自己控制。甚至
也可以做single page application.
RIA对developer比较顺手,不需要desiger设计look and feel,但也因此受局限。
目前我还看不出谁取代谁。两者甚至是互补的关系。
Ajax和reserver ajax不管在什么web framework里面,基本都是js+rest实现的。
F****n
发帖数: 3271
19
我觉得你搞错了,现在的趋势是把前端script变成 server side scripting.
以后JSP甚至JAVA(GWT),和其他语言(ZK)写的程序编译成html5/js
程序员不用直接写html/js code.
F****n
发帖数: 3271
20
随说的,现在都是DSL,JSON-style programming,可以直接 Map成XML/HTML
Designer UI Tool 完全可以集成,交给Designer去干

't
for
c*********e
发帖数: 16335
21
对,其实c#以前用.aspx,扯个控件的做法,也是mvc的模式。但是,这个模式是,用户
先在view里面的dropdown list,text field输入想要看的东西,然后click submit
button,把信息传给aspx.cs文件处理,之后生成动态的html文件。
现在的mvc 4,把用户的request直接传给server side的controller,然后controller来
产生一個view.

model.
F****n
发帖数: 3271
22
服务器端把 DSL/Java编译成 HTML/JS
b***i
发帖数: 3043
23
就是说,Spring MVC 返回的List里面的一个内容太长,我是需要在Java代码里面就处
理,还是html/css有什么办法可以自动限制长度,超过就把20个字符之后显示...?
比如
这里都是废话,废话,废话,废话,废话...
z****e
发帖数: 54598
24
这个html不管
jsp可以做到,你的spring mvc用了jsp吧?
加一个逻辑判断
<%if(string.length()>20){%>
...
<%}else{%}
...
<%}%>
或者jstl里面应该也有,不过我没怎么用过
l*******r
发帖数: 448
25
来自主题: Java版 - pdf form 还是 html form
最近做的是一个GWT的web portal,用servicemix与后端数据库交换信息。需要用户填
写pdf的form,之前是填了以后,通过email提交,现在客户想把这个pdf form在web
portal里面打开,填写,提交通过servicemix向后端传递。看了一下itext library,
有比较多功能处理pdf,但是对于提交表格方面的灵活性差一些,好像只能用它自定义
的handler,
我在想是否将用户填写的pdf form转成html form在web portal里提交,这样比较灵
活性大些?经验不足,请多指教,谢谢
b******y
发帖数: 9224
26
来自主题: Java版 - pdf form 还是 html form
最好用html form,pdf太麻烦了
B*********s
发帖数: 292
27
现在我用旧版本的acdsee32来生成html,把家庭相册放到网上。改到Linux下面,应该也
有对应的软件吧?
传真我以前用的是bitware,所有软件都可以打印到bitware 驱动上,然后传真发出去
。在Linux下应该用什么软件?
N****w
发帖数: 21578
28
这样浏览器就是桌面了
HTML JS 的表现能力,其实已经跟 C/C++ API 差不多了
顺便借用浏览器显示,挺好的
i**g
发帖数: 134
29
来自主题: Linux版 - 大家给个index.html?
简单的办法把你想要的起始页面文件重命名为index.html
wy
发帖数: 14511
30
来自主题: Linux版 - 问个html的问题
你的是pure html,还是应用程序?
o**n
发帖数: 1249
31
来自主题: Linux版 - 问个html的问题
唉,就是小破网页,html+简单php
wy
发帖数: 14511
32
来自主题: Linux版 - 问个html的问题
要认真做得话,css + javascript
比如说这个
http://pupunzi.com/#mb.components/mb._menu/menu.html
wy
发帖数: 14511
33
来自主题: Linux版 - 问个html的问题
这个要靠server side。很久没有用php,
不知道php有没有partial的概念,就是一段html snippet
shared by pages.

一个
容。
y***d
发帖数: 2330
34
来自主题: Linux版 - 问个html的问题
apache 有 server side include,应该其它服务器也有这个功能吧;
http://httpd.apache.org/docs/1.3/howto/ssi.html
php 的话,应该更方便吧,虽然没有用过,但是觉得可以定义个函数专门打印 header/
footer?
http://www.choicetemplates.com/tutorials.php?name=headfoot
S***d
发帖数: 1802
35
来自主题: Linux版 - 问个html的问题
Example: http://www.cssplay.co.uk/layouts/basics2.html
the purpose of using any form of frames is so individual frames can be
updated with new content without affecting other frames. One should never
use frames simply because of the convenience of scroll bars in content areas
. CSS should always be used for the latter requirement if its the only
design criteria.
S***d
发帖数: 1802
36
来自主题: Linux版 - HTML editor
few people hand code html pages anymore. we use mostly frameworks.
r******s
发帖数: 925
37
来自主题: Linux版 - 问几个关于网页和HTML的问题
最近想吧我的Embedded Robot Controller架构改一下
大多时候Operator在Windows下工作, 我试了试Apache和CGI,还是Work的
打算把GUI全部换成网页
1. Linux下哪个HTML或者Webpage编辑器比较好?vim可以但是经常要查手册
而且自己就对table和几种input比较熟,界面编出来跟DOS下的GUI差不多
2. 除了CGI,有没有其他办法跟主程序接口?
n******7
发帖数: 12463
38
跟另外的firefox同步之后
重启,addon加载,开了很多addon说明页面
结果过了几秒就crash了
然后再启动就是看一眼就挂了
我本来以为addon兼容的问题
但是我直接点开一个html来启动iceweasel的话
居然一点问题没有,现在就这样上网发帖
很蹊跷啊
o******1
发帖数: 1046
39
我用perl写一个cgi的程序,其中调用了自己写的C程序(binary executable),需要
其stdout,所以用的是backticks。
如果单独运行perl cgi,结果正常,所有该print出来的全部出现,包括调用的C程序的
output。但是一旦从html里面连接到这个perl cgi,C程序ouput的部分,在网页中不显
示。
我试着把调用C程序的部分改成调用Linux系统程序,比如ls,cat等等,其output在网
页中就正常出现了。
我很困惑,大概知道是因为C程序的output没有被返回到perl process里面。但是在单
独执行perl程序的时候,调用的C就正常的输出到stdout了。又想了一想,可能是perl
和C共享了屏幕显示,所以我分辨不出来。但是在运行perl程序的时候,被调用的C的输
出没有返回到perl process,而是在另一个过程中,所以cgi创建的新网页就不显示了
。但是对于调用的Linux系统程序,为什么能正确的返回呢?
我半路出家,没学过操作系统,对于process,thread这些概念一知半解。大牛们能不
能指点一下,如何设置,... 阅读全帖
F**p
发帖数: 1046
40
来自主题: Programming版 - HTML print an image
I want to print an image inside a HTML. Since the image could be very large, I
want to add one button on the page and click it to export to a printer and
automatically have a nice layout. Now, i can print 1/4 of the whole image
since it is too big to hold in a 8*11 paper.
I know Windows Fax/Picture Viewer has this nice function, how can I do this
within a webpage without saving/opening/printing it ??
Thanks for your reading and help !!
b**j
发帖数: 20742
41
how does vsto help? can you clarify a bit? thanks a lot!
by the way, our html email is generated by a program querying our database, and sent to a large number of users who will not have visual studio installed
y*h
发帖数: 107
42
来自主题: Programming版 - a html question
我是问怎么修改HTML, 能让行间距离变窄.
r****y
发帖数: 26819
43
来自主题: Programming版 - 是否有工具生成HTML/JS/CSS?
Visual Studio也就是一个WYSIWYG编辑器罢了
你要的是用代码自动生成html、js、css,还是一个这样的编辑器?
k***r
发帖数: 4260
44
来自主题: Programming版 - 是否有工具生成HTML/JS/CSS?
谢谢各位答复。
我是希望有WYSIWYG的编辑器,然后生成html/js/css。
DreamWeaver从前简单用过,觉得生成的东西挺多的。不过可能比MS的好些。
原来MS的FrontPage很过分。
首页 上页 1 2 3 4 5 6 7 8 9 10 下页 末页 (共10页)