本文介绍了如何使用3个下拉列表自动更新值的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我的demo.aspx页面中有3个下拉列表和一个文本框,这些是



类型(chit,投资,计划,emi)下拉列表

金额(1lac,2lac,3lac,4lac)下拉列表

NoOfMonths(12,24,36,48)

MonthlyPay(它应根据以上选择自动进行)文本框





i具有以上默认值即



类型金额NumberofMonths Monthlypay

Chit 1lac 12 9800

Chit 1Lac 24 5800

Chit 1Lac 36 4500

....

....

....

如果我连续选择(下拉), 1lac,12个月然后自动显示每月工资(文本框)是9800



你能建议我怎么做这个

解决方案

i have 3 drop down lists and one text box in my demo.aspx page those are

Type(chit,Investment,scheme,emi)drop down list
Amount(1lac,2lac,3lac,4lac)drop down list
NoOfMonths(12,24,36,48)
MonthlyPay(it should come automatically based on above selection)textbox


i have the default values for above i.e

Type Amount NumberofMonths Monthlypay
Chit 1lac 12 9800
Chit 1Lac 24 5800
Chit 1Lac 36 4500
....
....
....
if i select (drop downs)continuously chit,1lac,12months then automatically show monthly pay(text box) is 9800

can you please suggest me how can i do this

解决方案


这篇关于如何使用3个下拉列表自动更新值的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-19 18:26