<% '消除数据共享需要替换本文件和global.asa中的“ff_”为“zcg_”(zcg为任意输入字符串) dim chatinit,guests,says,maxuser,votes,current,maxtalk sub get_init chatinit=application("ff_init") end sub sub get_guests guests=application("ff_guests") end sub sub get_says says=application("ff_says") current=application("ff_current") MaxTalk=application("ff_MaxTalk") end sub sub get_maxuser MaxUser=application("ff_MaxUser") end sub sub get_votes votes=application("ff_votes") end sub sub put_init application("ff_init")="true" end sub sub put_guests application("ff_guests")=guests end sub sub put_says application("ff_says")=says application("ff_current")=current end sub sub put_maxuser application("ff_MaxUser")=MaxUser end sub sub put_votes application("ff_votes")=votes end sub sub put_maxtalk application("ff_MaxTalk")=MaxTalk end sub %>