Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
<%
Option Explicit
Dim myLongString, i
For i = 1 to 500
myLongString = myLongString & i mod 10
Next
%>
<html>
<head>
</head>
<body>
<form method="POST" action="sample.asp">
<input type="text" name="aLongInput" value="<%=myLongString%>">
<input type="submit">
</form>
<%
If Request.Form("aLongInput") <> "" Then Response.Write "You posted " & len(Request.Form("aLongInput")) & " characters: <br>" & Request.Form("aLongInput")
%>
</body>
</html>
<?
for($i = 1;$i<=500;$i++)
$myLongString = $myLongString . $i % 10;
?>
<html>
<head>
</head>
<body>
<form method="POST" action="sample.asp">
<input type="text" name="aLongInput" value="<?echo $myLongString?>">
<input type="submit">
</form>
<?
if(!empty($_POST))
echo "You posted " . length($_POST["aLongInput"]) . " characters: <br>" . $_POST["aLongInput"];
?>
</body>
</html>
<?
$myLongString = "";
for($i = 1;$i<=500;$i++)
$myLongString = $myLongString . $i % 10;
?>
<html>
<head>
</head>
<body>
<form method="POST" action="sample.php">
<input type="text" name="aLongInput" value="<?echo $myLongString?>">
<input type="submit">
</form>
<?
if(!empty($_POST))
echo "You posted " . strlen($_POST["aLongInput"]) . " characters: <br>" . $_POST["aLongInput"];
?>
</body>
</html>