Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
100% Quality Score
Upvotes Received
1
Posts with Upvotes
1
Upvoting Members
1
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
0 Endorsements
~950 People Reached
Favorite Tags
Member Avatar for hanusoftware

i have a site its page rank is 4 and i want to increase its page rank plz give me your view to how can i increase my page rank

Member Avatar for stephenp15
0
495
Member Avatar for hanusoftware

//This example shows that how to store and retrieve data from cookies. // http://www.hanusoftware.com private void Page_Load(object sender, System.EventArgs e) { // Put user code to initialize the page here if(!IsPostBack) { if(Request.Cookies["UserCook"] != null) { chkRemember.Checked = true; HttpCookie cook = Request.Cookies["UserCook"]; txtUserName.Text = cook["UserName"].ToString(); } } } private …

0
171
Member Avatar for hanusoftware

WebClient wbcRingtone = new WebClient(); // Add a user agent header in case the requested URI contains a query. // [URL]http://www.hanusoftware.com[/URL] wbcRingtone.Headers.Add("user-agent","Mozilla/4.0(compatible;MSIE 6.0;Windows NT 5.2; .NET CLR 1.0.3705;)"); wbcRingtone.QueryString.Add("user","xxxxxxxx"); wbcRingtone.QueryString.Add("password","xxxxxxxx"); wbcRingtone.QueryString.Add("api_id", "xxxxxxxxxx"); //wbcRingtone.QueryString.Add("msg_type", "SMS_NOKIA_RTTL"); wbcRingtone.QueryString.Add("to", cellNo); ////wbcRingtone.QueryString.Add("text", "Flintstone:d=4,o=5,b=200:g#,c#,8p,c#6,8a#,g#,c#,8p,g#,8f#,8f,8f,8f#,8g#,c#,d#,2f,2p,g#,c#,8p,c#6,8a#,g#,c#,8p,g#,8f#,8f,8f,8f#,8g#,c#,d#,2c#"); wbcRingtone.QueryString.Add("from", "xxxxxxxxx"); wbcRingtone.QueryString.Add("mms_subject", "xxxxxxxxx"); wbcRingtone.QueryString.Add("mms_class", "xxxxxx"); wbcRingtone.QueryString.Add("mms_expire", "xxxxxxx"); wbcRingtone.QueryString.Add("mms_from", "xxxxxxxxx"); wbcRingtone.QueryString.Add("mms_url", "http://www.some.com/folder/mms.mms"); …

0
86
Member Avatar for hanusoftware

This code has been used to encrypt and decrypt query string .No matter what the lenght of the url is ,this code will encrypt the key and the value the query string into 25 digit using System; using System.Collections.Generic; using System.Text; using System.Collections.Specialized; using System.Collections; using System.Web; namespace BusinessLayer { …

Member Avatar for arjunsasidharan
0
161