webForumDet fria alternativet

Selected Problem

4 svar · 156 visningar · startad av SteveP

StevePMedlem sedan mars 2003772 inlägg
#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>
StevePMedlem 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
StevePMedlem 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.

LarsGMedlem 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
StevePMedlem sedan mars 2003772 inlägg
#5

Ah tack! :)

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