<%@LANGUAGE="VBSCRIPT" CODEPAGE="936"%> <% Dim Repeat2__numRows Dim Repeat2__index Repeat2__numRows = 20 Repeat2__index = 0 RSyycs_numRows = RSyycs_numRows + Repeat2__numRows %> <% ' *** Recordset Stats, Move To Record, and Go To Record: declare stats variables Dim RSyycs_total Dim RSyycs_first Dim RSyycs_last ' set the record count RSyycs_total = RSyycs.RecordCount ' set the number of rows displayed on this page If (RSyycs_numRows < 0) Then RSyycs_numRows = RSyycs_total Elseif (RSyycs_numRows = 0) Then RSyycs_numRows = 1 End If ' set the first and last displayed record RSyycs_first = 1 RSyycs_last = RSyycs_first + RSyycs_numRows - 1 ' if we have the correct record count, check the other stats If (RSyycs_total <> -1) Then If (RSyycs_first > RSyycs_total) Then RSyycs_first = RSyycs_total End If If (RSyycs_last > RSyycs_total) Then RSyycs_last = RSyycs_total End If If (RSyycs_numRows > RSyycs_total) Then RSyycs_numRows = RSyycs_total End If End If %> <% Dim MM_paramName %> <% ' *** Move To Record and Go To Record: declare variables Dim MM_rs Dim MM_rsCount Dim MM_size Dim MM_uniqueCol Dim MM_offset Dim MM_atTotal Dim MM_paramIsDefined Dim MM_param Dim MM_index Set MM_rs = RSyycs MM_rsCount = RSyycs_total MM_size = RSyycs_numRows MM_uniqueCol = "" MM_paramName = "" MM_offset = 0 MM_atTotal = false MM_paramIsDefined = false If (MM_paramName <> "") Then MM_paramIsDefined = (Request.QueryString(MM_paramName) <> "") End If %> <% ' *** Move To Record: handle 'index' or 'offset' parameter if (Not MM_paramIsDefined And MM_rsCount <> 0) then ' use index parameter if defined, otherwise use offset parameter MM_param = Request.QueryString("index") If (MM_param = "") Then MM_param = Request.QueryString("offset") End If If (MM_param <> "") Then MM_offset = Int(MM_param) End If ' if we have a record count, check if we are past the end of the recordset If (MM_rsCount <> -1) Then If (MM_offset >= MM_rsCount Or MM_offset = -1) Then ' past end or move last If ((MM_rsCount Mod MM_size) > 0) Then ' last page not a full repeat region MM_offset = MM_rsCount - (MM_rsCount Mod MM_size) Else MM_offset = MM_rsCount - MM_size End If End If End If ' move the cursor to the selected record MM_index = 0 While ((Not MM_rs.EOF) And (MM_index < MM_offset Or MM_offset = -1)) MM_rs.MoveNext MM_index = MM_index + 1 Wend If (MM_rs.EOF) Then MM_offset = MM_index ' set MM_offset to the last possible record End If End If %> <% ' *** Move To Record: if we dont know the record count, check the display range If (MM_rsCount = -1) Then ' walk to the end of the display range for this page MM_index = MM_offset While (Not MM_rs.EOF And (MM_size < 0 Or MM_index < MM_offset + MM_size)) MM_rs.MoveNext MM_index = MM_index + 1 Wend ' if we walked off the end of the recordset, set MM_rsCount and MM_size If (MM_rs.EOF) Then MM_rsCount = MM_index If (MM_size < 0 Or MM_size > MM_rsCount) Then MM_size = MM_rsCount End If End If ' if we walked off the end, set the offset based on page size If (MM_rs.EOF And Not MM_paramIsDefined) Then If (MM_offset > MM_rsCount - MM_size Or MM_offset = -1) Then If ((MM_rsCount Mod MM_size) > 0) Then MM_offset = MM_rsCount - (MM_rsCount Mod MM_size) Else MM_offset = MM_rsCount - MM_size End If End If End If ' reset the cursor to the beginning If (MM_rs.CursorType > 0) Then MM_rs.MoveFirst Else MM_rs.Requery End If ' move the cursor to the selected record MM_index = 0 While (Not MM_rs.EOF And MM_index < MM_offset) MM_rs.MoveNext MM_index = MM_index + 1 Wend End If %> <% ' *** Move To Record: update recordset stats ' set the first and last displayed record RSyycs_first = MM_offset + 1 RSyycs_last = MM_offset + MM_size If (MM_rsCount <> -1) Then If (RSyycs_first > MM_rsCount) Then RSyycs_first = MM_rsCount End If If (RSyycs_last > MM_rsCount) Then RSyycs_last = MM_rsCount End If End If ' set the boolean used by hide region to check if we are on the last record MM_atTotal = (MM_rsCount <> -1 And MM_offset + MM_size >= MM_rsCount) %> <% ' *** Go To Record and Move To Record: create strings for maintaining URL and Form parameters Dim MM_keepNone Dim MM_keepURL Dim MM_keepForm Dim MM_keepBoth Dim MM_removeList Dim MM_item Dim MM_nextItem ' create the list of parameters which should not be maintained MM_removeList = "&index=" If (MM_paramName <> "") Then MM_removeList = MM_removeList & "&" & MM_paramName & "=" End If MM_keepURL="" MM_keepForm="" MM_keepBoth="" MM_keepNone="" ' add the URL parameters to the MM_keepURL string For Each MM_item In Request.QueryString MM_nextItem = "&" & MM_item & "=" If (InStr(1,MM_removeList,MM_nextItem,1) = 0) Then MM_keepURL = MM_keepURL & MM_nextItem & Server.URLencode(Request.QueryString(MM_item)) End If Next ' add the Form variables to the MM_keepForm string For Each MM_item In Request.Form MM_nextItem = "&" & MM_item & "=" If (InStr(1,MM_removeList,MM_nextItem,1) = 0) Then MM_keepForm = MM_keepForm & MM_nextItem & Server.URLencode(Request.Form(MM_item)) End If Next ' create the Form + URL string and remove the intial '&' from each of the strings MM_keepBoth = MM_keepURL & MM_keepForm If (MM_keepBoth <> "") Then MM_keepBoth = Right(MM_keepBoth, Len(MM_keepBoth) - 1) End If If (MM_keepURL <> "") Then MM_keepURL = Right(MM_keepURL, Len(MM_keepURL) - 1) End If If (MM_keepForm <> "") Then MM_keepForm = Right(MM_keepForm, Len(MM_keepForm) - 1) End If ' a utility function used for adding additional parameters to these strings Function MM_joinChar(firstItem) If (firstItem <> "") Then MM_joinChar = "&" Else MM_joinChar = "" End If End Function %> <% ' *** Move To Record: set the strings for the first, last, next, and previous links Dim MM_keepMove Dim MM_moveParam Dim MM_moveFirst Dim MM_moveLast Dim MM_moveNext Dim MM_movePrev Dim MM_urlStr Dim MM_paramList Dim MM_paramIndex Dim MM_nextParam MM_keepMove = MM_keepBoth MM_moveParam = "index" ' if the page has a repeated region, remove 'offset' from the maintained parameters If (MM_size > 1) Then MM_moveParam = "offset" If (MM_keepMove <> "") Then MM_paramList = Split(MM_keepMove, "&") MM_keepMove = "" For MM_paramIndex = 0 To UBound(MM_paramList) MM_nextParam = Left(MM_paramList(MM_paramIndex), InStr(MM_paramList(MM_paramIndex),"=") - 1) If (StrComp(MM_nextParam,MM_moveParam,1) <> 0) Then MM_keepMove = MM_keepMove & "&" & MM_paramList(MM_paramIndex) End If Next If (MM_keepMove <> "") Then MM_keepMove = Right(MM_keepMove, Len(MM_keepMove) - 1) End If End If End If ' set the strings for the move to links If (MM_keepMove <> "") Then MM_keepMove = MM_keepMove & "&" End If MM_urlStr = Request.ServerVariables("URL") & "?" & MM_keepMove & MM_moveParam & "=" MM_moveFirst = MM_urlStr & "0" MM_moveLast = MM_urlStr & "-1" MM_moveNext = MM_urlStr & CStr(MM_offset + MM_size) If (MM_offset - MM_size < 0) Then MM_movePrev = MM_urlStr & "0" Else MM_movePrev = MM_urlStr & CStr(MM_offset - MM_size) End If %> 常州市卫生信息网:患者之家
 
    医学常识
    护理常识
    用药常识
    家庭急救
    健康饮食
    中医中药
    日常保健
    女性保健
    儿童保健
    心理保健
 
     健康网站链接
健康报
求医问药
生命热线
中国金卫
新健康
阳光广场
21健康网
   
 
 
非典型肺炎常见问题的解答
问:怎样区别非典型性肺炎与感冒发烧?
答:区别感冒和非典型性肺炎的第一个方法就是首先有没有接触非典型性肺炎的病人,或者是到有流行区去的历史,如果有这种历史又发现了高烧、咳嗽就要及时地去看病了。如果说没有这种情况就不要无端地紧张,说一有感冒不舒服就认为是这种疾病。毕竟作为传染性的非典型性肺炎它的表现是会成为肺炎的表现。

问:当感冒或者是发烧了,医生可以在第一时间内判断出是否得了这个病么?
答:不一定,这得感觉他的情况,特别是他有没有和非典型肺炎病人接触的历史,或到流行区去的历史,再根据他的临床化验和X光胸片的情况来进行判断。

问:中药到底能不能预防非典型肺炎?预防效果怎么样?
答:对于药物预防这个疾病的问题,因为目前我们对这个疾病的病原体还没有完全搞清楚,因此使用很有针对性的药物还是一个没有解决的问题。对于中药预防的问题我们应该在我们的预防工作中不断地总结,用实践来验证它的结果。

问:如何消除对非典型性肺炎的恐慌情绪?
答:首先要重视对它的预防,因为它是一个新的具有传染性的疾病,我们还没有对它有一个全面的认识,所有我们一定要加强它的预防工作。但是同时我们在广东的防治经验中,已经认识到它是要经过密切接触才能传播的,它的传播能力是有限的,而且经过开窗通风,加强密切接触者的防护等措施是可以防止它传播的。

问:非典型肺炎传播的势头是不是很凶猛?现在已经公布的疫区只有几个省,会不会很快地蔓延全国?
答:从广东的防治经验来看,它的主要传播途径是近距离的、密切接触传播,也就是说它是由病人的飞沫经空气直接传播给接触者的,或者是接触了病人的体液以后造成传播。因此,目前在广东和国外的一些病例的 报告来看,仍然是病人的密切接触者受到传染的比较多,也就是说,是治疗病人的的医护人员和护理的家属或者是同住的亲朋。而在社区中感染而发病的并不多,所以从目前的发展趋势来看,它的传播还是有限的,但是我们应该对这种新发的疾病给予密切的关注,注视它的发展动态,同时如果我们能够很好地对它采取预防控制措施,也能够来预防它的更大的传播。

问:坐地铁到底要不要戴口罩?
答:对这个问题我认为首先要考虑他在这个地区有没有一种流行的状态,比如说广州在流行的期间我们认为还是可以戴口罩的,但是现在已经控制了就不一定非要戴口罩了。在一些非流行的区域,自己愿意戴我们也不反对,但是我们觉得没有必要戴。

问:世界卫生组织专家建议推广的广东抗非典的经验是什么?
答:主要有以下几点:
第一个就是我们从政府到医疗卫生防疫部门,到全社会给予它高度重视,共同来做好防治工作,这是非常重要的。
第二,要早期地发现和隔离治疗病人。
第三,针对它的传播主要是密切接触者,其中包括医务人员和家属等,因此加强对他们的防护是非常重要的。
第四,要很好地宣传预防的知识,也就是说, 对于个人来讲,要有一个良好的卫生习惯,比如说在咳嗽或者是打喷嚏的时候不要对着人群,要用手或者是手绢捂住,不共用公用的毛巾,平时注意营养,加强锻炼,不要过于疲劳等,能够保持比较好的身体的良好状况,这是很重要的。同时我们要开窗通风,保持良好的空气环境。另外,要特别注意如果要接触病人的话,一定要加强个人的防护,防止被传染。

问:什么时候能够有疫苗?
答:首先要解决这次引起传染性非典型肺炎病原学的问题,只有解决了病原学的问题才有可能进一步地研制疫苗。当然作为疫苗的研制还需要有相当的过程,比如说艾滋病我们现在已经明确了它的病原,但是研究它的疫苗还需要花很大的力气,因此目前对于非典型肺炎的疫苗问题我们应该加强工作。

问:普通口罩用多少次应该抛弃?
答:要看在什么情况下戴,如果在医院里戴的话,到三四个小时可以换掉。

问:受感染后,病毒发病大约多长时间?
答:从医学角度来看主要是传染潜伏期的问题,也就是说从被感染到发病时间,根据我们南方的经验来看,它最短是一天,最长是两周或者更长一点,常见是三四天。

问:是不是没有跟病人接触过,也没有去过流行区是不是就一定不会得了?
答:这得看什么情况了,现在目前来看没有一个明确的诊断,所以我们在判断和诊断传染性的非典型肺炎的时候是要进行一个综合的判断。就是说要考虑流行病学的历史和相应的临床症状、化验和X光检查,所以对于流行病学的历史还是比较重要的。

问:孕妇如何预防?孕妇如果感染对孩子会有什么影响?
答:作为孕妇来说我们更应该注意加强预防,对于孕妇感染了对孩子的影响,因为目前的病原体还没有完全搞清楚,如果是病毒感染为主的话,它可能会对所怀的孩子造成影响。但是目前因为一些病原学的问题还没有搞清楚,所以还很难明确地来回答这个问题。

江苏省常州市卫生局版权所有
常州市晋陵中路552号 || 电子信箱:jsczwsj@pub.cz.jsinfo.net
电话:0519-6600473