摘要:
creating collection classes in c#
introduction
collection classes are used frequently in .net. for example, classes like arraylist, namevaluecollection, hashtable are collection classes. one......
摘要:
convertunicodetoutf8(const wchar *wstrin, byte *buff,int vlen)
{
assert(wstrin);
int wlen=wcslen(wstrin);
int i=0;
#define putchar(a) buff[i++]=(byte)a;
for(int j=0;(dword)j<wcslen(wst......
CreatinganddisplayingaDataSetinDreamweaverMX
creating and displaying a .net dataset
...
下一页 摘要:
.net正式版中的一些bug及其解决方案 (原创)
作者: 飞刀
(1)session的问题
问题:
在我的windows.net 3604 + .net framework正式版的编程环境中,.net下的session总是有问题,比如我在a程序下设置了一个session字典,这个session将会在b程序下读取,现在的情况就是我在b程序读取这个session时,第一次能够......