- Mark as New
- Follow
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report
Hi @sachincs1991 ,
You can achieve this in 2 ways, either by creating enumeration for zipcode in classic and hardcoding the zipcode value in it, or hardcoding the zipcode value in HTML content in webapplication.
Eg:
<html>
<body>
<body>
<label>Zipcode:</label>
<select id="zipcode" name="zipcode">
<option value="city1">600001</option>
<option value="city2">600002</option>
<option value="city3">600003</option>
<option value="city4">600004</option>
</select>
<input type="submit">
<select id="zipcode" name="zipcode">
<option value="city1">600001</option>
<option value="city2">600002</option>
<option value="city3">600003</option>
<option value="city4">600004</option>
</select>
<input type="submit">
</body>
</html>
</html>
Regards,
ParthaSarathy S