Answered by:
javascript and c#:xmlhttprequest for client-end script;c# for the code-behind

Question
-
Is the code below written in vb.net?Very simple.Would someone please give me a c# version?I have been studying c#,javascript etc. recently.
The functionality I want to apply is send query string to the code-behind,retrieve data from sqlserver2008 and then display it.
So the code below is just for the study of dealing with the javascript xmlhttprequest.Any suggestions would be appreciated.
The page on the server called by the JavaScript : an ASP file called "gethint.asp". The source code in "gethint.asp" checks an array of names, and returns the corresponding name(s) to the browser: <% response.expires=-1 dim a(30) 'Fill up array with names a(1)="Anna" a(2)="Brittany" a(3)="Cinderella" a(4)="Diana" a(5)="Eva" a(6)="Fiona" a(7)="Gunda" a(8)="Hege" a(9)="Inga" a(10)="Johanna" a(11)="Kitty" a(12)="Linda" a(13)="Nina" a(14)="Ophelia" a(15)="Petunia" a(16)="Amanda" a(17)="Raquel" a(18)="Cindy" a(19)="Doris" a(20)="Eve" a(21)="Evita" a(22)="Sunniva" a(23)="Tove" a(24)="Unni" a(25)="Violet" a(26)="Liza" a(27)="Elizabeth" a(28)="Ellen" a(29)="Wenche" a(30)="Vicky" 'get the q parameter from URL q=ucase(request.querystring("q")) 'lookup all hints from array if length of q>0 if len(q)>0 then hint="" for i=1 to 30 if q=ucase(mid(a(i),1,len(q))) then if hint="" then hint=a(i) else hint=hint & " , " & a(i) end if end if next end if 'Output "no suggestion" if no hint were found 'or output the correct values if hint="" then response.write("no suggestion") else response.write(hint) end if %>
- Edited by DavidYang861 Monday, November 7, 2011 6:02 PM
- Moved by Dummy yoyo Thursday, November 10, 2011 5:27 AM (From:Visual C# General)
Monday, November 7, 2011 5:59 PM
Answers
-
Thank you chanmm for your active participation in the MSDN forum!
Hi David,
Welcome to the MSDN forum!
Just as chanmm has mentioned, you need try to look at ASP.NET forum to get more efficient responses on this issue.
Please ask questions about this issue on the following forum:
http://forums.asp.net/130.aspx/1?HTML+CSS+and+JavaScript
Home › ASP.NET Forums › General ASP.NET › HTML, CSS and JavaScript
Thank you for your understanding and have a nice day!
Yoyo Jiang[MSFT]
MSDN Community Support | Feedback to us
Get or Request Code Sample from Microsoft
Please remember to mark the replies as answers if they help and unmark them if they provide no help.
- Edited by Dummy yoyo Wednesday, November 9, 2011 2:05 AM
- Marked as answer by DavidYang861 Monday, November 28, 2011 8:45 AM
Wednesday, November 9, 2011 2:05 AM
All replies
-
Yes, it is VB script.
We used it 10 years ago back in ASP 3.0. Today you should look at ASp.NET rather http://asp.net
chanmm
chanmmTuesday, November 8, 2011 3:10 AM -
Thanks for your reply.I checked the website the other day.But i
was confused by the several panels,such as mvc,web pages,I have no idea about
the differences and which block to go.Tuesday, November 8, 2011 8:01 PM -
Thank you chanmm for your active participation in the MSDN forum!
Hi David,
Welcome to the MSDN forum!
Just as chanmm has mentioned, you need try to look at ASP.NET forum to get more efficient responses on this issue.
Please ask questions about this issue on the following forum:
http://forums.asp.net/130.aspx/1?HTML+CSS+and+JavaScript
Home › ASP.NET Forums › General ASP.NET › HTML, CSS and JavaScript
Thank you for your understanding and have a nice day!
Yoyo Jiang[MSFT]
MSDN Community Support | Feedback to us
Get or Request Code Sample from Microsoft
Please remember to mark the replies as answers if they help and unmark them if they provide no help.
- Edited by Dummy yoyo Wednesday, November 9, 2011 2:05 AM
- Marked as answer by DavidYang861 Monday, November 28, 2011 8:45 AM
Wednesday, November 9, 2011 2:05 AM -
Thank you.I will go to the address and check it out.Thursday, November 10, 2011 2:14 AM