webForumDet fria alternativet

Selected Problem

ASPur ASP

4 svar · 156 visningar · startad av SteveP

Medlem sedan mars 2003772 inlägg
Frågan#1
Response.Write("<option Value=""" & trim(ObjRs("Description")))
 
	If Trim(VarDepartment) = Trim(ObjRs("Description")) then
	Response.Write (" Selected")
	end if

	Response.write (""">") 
	Response.Write(ObjRs("Description") & "</option>") & VbCrlf

Detta generar följande

<select class="selectflex1" name="frmDepartment">
<option Value="Finance">Finance</option>
<option Value="General Insurance Selected">General Insurance</option>
<option Value="Human Resources">Human Resources</option>
<option Value="Investment">Investment</option>
</select>

Som ni ser så hamnar "Selected" innanför fnuttarna.
[kod]<option Value="General Insurance Selected">

Men jag måste ha dubbelfnuttar runt strängarna annars bryter den av efter ett mellanslag.

Hur ska ja göra så det blir

<option Value="General Insurance" Selected>General Insurance</option>
Medlem sedan mars 2003772 inlägg
#2

Var ju iofs inte så klurigt..

Response.Write("<option Value=""" & trim(ObjRs("Description")))
 
	If Trim(VarDepartment) = Trim(ObjRs("Description")) then
	Response.Write (""" Selected")
	end if

	Response.write (">") 
	Response.Write(ObjRs("Description") & "</option>") & VbCrlf
Medlem sedan mars 2003772 inlägg
#3

Detta blev ju iofs ändå fel :(

Nu blev det


<option Value="Administration>Administration</option>
<option Value="Finance>Finance</option>
<option Value="General Insurance" Selected>General Insurance</option>
<option Value="Human Resources>Human Resources</option>
<option Value="Investment>Investment</option>

Alltså ingen avslutande fnutt på dom andra.

Medlem sedan dec. 200012 464 inlägg
#4
Response.Write "<option Value=""" & trim(ObjRs("Description"))  & """"
 
If Trim(VarDepartment) = Trim(ObjRs("Description")) then
	Response.Write " Selected"
end if

Response.write ">"
Response.Write ObjRs("Description") & "</option>" & VbCrlf
Medlem sedan mars 2003772 inlägg
#5

Ah tack! :)

138 ms totalt · 3 externa anrop · v20260731065814-full.4bcf49fe
0 ms — hämta forumlista (cache)
0 ms — hämta statistik (cache)
135 ms — hämta tråd, inlägg och bilagor (db)