|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
当然了,现在国内CRM厂商的产品与其说是CRM,但从至少从我的角度分析上来看,充其量只是一个大型的进销存而已了,了解尚浅,不够胆详评,这里只提技术问题vbscript|工具|显现是依据MS供应的代码修正而成,今朝还不撑持编纂,能够排序、查询、分页显现
<%@Language=VBScript%>
<%OptionExplicit%>
<%
ClassclassDataGrid
Privatem_strSQL
Privatem_strConn
Privatem_strRowColor1
Privatem_strRowColor2
Privatem_strMode
Privatem_strProcessPage
Privatem_strTitle
Privatem_strRSName
Privatem_strFindFields
PublicPropertyGetSQL()
SQL=m_strSQL
EndProperty
PublicPropertyLetSQL(strSQL)
m_strSQL=strSQL
EndProperty
PublicPropertyGetConn()
Conn=m_strConn
EndProperty
PublicPropertyLetConn(strConn)
m_strConn=strConn
EndProperty
PublicPropertyGetRowColor1()
IfIsNull(m_strRowColor1)OrLen(m_strRowColor1)=0Then
RowColor1="#ffffff"
Else
RowColor1=m_strRowColor1
EndIf
EndProperty
PublicPropertyLetRowColor1(strRowColor1)
m_strRowColor1=strRowColor1
EndProperty
PublicPropertyGetRowColor2()
IfIsNull(m_strRowColor2)OrLen(m_strRowColor2)=0Then
RowColor2="#00ffff"
Else
RowColor2=m_strRowColor2
EndIf
EndProperty
PublicPropertyLetRowColor2(strRowColor2)
m_strRowColor2=strRowColor2
EndProperty
PublicPropertyGetMode()
IfIsNull(m_strMode)OrLen(m_strMode)=0Then
Mode="View"
Else
Mode=m_strMode
EndIf
EndProperty
PublicPropertyLetMode(strMode)
IfstrMode"View"AndstrMode"Edit"Then
Response.Write("形式毛病――只同意利用View和Edit<br>")
Response.End
Else
m_strMode=strMode
EndIf
EndProperty
PublicPropertyGetProcessPage()
ProcessPage=m_strProcessPage
EndProperty
PublicPropertyLetProcessPage(strProcessPage)
m_strProcessPage=strProcessPage
EndProperty
PublicPropertyGetTitle()
IfIsNull(m_strTitle)OrLen(m_strTitle)=0Then
Title="DataGrid"
Else
Title=m_strTitle
EndIf
EndProperty
PublicPropertyLetTitle(strTitle)
m_strTitle=strTitle
EndProperty
PublicPropertyGetRSName()
IfIsNull(m_strRSName)OrLen(m_strRSName)=0Then
RSName="Grid"
Else
RSName=m_strRSName
EndIf
EndProperty
PublicPropertyLetRSName(strRSName)
m_strRSName=strRSName
EndProperty
PublicPropertyGetFindFields()
FindFields=m_strFindFields
EndProperty
PublicPropertyLetFindFields(strFindFields)
m_strFindFields=strFindFields
EndProperty
SubShowDataGrid()
DimintPageNum
DimobjConn
DimobjRS
DimintAbs
DimintCurrentPage
DimintFindCol
DimintPageSize
DimintRow
DimintCol
Dimi
DimintPos
DimintDisplayRows
DimstrSort
DimstrSortDir
DimstrLastSort
DimstrLastSortDir
DimstrColor
DimstrFind
DimboolFind
DimboolFound
</p>asp,你就只能等着微软给你解决,它不乐意你就只好悲催。而且asp跑在windows服务器上,windows服务器跟linux比起来简直弱爆了! |
|