文章列表
if (Session["test"] != null)
{
string writeBack = Session["test"].ToString();
string calscript = "document.getElementsByName('txttest')[0].value=" + writeBack;
Page.ClientScript.RegisterStartupScript(this. ...
using System;
using System.Linq;
using System.Text;
using System.IO;
using System.Collections;
namespace TestApplicationFileSystem
{
class Program
{
private static void ListFile(FileSystemInfo fileinfo,int level)
{
if (!fileinfo.Exists)
...
string currentUser = HttpContext.Current.User.Identity.Name;
WEB CONFIG
<authentication mode="Forms">
</authentication>
-------------------------------
iis
把集成windows认证勾掉
默认页设置到登入
using System;
using System.Collections;
using System.Configuration;
using System.Data;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.HtmlControls;
using System.Web.UI.WebControls;
using System.W ...
function CheckDataValue(txtDateFromClientID, txtDateToClientID)
{
var txtDateFrom = document.getElementById(txtDateFromClientID);
var txtDateTo = document.getElementById(txtDateToClientID);
if (txtDateFrom.value.length == 0 || txtDateTo.value.length==0)
{
alert(" ...
<%@ Page Language="C#" MasterPageFile="~/Default.Master" AutoEventWireup="true" CodeBehind="PubClientQuery.aspx.cs"
Inherits="IMDashBoard.Web.PubClientQuery" %>
<%@ Register Assembly="System.Web.DataVisualization, Version=3.5. ...
public partial class Default2 : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
SqlConnection myConnection = new SqlConnection();
myConnection.ConnectionString = "Data Source=10.225.106.27;Initial Catalog=Ticket;User ID=sa;passwo ...
选择器(selector) 以及 事件(event)
$(document).ready(function() {
$("a").click(function() {
alert("Hello world!");
});
});
这段话的意义是,当页面载入完毕,jquery能加载所有的dom元素,并且选择了一个a标签,封装成jquery object (jquery对象),然后调用jquery object 的click方法,触发了所提供的alert方法。
addclass 方 ...
抛出异常的爱
对日外包......没有设计 人肉 coding 机 变更 流程长达一个月. 人贩外包......上面一那种外包公司 的外包公司... 抽成为主,收入有顶 无升职空间, 无轮到项目基本就等 拿遣散费.
BPO&ITO贸易特点
BPO贸易主要集中于服务业中的智力密集型产业,例如软件开发、银行、保险、人力资源、管理等领域。发包企业往往为了集中企业核心竞争力而将相对属于低端的业务环节转移到外包企业。但即便如此,BPO作为现代服务业的有机构成,依然具有较传统加工贸易更高的技术含量。例如在软件开发外包中,对周边程序的外包依然可以提高外包企业员工的业务水平。 ...
BPO贸易的特点
BPO贸易同货物贸易中的加工贸易比较,其主要呈现出下述特点:
(1)进入门槛较高。
BPO贸易需要具备恰当的互联网基础设施和介入条件,因此对该地区信息基础设施条件有较高的要求。相对于货物贸易中的加工贸易,BPO 贸易的发展存在着较高的进入门槛 也正是这个原因,目前的服务外包贸易主要集中在一些发达国家和新兴市场国家之间,世界上最不发达地区从中所得甚少。例如,20o4年联合国贸发会议的调查 显示,在欧洲500强企业离岸服务外包中,印度占33%,西欧占29%,中东欧占22% ,而非洲的份额不足4%。
(2)对自然资源损耗低。
在货物贸易传统的资本与人 ...
<asp:Chart ID="ctUtilizationBySM" runat="server" BackImageAlignment="TopRight"
PaletteCustomColors="IndianRed; DarkSeaGreen; 0, 192, 192; 128, 128, 255; CornflowerBlue; Gold"
Width="7 ...
const在C语言中算是一个比较新的描述符,我们称之为常量修饰符,意即其所修饰的对象为常量(immutable)。我们来分情况看语法上它该如何被使用。1、函数体内修饰局部变量。例:void func(){const int a=0;}首先,我们先把const这个单词 ...
我刚进入金融行业时,就知道了IS08583报文协议,我想可能我还没进入这个行业都已经听过了,可知ISO8583的影响力有多大了。最初刚接触它时,确实对其中的一些细节概念不是很清晰,对有些地方比较迷惑。鉴于此,我想很多 ...
package com.nintenyun.hibernate.model;
public class Teacher {
private int id;
private String name;
private String title;
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
public String getName() {
return name;
}
public void setName(String na ...
- 2009-11-26 14:59
- 浏览 1173
- 评论(0)
struts2输入验证--补充(转)
原文地址:http://blog.csdn.net/ForWayfarer/archive/2008/09/20/2955812.aspx
1.struts2怎么实现方法签名
(类似于struts1的DispatchAction):在strust.xml中配置如下
<action ... method="register" ></action>
<action ... method="login" ></action>
<act ...
- 2009-11-21 14:36
- 浏览 1437
- 评论(0)