上一页 1 2 3 4 5 6 7 8 9 ··· 17 下一页

2010年3月9日

android 平台上的手机应用开发 how to user HttpUrlConnection POST Much Fields to Web Server ?

摘要: post.ashx---------------------演示用文件<%@ WebHandler Language="C#" Class="post" %>using System;using System.Web;public class post : IHttpHandler { public void ProcessRequest(HttpContext context) { context.Response.ContentType = "text/plain"; context.Response.Clear(); 阅读全文

posted @ 2010-03-09 17:37 老代哥哥 阅读(490) 评论(0) 推荐(0) 编辑

2010年3月8日

android 开发时的SD卡的文件访问

摘要: BufferedOutputStream bos = new BufferedOutputStream(new FileOutputStream("/sdcard/camera.jpg")); bos.write(data, 0, data.length); bos.flush(); bos.close();关键就是那个<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"></uses-permission> 权限的问题。奶奶的。 阅读全文

posted @ 2010-03-08 14:27 老代哥哥 阅读(160) 评论(0) 推荐(0) 编辑

2010年3月4日

郁闷的 android 项目开发

摘要: 妈妈XX的。android 项目里的res --> layout --> webImag.xml 居然要改成 webimag.xml才能通过!!!特此记录。 阅读全文

posted @ 2010-03-04 15:31 老代哥哥 阅读(103) 评论(0) 推荐(0) 编辑

2010年1月12日

存储过程生成表的实体类

摘要: 记录在案,免得哪天忘了。-------------------create proc [dbo].[NPT_CreateClass] @tabName sysname as declare @t table( ColId int ,Pub nvarchar(50), SqlType nvarchar(20), ColumnName nvarchar(250), Properties nvarchar(500), sep nvarchar(2) , ColLength int , Memo nvarchar(1500), IsAllowNull bit , IsIdentity bit , .. 阅读全文

posted @ 2010-01-12 15:13 老代哥哥 阅读(286) 评论(0) 推荐(0) 编辑

2009年2月11日

创业:让传统行业借互联网之东风

摘要: 创业:让传统行业借互联网之东风 互联网热潮已经兴起很多年,从早期向用户“推”内容的门户网站,到如今的由用户自己创造内容的Web2.0模式,互联网运作模式已经发生了翻天覆地的变化。同时,用户的需求也在变化和提高,如何抓住用户的需求并从中获益?这是互联网企业所面临的挑战。想要从众多的商业模式和竞争对手中脱颖而出,并不容易。于是一些创业者开始另辟蹊径,将目光投向传统行业与互联网的交互。这种模式到底能否适合市场需求?对于众多有志于互联网创业的人来说,携程网的成功上市已经给出了一个很好的启示。 当然除了与旅游业,互联网也可以与其他的传统行业相结合,比如教育行业。Idapted公司是一家新兴互联网创业公司 阅读全文

posted @ 2009-02-11 13:09 老代哥哥 阅读(175) 评论(0) 推荐(0) 编辑

2008年12月10日

股票基本术语i

摘要: 现手:是最新成交的手数,在乘以100就是最新成交的股票的数量.每手=100股总手=从早上开盘后总共成交的股票数,也是换算成就乘以100现手------最近一笔的成交量。单位是手,1手=100股。总手------今天的总成交量。单位手。举个例子你就明白了。如果甲下单5元买100股,乙下单5.01元卖300股,当然不会成交。5元就是买入价,5.01就是卖出价。这时,有丙下单5.01元买200股,于是乙的股票中就有200股卖给丙了(还有100股没有卖出去),这时候,成交价是5.01元,现手就是2手即200股,显示2,显示的颜色是红的。还是上面的情况,如果丁下单5元卖200股,于是甲和丁就成交了,这时 阅读全文

posted @ 2008-12-10 09:43 老代哥哥 阅读(178) 评论(0) 推荐(0) 编辑

2008年12月2日

泛型数据访问的方法(二)

摘要: using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace DataAccess{ [Serializable] [AttributeUsage(AttributeTargets.Enum, Inherited = false)] public class DataBaseStoreAttribute : Attribute { public string TableOrViewName { get; set; } } public struct FiledSetting 阅读全文

posted @ 2008-12-02 15:33 老代哥哥 阅读(280) 评论(0) 推荐(0) 编辑

C#里的SOCKET应用

摘要: using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Net;using System.Net.Sockets;using System.Threading;using System.Text.RegularExpressions;using System.IO;using System.Runtime.InteropServices;using System.Runtime.InteropServices.ComTypes;using System.Runt 阅读全文

posted @ 2008-12-02 15:21 老代哥哥 阅读(497) 评论(0) 推荐(0) 编辑

2008年11月21日

基于泛型的DAL 分页方法(未完)

摘要: public delegate void ReadTableCallback<T>(System.Collections.Generic.IEnumerable<T> reader); public interface IColumnInfo { string ColumnName { get; } string MappedName { get; } bool IsMappKey { get;... 阅读全文

posted @ 2008-11-21 00:30 老代哥哥 阅读(192) 评论(0) 推荐(0) 编辑

2008年9月22日

Linq C# (一)

摘要: using System;using System.Collections.Generic;using System.Linq;using System.Text;using LinqToSql.HR;namespace LinqToSql{ class Program { public static void Main(string[] args) { Cityes(); } public static void Cityes() { string[] cities = new string[]{ "Hubei","henan","bejin 阅读全文

posted @ 2008-09-22 22:50 老代哥哥 阅读(259) 评论(0) 推荐(0) 编辑

上一页 1 2 3 4 5 6 7 8 9 ··· 17 下一页

导航