Given the following URL, what code can you use to get the value of the age parameter? https://localhost:5001/Home/Index?age=30
a.Request.Index.age
b.Request.FormData.age
c.Request.QueryString["age"]
d.Request.Query["age"]



Answer :

Other Questions