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
B

B A

@B A
About
Posts
111
Topics
61
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • can you give me a reference to do it (write CD) ?
    B B A

    hi in one of part of my application (implement with C# 2005) need user can write something to write in CD. can you give me a reference to do it (write CD) ? tanks

    C# csharp question

  • how can design a template for GridView?
    B B A

    tanks for your reply. my problem was solved. :rose:

    ASP.NET design question

  • how can design a template for GridView?
    B B A

    hi in datalist control we can design a template for it. such as follow: ....

    ... is there any way to design such template for gridView? :confused:

    ASP.NET design question

  • how can manage keypress event in as.net?
    B B A

    hi how can manage keypress event in asp.net ? forexample : suppose gmail. in compose mode when user click "Ctrl+s" email save in draft. i want such things. tanks.

    Web Development csharp asp-net docker question

  • how can use a control's property inside a userControl ?
    B B A

    hi in an asp.net webpage i use a user control (that create it before). my problem can not access to it's controls (such as TextBox) how can solve it ?

    ASP.NET csharp asp-net help question

  • I have an aspx app which needs to post data to a form and read the response.
    B B A

    tank you

    ASP.NET help question

  • I have an aspx app which needs to post data to a form and read the response.
    B B A

    tanks Bassam

    ASP.NET help question

  • I have an aspx app which needs to post data to a form and read the response.
    B B A

    hi : Michael Sync tank you .:rose: your answer is with javaScript. can you get me an example with C# or VB.NET ?

    ASP.NET help question

  • I have an aspx app which needs to post data to a form and read the response.
    B B A

    Hi, I have an aspx app which needs to post data to a form and read the response. i try to use "webClient" and "HttpWebRequest" classes, but can not get response ? can you help me and get a refrence? please:((

    ASP.NET help question

  • how can emulate button click in a site in my ASP.NET code?
    B B A

    tank you Christian Graus for your reply. really my company has a "sms data center" that several service on sms, such as dictionary, weather news, and ... and my question is about this services. if we can emulate submit button means that we can have many services. for example suppose an airport site that get airs program (flight program) that get proper data from user and get answer to user. know if i can emulate submit click means that can have a new service for my "sms data center" solution. now, can you help me?

    ASP.NET csharp asp-net question

  • how can emulate button click in a site in my ASP.NET code?
    B B A

    Hi how can emulate button click in a site in my ASP.NET code? (button is in another site) tanks for your reply.

    ASP.NET csharp asp-net question

  • how to put a confirmation dialog before deleting a record from GridView?
    B B A

    hi after you insert a button in dataGridView , you can write follow code in onClientClick property : OnClientClick="return confirm('are you ... ?')"

    ASP.NET question tutorial

  • WebRequest class questions
    B B A

    hi you can upload , download files with "WebClient" class in .net. such as follow : WebClient client = new WebClient(); client.UploadFile(...)

    C# question csharp sysadmin security

  • javascript window
    B B A

    hi mehrdad see this site. http://www.javascript-coder.com/window-popup/javascript-window-open.phtml

    ASP.NET csharp question javascript asp-net

  • how can send and recive data to a web page?
    B B A

    hi i use of WebRequest.BeginGetRequestStream method such as follow , to send and get data to a site (for example to one of my web page application ) programmetically. my problem is these code doesn't work correctly. i think , problem is in set parameter. can you guide me? protected void btn_BeginGetRequestStream_Click(object sender, EventArgs e) { // Create a new HttpWebRequest object. HttpWebRequest request = (HttpWebRequest)WebRequest.Create(TextBox1.Text); // Set the ContentType property. request.ContentType = "application/x-www-form-urlencoded"; // Set the Method property to 'POST' to post data to the URI. request.Method = "POST"; // Start the asynchronous operation. request.BeginGetRequestStream(new AsyncCallback(ReadCallback), request); // Keep the main thread from continuing while the asynchronous // operation completes. A real world application // could do something useful such as updating its user interface. allDone.WaitOne(); // Get the response. HttpWebResponse response = (HttpWebResponse)request.GetResponse(); Stream streamResponse = response.GetResponseStream(); StreamReader streamRead = new StreamReader(streamResponse); string responseString = streamRead.ReadToEnd(); TextBox4.Text = responseString; // Close the stream object. streamResponse.Close(); streamRead.Close(); // Release the HttpWebResponse. response.Close(); } public static ManualResetEvent allDone = new ManualResetEvent(false); private static void ReadCallback(IAsyncResult asynchronousResult) { HttpWebRequest request = (HttpWebRequest)asynchronousResult.AsyncState; // End the operation. Stream postStream = request.EndGetRequestStream(asynchronousResult); //Console.WriteLine("Please enter the input data to be posted:"); string postData = "Text1=" + "hi"; // Convert the string into a byte array. byte[] byteArray = Encoding.UTF8.GetBytes(postData); // Write to the request stream. postStream.Write(byteArray, 0, postData.Length); postStream.Close(); allDone.Set(); } tanks :rose:

    ASP.NET tutorial design data-structures help question

  • how can programmatically post user's data to other web page and get result?
    B B A

    hi i want to create an ASP.NET application that one of it's part is dictionary. in this part i want to get user's word and send it to the a dictionary web page and after translate with this dictionary (site),i want to get result and show it in the my web application. finally how can i related between my web application and other sites or web pages??? in other word, how can programmatically post user's data to other web page and get result? tanks :rose:

    ASP.NET question csharp asp-net

  • a reference about first C# release
    B B A

    hi. can you get me a reference about first C# release date and it's good properties about other language? tanks.

    C# csharp question announcement

  • how can send fax with C# ?
    B B A

    hi. i want to send fax with C# and windows XP. what's the best way to send fax ?

    C# csharp question

  • how can get start path at load time ?
    B B A

    Luc Pattyn :tank so much :rose: it was very good.

    C# csharp question

  • how can get start path at load time ?
    B B A

    Hi, I have created a file association in my C# program, but it just opens my program and doesnt actually load the file. What should I do? Thanks,

    C# csharp question
  • Login

  • Don't have an account? Register

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