Click here to Skip to main content
16,016,580 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
hellosir
i have created two text boxs for my android app in appinventor class

one text box for semister number in the above url
"http://doeresults.gitam.edu/onlineresults/pages/NewReportviewer1.aspx?sem=&reg=">
i.e sem=

another text box for registerd number
i.e reg=

the text in the two text boxes should be placed in the respective positions in the url

i used join component for this logic but it is taking only one string

please help me sir to bulid blocks for this logic
Posted
Updated 16-Feb-14 5:21am
v2

1 solution

Java
String semStr = semTxt.getText().toString();
String regStr = regTxt.getText().toString(); 


and your URL,
http://doeresults.gitam.edu/onlineresults/pages/NewReportviewer1.aspx?sem=" +semStr+ "&reg=" +regStr
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900