This topic is locked

How to setup Lookup values

3/4/2007 2:58:16 AM
ASPRunner.NET General questions
B
bluezz author

Hi,

How to setup lookup values(##LISTVALUE## & ##LISTDISPLAYVALUE##)

like

A:VB

B:PHP

C:JAVA

I want get ##LISTVALUE## = A, B or C

LISTDISPLAYVALUE##=A:VB, B:PHP or C:JAVA

current, ##LISTVALUE## same as ##LISTDISPLAYVALUE##

thanks!

Eugene 3/5/2007

Please open _add.aspx, _edit.aspx, *_copy.aspx in output directory.

Find

<asp:ListItem Value="A:VB">A:VB</asp:ListItem>

<asp:ListItem Value="B:PHP">B:PHP</asp:ListItem>

<asp:ListItem Value="C:JAVA">C:JAVA</asp:ListItem>

and change to

<asp:ListItem Value="A">A:VB</asp:ListItem>

<asp:ListItem Value="B">B:PHP</asp:ListItem>

<asp:ListItem Value="C">C:JAVA</asp:ListItem>