1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230 |
public
static class BrowserHelper { private
const string IE = "IE" ; private
const string Version6 = "6" ; private
const string Version7 = "7" ; private
const string Version8 = "8" ; private
const string Version9 = "9" ; public
static bool IsIE6() { bool
result = false ; if
((HttpContext.Current != null ) && (HttpContext.Current.Request != null ) && (HttpContext.Current.Request.Browser != null )) { HttpBrowserCapabilities browser = HttpContext.Current.Request.Browser; if
((browser.Browser == IE) && (browser.Version.StartsWith(Version6))) { result = true ; } } return
result; } public
static bool IsIE7() { bool
result = false ; if
((HttpContext.Current != null ) && (HttpContext.Current.Request != null ) && (HttpContext.Current.Request.Browser != null )) { HttpBrowserCapabilities browser = HttpContext.Current.Request.Browser; if
((browser.Browser == IE) && (browser.Version.StartsWith(Version7))) { result = true ; } } return
result; } public
static bool IsIE8() { bool
result = false ; if
((HttpContext.Current != null ) && (HttpContext.Current.Request != null ) && (HttpContext.Current.Request.Browser != null )) { HttpBrowserCapabilities browser = HttpContext.Current.Request.Browser; if
((browser.Browser == IE) && (browser.Version.StartsWith(Version8))) { result = true ; } } return
result; } public
static bool IsIE9() { bool
result = false ; if
((HttpContext.Current != null ) && (HttpContext.Current.Request != null ) && (HttpContext.Current.Request.Browser != null )) { HttpBrowserCapabilities browser = HttpContext.Current.Request.Browser; if
((browser.Browser == IE) && (browser.Version.StartsWith(Version9))) { result = true ; } } return
result; } public
static bool IsIE() { bool
result = false ; if
((HttpContext.Current != null ) && (HttpContext.Current.Request != null ) && (HttpContext.Current.Request.UserAgent != null )) { if
(HttpContext.Current.Request.UserAgent.Contains( "MSIE" )) { result = true ; } } return
result; } public
static bool IsFF() { bool
result = false ; if
((HttpContext.Current != null ) && (HttpContext.Current.Request != null ) && (HttpContext.Current.Request.UserAgent != null )) { if
(HttpContext.Current.Request.UserAgent.Contains( "Firefox" )) { result = true ; } } return
result; } public
static bool IsSafari() { bool
result = false ; if
((HttpContext.Current != null ) && (HttpContext.Current.Request != null ) && (HttpContext.Current.Request.UserAgent != null )) { result = (HttpContext.Current.Request.UserAgent.ToLower().Contains( "safari" )); } return
result; } public
static bool IsOpera() { bool
result = false ; if
((HttpContext.Current != null ) && (HttpContext.Current.Request != null ) && (HttpContext.Current.Request.UserAgent != null )) { result = (HttpContext.Current.Request.UserAgent.ToLower().Contains( "opera" )); } return
result; } public
static bool IsIphone() { bool
result = false ; if
((HttpContext.Current != null ) && (HttpContext.Current.Request != null ) && (HttpContext.Current.Request.UserAgent != null )) { result = (HttpContext.Current.Request.UserAgent.ToLower().Contains( "iphone" )); } return
result; } public
static bool IsIpad() { bool
result = false ; if
((HttpContext.Current != null ) && (HttpContext.Current.Request != null ) && (HttpContext.Current.Request.UserAgent != null )) { result = (HttpContext.Current.Request.UserAgent.ToLower().Contains( "ipad" )); } return
result; } private
static bool IsOldIOS() { // older ios does not support wysiwyg editors if
((HttpContext.Current != null ) && (HttpContext.Current.Request != null ) && (HttpContext.Current.Request.UserAgent != null )) { if
(HttpContext.Current.Request.UserAgent.ToLower().Contains( "os 4_" )) { return
true ; } if
(HttpContext.Current.Request.UserAgent.ToLower().Contains( "os 3_" )) { return
true ; } } return
false ; } public
static bool MobileDeviceSupportsWYSIWYG() { bool
result = false ; if
( (IsIpad() || IsIphone()) && (!IsOldIOS()) ) { result = true ; } return
result; } public
static bool IsSmartPhone() { bool
result = false ; if
((HttpContext.Current != null ) && (HttpContext.Current.Request != null ) && (HttpContext.Current.Request.UserAgent != null )) { result = (HttpContext.Current.Request.UserAgent.ToLower().Contains( "iphone" )); if
(result) { return
result; } result = (HttpContext.Current.Request.UserAgent.ToLower().Contains( "android" )); if
(result) { return
result; } } return
result; } public
static bool IsWindowsLiveWriter() { bool
result = false ; if
((HttpContext.Current != null ) && (HttpContext.Current.Request != null ) && (HttpContext.Current.Request.UserAgent != null )) { result = (HttpContext.Current.Request.UserAgent.ToLower().Contains( "windows live writer" )); } return
result; } } |
原文:http://www.cnblogs.com/qishiguilai/p/3554757.html