Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
A

Abraham Durairaj

@Abraham Durairaj
About
Posts
4
Topics
4
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • posting data to another url using webclient
    A Abraham Durairaj

    Hi, Im writing a component for posting data to a webserver. http://www.domainname.com/fire/incoming.asp?user=xxxx&pass=xxxx&amount I tried using HttpWebrequest & Webclient to post data but it is returning an error if i paste the url in the browser it is working properly The code goes here ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ string User = "test3"; string Pass = "test3"; string amount = Server.UrlEncode(TextBox2.Text); string MobileNumber = "91"+TextBox1.Text; string postData = ("login="+User); postData += ("&pass="+Pass); postData += ("&amount="+amount); string uriString = "http://www.domainname.com/fire/incoming.asp"; WebClient myWebClient = new WebClient(); myWebClient.Headers.Add("Content-Type","application/x-www-form-urlencoded"); byte[] byteArray = Encoding.ASCII.GetBytes(postData); byte[] responseArray = myWebClient.UploadData(uriString,"POST",byteArray); lblStatus.Text = Encoding.ASCII.GetString(responseArray); ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Can someone help ..... Thanks in advance Abraham

    C# help com sysadmin question

  • Reg. Posting data to other url
    A Abraham Durairaj

    Im posting some data to this URL. Can someone tell me where i can post data to this url like this. string uriString = "http://domainname.com/incoming.asp"; WebClient myWebClient = new WebClient(); myWebClient.Headers.Add("Content-Type","application/x-www-form-urlencoded"); (or ) do we need to post only to string uriString = "http://domainname.com/"; WebClient myWebClient = new WebClient(); myWebClient.Headers.Add("Content-Type","application/x-www-form-urlencoded"); Can anyone help me how to go about this? Abraham

    C# com help tutorial question

  • SMS using mobile.net
    A Abraham Durairaj

    Hello, How do I send SMS using mobile.net Thanks in advance Regards, Abraham.

    Mobile csharp question

  • Regular Expressions
    A Abraham Durairaj

    Hello, can anyone help me in solving this issue. I have a string like "76/78NagdeviSt2ndFlrNagdeviM3" using regular expressions I would like to change it to "76/78 Nagdevi St 2nd Flr Nagdevi M3" Thanks in advance. Regards, Abraham

    C# help
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups