muhd fauzi
|
| Posted: 05/16/2004, 7:18 PM |
|
I have 2 forms and has link between them
I form1 the grid A coumn Name and link to form 2.
Example of content for Name is all @@A where @@ is always there.( pls dont
ask why @@ need to be there , its data in an old system ) .
What I want to show in column Name is only A. How do I do this?
The coulmn Name link to form B and pass the url as cname=&&A because table 2
which has the record keep the record as &&A in the database. How do I
change the content @@A to &&A in form B
I am using asp/mysql
Any help is appreciated
tia
|
|
|
 |
Oper
Posts: 1195
|
| Posted: 05/18/2004, 10:45 AM |
|
if you always has 2 "@" so always @@A, @@N
before show event
object.fieldname.value=mid(object.fieldname.value,3,len(object.fieldname.value)-2)
will show A,N but the link will always check for @@.
_________________
____________________________
http://www.7bz.com (Free CMS,CRM Developed in CCS)
http://www.PremiumWebTemplate.com
Affiliation Web Site Templates
Please do backup first |
 |
 |
Oper
Posts: 1195
|
| Posted: 05/18/2004, 10:47 AM |
|
to replace @@ for && use replace() fucntion
_________________
____________________________
http://www.7bz.com (Free CMS,CRM Developed in CCS)
http://www.PremiumWebTemplate.com
Affiliation Web Site Templates
Please do backup first |
 |
 |
muhd fauzi
|
| Posted: 05/20/2004, 6:42 PM |
|
It works, thanks oper
"Oper" <Oper@forum.codecharge> wrote in message
news:640aa4c31e2e48@news.codecharge.com...
> to replace @@ for && use replace() fucntion
> ---------------------------------------
> Sent from YesSoftware forum
> http://forums.codecharge.com/
>
|
|
|
 |
|