Design .aspx page, having 4 Textboxes (First name, Last name, Email and Mobile). Place a button on the page. On the click even of the button user will be redirected on another page, having same 4 Textboxes having AutoComplete capability. On another page user do not have type First name, Last name, Email, and Mobile number but it will be AutoComplete by pressing one or two keys in each textbox.
Loading
Amit MohantyPosted Jul 5, 2023, 6:18 AM
FirstPage.aspx:
FirstPage.aspx.cs (code-behind):
SecondPage.aspx:
SecondPage.aspx.cs (code-behind):
Deepak RawatPosted Jul 5, 2023, 5:02 AM
Create the first page (Default.aspx):
Add the button click event handler:
Create the second page (SecondPage.aspx):
Implement autocomplete functionality:
Make sure to set the
AutoPostBackproperty of the button totrueif you want the page to perform a postback when the button is clicked.Sam HobbsPosted Jul 4, 2023, 9:12 PM
This is a class assignment, correct? The best way to help you is to help you figure it out yourself. What have you done so far? Is there something specific you need help with?