borderAndreaVB free resources for Visual Basic developersborder

borderAndreaVB Visual Basic and VB.NET source code resources - Copyright © 1999-2007 Andrea Tincaniborder

AndreaVB | Forum | News | Downloads | Register | Help | Member List | Statistics | Search | PM | Profile

Print This Topic
Previous Topic (difference between web server control and html server control in asp.net?)Next Topic (How Do i generate a CSV file from ASP.NET) New Topic New Poll Post Reply
AndreaVB Forum : ASP.Net : how to pass encrypted query string ?
Poster Message
tri_inn
Level: Regular User
Registered: 26-08-2002
Posts: 395

icon how to pass encrypted query string ?

please tell me how to pass encrypted query string.

29-12-2003 at 12:25 PM
View Profile Send Email to User Show All Posts | Quote Reply
zimcoder
Level: VB Lord


Registered: 27-10-2003
Posts: 225
icon Re: how to pass encrypted query string ?

Here is how to pass an encrypted query  using Server.UrlEncode    NB// code in c#

<%@ Page Language="c#" %>
<html>
  <body>
   <%;
     string Name ="Clement";
     string age = "Twenty five and 11 months, 25 days";
  
     Name = Server.UrlEncode(Name);
     Age = Server.UrlEncode(Age);
    %>
<a href="mybithday2.aspx?name=<% Response.Write(Name);%>&age=<% Response.write(Age); %>">Click here</a>
</body>
</html>


You can name this file myBirthday1.aspx


Here is mybirthday2.aspx that  recieves the data
<@ Page Language="c#" %>
<html>
  <body>
   <%;
     string Name =Request.QueryString["Name"]";
     string age = Request.QueryString["Age"];
    %>
  <h1>Happy Birthday <%Response.Write(Name); %></h1>
<h3>May the Next <% Response.Write(Age); %> years be Good!</h3>
</body>
</htm>

This should give a staring point.. Good Luck!

____________________________
BrainBench ADO.NET and ASP.NET Certified Developer

06-01-2004 at 04:21 PM
View Profile Send Email to User Show All Posts | Quote Reply
AndreaVB Forum : ASP.Net : how to pass encrypted query string ?
Previous Topic (difference between web server control and html server control in asp.net?)Next Topic (How Do i generate a CSV file from ASP.NET) New Topic New Poll Post Reply
Surf To:


Not Logged In? Username: Password: Lost your password?
Partners: Download Actual Software | Free Software Download
borderAndreaVB free resources for Visual Basic developersborder

borderAndreaVB Visual Basic and VB.NET source code resources - Copyright © 1999-2007 Andrea Tincaniborder