private void MakeThumbnail(string originalImagePath, string thumbnailPath, int width, int height, string mode) { System.Drawing.Image originalImage = System.Drawing.Image.FromFile(originalImagePath);
int towidth = width; int toheight = height;
int x = 0; ...
基本上有以下四种
HttpService
Web Service
Remote Object
FDS(Data Service ,Messaging)
分别介绍如下:
1.Httpervice
这是最简单也是最常用的数据交换方式,就是通过Http get/post来传纯文字资料,大部分web application都是这样运作的.
2.WebService
WebService也是很常见的选择.
Mxml文件源码
<?xml version="1.0" encoding="utf-8"?><mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" xmlns="*" layout="absolute" creationComplete="userRequest.send()"> <mx:HTTPService id="userRequest" url="http://localhost/lyb/php.asp" useProxy="false" method="POST"> <mx:request xmlns...
<html><head><title>打造下拉菜单</title><meta http-equiv="Content-Type" content="text/html; charset=gb2312"><style>body,td { font-size:12px; font-family:宋体}a:link { color: #ffffff; text-decoration: none}a:visited { color: #ffffff; text-decoration: none}a:hover { color: #ff9933; text-decoration: none}...
网页head区,不能用普通控件,但它有时又很重要,比如title、keywords、description,可能每个页面都不同,那么怎么样才能根据内容动态设置它们呢? 方法1:asp能做到的,asp.net当然可以做到,只要你把整个页面都用Response.Write()写出来,没有什么不能自定义的,当然也可以"<%=某个成员%>"。但很明显,这样发挥不了.net的特点。 方法2:利用asp.net的特有属性:runat="server",给title设置一个id,然后让它成为服务器变量,那就可以设置其文本了。但这样出来的html里边也会带有id,看着实在不爽。 方法3:利用...
对于asp.net,默认只允许上传2M文件,增加如下配置,一般可以自定义最大文件大小.<httpRuntimeexecutionTimeout="300"maxRequestLength="40960"useFullyQualifiedRedirectUrl="false"/>
<script language="javascript" type="text/javascript"><!--var imgObj;function checkImg(theURL,winName){// 对象是否已创建if (typeof(imgObj) == "object"){// 是否已取得了图像的高度和宽度if ((imgObj.width != 0) && (imgObj.height != 0))// 根据取得的图像高度和宽度设置弹出窗口的高度与宽度,并打开该窗口// 其中的增量 20 和 30 是设置的窗口边框与图片间的间隔量OpenFullSizeW...
<style>.btn {BORDER-RIGHT: #7b9ebd 1px solid; PADDING-RIGHT: 2px; BORDER-TOP: #7b9ebd 1px solid; PADDING-LEFT: 2px; FONT-SIZE: 12px; FILTER: progid:DXImageTransform.Microsoft.Gradient(GradientType=0, StartColorStr=#ffffff, EndColorStr=#cecfde); BORDER-LEFT: #7b9ebd 1px solid; CURSOR: hand; COLOR:...
使用下面这段代码,我们可以对弹出窗口做更多的控制,包括窗口大小、窗口位置、是否带工具栏、是否可以改变大小等等。 示例代码2: 〈script language="JavaScript1.2" type="text/JavaScript1.2"〉 var popUpWin=0; function popUpWindow() { //判断该窗口(popUpWin)是否已经存在,如果已经存在,则先关闭窗口,然后再打开新窗口 if(popUpWin) { if(!popUpWin.closed) popUpWin.close(); } //根据参数定位弹出窗口的展示位置 ...
css框架样式
序号
中文说明
标记语法
1
边界留白
{margin:margin-top margin-right margin-bottom margin-left}
2
补 白
{padding:padding-top padding-right padding-bottom padding-left}
3
边框宽度
{border-width:border-top-width border-right-width border-bottom-width border-left-width} 宽度值: thin|medium|...
a:link { font-family: "宋体"; font-size: 12px; font-weight: normal; color: #355794; text-decoration: none;}a:visited { font-family: "宋体"; font-size: 12px; font-weight: normal; color: #355794; text-decoration: none;}a:hover { font-family: "宋体"; font-size: 12px; font-weight: normal; color: #CA023C; t...