dreamweaver is crashing -
11-28-2007
, 12:07 PM
i have run into a very odd problem with dreamweaver CS3.
when i open up a specific ASP file on my system, it opens and then if i click
in the code-view area to edit the code, dreamweaver immediately crashes.
it happens EVERY time i try to edit this file.
interestingly when my co-worker opens the file with the same version of
dreamweaver on her laptop - she has no problems.
my laptop is a dell, with windows xp (with all the latest updates), IE7,
latest version of firefox.
my co-workers laptop is also a dell (just like mine but a couple years older),
and she has IE6 and the latest version of firefox.
all other software is pretty much the same on our systems.
the code for the page in question is attached. the line that seems to be
causing the problem is the line with the <option> tag on it.
any thoughts?
<%
Response.Expires = 3
Response.Expiresabsolute = Now() - 1
Response.AddHeader "pragma","no-cache"
Response.AddHeader "cache-control","private"
Response.CacheControl = "no-cache"
FilterNumber = Request.QueryString("FilterNumber")
%>
Filter:
<select id="SearchType_<%=FilterNumber%>" name="SearchType_<%=FilterNumber%>"
onchange="$('#SortButton').click();">
<%
ElementArray = Split("TrainDescription,Date,Cost,EmpName,Affiliat e,EmpNum",
",")
ElementValueArray =
Split("train_desc,train_date,train_cost,emp_name,a ffiliate,emp_num", ",")
For i = 0 to UBound(ElementArray)
%>
<option value="<%=ElementValueArray(i)%>"<% if Session("Filter_" &
FilterNumber & "_SearchType") = ElementValueArray(i) then %>
selected="selected"<% end if %>><%=ElementArray(i)%></option>
<%
Next
%>
</select>
By
<input type="Text" id="SearchText_<%=FilterNumber%>"
name="SearchText_<%=FilterNumber%>" value="<%=Session("Filter_" & FilterNumber
& "_SearchText")%>" onkeyup="
getListing();
" />
<a href="#" onclick="clearFilter('<%=FilterNumber%>');">Remove This Filter</a> |