i use dropdown list (ddpilih) which hv 2 item
iwant use if else statement
ex : if ddpilih.selectedvalue="BL"
go to page(balanse.asp) (code here, i dun know to write it)
else
go to (report.asp)
Printable View
i use dropdown list (ddpilih) which hv 2 item
iwant use if else statement
ex : if ddpilih.selectedvalue="BL"
go to page(balanse.asp) (code here, i dun know to write it)
else
go to (report.asp)
Is this an web app? If so, you use Response.Redirect("report.aspx") to redirect to report page.... If it is a windows app, then just use Process.Start("put the url here"), it will launch the default browser and navigate to that page.