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
T

TAREQ F ABUZUHRI

@TAREQ F ABUZUHRI
About
Posts
173
Topics
122
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • http webrequest
    T TAREQ F ABUZUHRI

    when i try to get this link http://www.yellowpages.com.au/qld/gatton/a-12000029-listing.html[^] using HttpWebRequest request = (HttpWebRequest)WebRequest.Create(link); request.AllowAutoRedirect = true; HttpWebResponse response = (HttpWebResponse)request.GetResponse(); Stream resStream = response.GetResponseStream(); StreamReader objSR; objSR = new StreamReader(resStream, System.Text.Encoding.GetEncoding("utf-8")); string sResponse = objSR.ReadToEnd(); i don't get any response from server please help why this happen

    Palestine

    C# html com sysadmin help

  • google master tools Pages crawled per day only 700 while i have more than 500,000 pages?
    T TAREQ F ABUZUHRI

    Pages crawled per day only 700 while i have more than 500,000 pages my website is http://www.whomex.com my Pages crawled per day only 700 while i have more than 500,000 page why this happen ?? how i can increse the Pages crawled per day Category

    Palestine

    Running a Business com tools question

  • Algorithm for a de-captcha project
    T TAREQ F ABUZUHRI

    do you found the solution ??? i have same issue http://www.codeproject.com/Questions/127525/image-procesing-get-text-from-image.aspx please help if you can

    Palestine

    Algorithms csharp com algorithms json question

  • image procesing get text from image
    T TAREQ F ABUZUHRI

    how i can do.. do you have example?

    Palestine

    C# com

  • image procesing get text from image
    T TAREQ F ABUZUHRI

    is there is any way to get text from image like in this photo http://whomex.com/code.pngwhomex.com/code.png http://whomex.com/code.pngwhomex.com/code1.png http://whomex.com/code.pngwhomex.com/code2.png http://whomex.com/code.pngwhomex.com/code3.png http://whomex.com/code.pngwhomex.com/code4.png http://whomex.com/code.pngwhomex.com/code5.png http://whomex.com/code.pngwhomex.com/code6.png http://whomex.com/code.pngwhomex.com/code7.png

    Palestine

    C# com

  • i have problem with uploading image to server using httpwebrequest
    T TAREQ F ABUZUHRI

    it's different problem please see it ..

    Palestine

    C# help csharp php dotnet com

  • i have problem with uploading image to server using httpwebrequest
    T TAREQ F ABUZUHRI

    i try to upload image to PHP server but still have problem when i access url direct http://images3.souq.com/upload\_pict\_url.php i can send image please HELP >>>> private void button1_Click(object sender, EventArgs e) { //using System.IO;//using System.Net; HttpWebResponse response; Stream resStream; StreamReader objSR; CookieContainer cookieContainer = new CookieContainer(); ASCIIEncoding encoding = new ASCIIEncoding(); HttpWebRequest request; string sResponse; string postData; string UrlLogin; try { UrlLogin = "http://images3.souq.com/upload_pict_url.php"; //UrlLogin = "http://localhost:63637/whois/test0.aspx"; string uploadfile = "C:\\fax\\pics\\7130570.jpg"; string fileFormName = "userfile"; string contenttype = "image/jpeg";//"image/pjpeg"; request = (HttpWebRequest)WebRequest.Create(UrlLogin); //request.Accept = "*/*"; request.KeepAlive = true; request.CookieContainer = cookieContainer; string boundary = "----------" + DateTime.Now.Ticks.ToString("x"); request.ContentType = "multipart/form-data; boundary=" + boundary; request.UserAgent = "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727)"; request.Method = "POST"; request.AllowAutoRedirect = true; StringBuilder sb = new StringBuilder(); string name1 = "wm_flag"; string value1 = "0"; sb.Append("--"); sb.AppendLine(boundary); sb.AppendLine(string.Format("Content-Disposition: form-data; name=\"{0}\"", name1)); sb.AppendLine(); sb.AppendLine(value1); sb.Append("--"); sb.Append(boundary); sb.Append("\r\n"); sb.Append("Content-Disposition: form-data; name=\""); sb.Append(fileFormName); sb.Append("\"; filename=\""); sb.Append(Path.GetFileName(uploadfile)); sb.Append("\""); sb.Append("\r\n"); sb.Append("Content-Type: "); sb.Append(contenttype); sb.Append("\r\n"); sb.Append("\r\n"); string postHeader =

    C# help csharp php dotnet com

  • HttpWebResponse/HttpWebRequest upload image
    T TAREQ F ABUZUHRI

    i have prolem with uloadinge image to server i try to upload image and send data (POST) method a the same time i use this code

                HttpWebResponse response;
                Stream resStream;
                StreamReader objSR;
                CookieContainer cookieContainer = new CookieContainer();
                ASCIIEncoding encoding = new ASCIIEncoding();
                HttpWebRequest request;
                string sResponse;
                string postData;
                byte\[\]  data;
                string UrlLogin;
    
                //Upload Image Page \*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*
                //\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*
    
                UrlLogin = "http://localhost:63637/whois/test0.aspx";
                string uploadfile = "C:\\\\fax\\\\pics\\\\7130570.jpg";
                string fileFormName = "userfile";
                string contenttype = "image/pjpeg";
    
                postData = "?wm\_flag=" + "0";
                postData += ("&action=" + "process");
                postData += ("&hi=" + "ft");
                request = (HttpWebRequest)WebRequest.Create(UrlLogin + postData);
                //request.Accept = "\*/\*";
                request.KeepAlive = true;
                request.CookieContainer = cookieContainer;
                string boundary = "----------" + DateTime.Now.Ticks.ToString("x");
                request.ContentType = "multipart/form-data; boundary=" + boundary;
                request.UserAgent = "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727)";
                request.Method = "POST";
                request.AllowAutoRedirect = true;
    
                data = encoding.GetBytes(postData);
    
                StringBuilder sb = new StringBuilder();
                sb.Append("--"); sb.Append(boundary); sb.Append("\\r\\n"); sb.Append("Content-Disposition: form-data; name=\\""); sb.Append(fileFormName); sb.Append("\\"; filename=\\"");
                sb.Append(Path.GetFileName(uploadfile)); sb.Append("\\""); sb.Append("\\r\\n"); sb.Append("Content-Type: "); sb.Append(contenttype); sb.Append("\\r\\n"); sb.Append("\\r\\n");
                string postHeader = sb.ToString();
                byte\[\] postHeaderBytes = Encoding.UTF8.GetBytes(postHeader);
    
                // Build the trailing boundary string as a byte array
                // ensuring the boundary appears on a line by itself
                byte\[\] boundaryBytes = Encoding
    
    C# csharp dotnet sysadmin data-structures question

  • image DBNull
    T TAREQ F ABUZUHRI

    SqlDataReader read = cmd.ExecuteReader(); read.Read(); photo.Visible = false; if (read["newsPhoto"] != DBNull.Value) { photo.Visible = true; photo.ImageUrl = "retriveImage.aspx?id=" + read["newId"].ToString(); } this my code to display image but all time enter this if statment either i upload the image or not all time he enter if statment ... where the problem ?????

    Palestine

    C# help question

  • image column
    T TAREQ F ABUZUHRI

    i have table with multy column ,, one of this column is image i store photo on it ,,, my question ,if i want to update recode on this table to delete this image ... what the SQL statment must be ...

    Palestine

    C# database question announcement

  • image datatype
    T TAREQ F ABUZUHRI

    i create new table and have feild from type image and allow null in my program i want to ck if this field is fill or empity ?? i use c# ,,,

    Palestine

    Database csharp question

  • PROCEDURE Update
    T TAREQ F ABUZUHRI

    now how can know if the PROCEDURE make update successfully to database or not ???

    Palestine

    Database database question announcement

  • PROCEDURE Update
    T TAREQ F ABUZUHRI

    i write PROCEDURE to update record in datadate this PROCEDURE have where statment ,,, mow how can if the PROCEDURE make update successfully to database or not ???

    Palestine

    Database database question announcement

  • Drop
    T TAREQ F ABUZUHRI

    thanks rami , i will be very happey to see in my msn tareq_abuzuhri@hotmail.com

    Palestine

    Database question

  • Drop
    T TAREQ F ABUZUHRI

    i make drop to table .. i want to retrive this table what i can do ??

    Palestine

    Database question

  • convert image to Byte
    T TAREQ F ABUZUHRI

    please need example to know what u mean exactly ..

    Palestine

    C# tutorial question

  • convert image to Byte
    T TAREQ F ABUZUHRI

    can u give me example ?

    Palestine

    C# tutorial question

  • convert image to Byte
    T TAREQ F ABUZUHRI

    Image img; DataPhoto = new Byte[File.ContentLength]; img=Image.FromStream(DataPhoto); the above code convert Byte to Image my quastion how to convert image to Byte ???

    Palestine

    C# tutorial question

  • error Array
    T TAREQ F ABUZUHRI

    i have this error ------ Array initializers can only be used in a variable or field initializer. Try using a new expression instead. ------ with this code oEdit1.CustomButtons = new string[] {{"CustomName1","alert(\'Command 1 here.\')", "Caption 1 here", "btnCustom1.gif"}, {"CustomName2","alert(\\\"Command \'2\' here.\\\")","Caption 2 here","btnCustom2.gif"}, {"CustomName3","alert(\'Command \\\"3\\\" here.\')","Caption 3 here","btnCustom3.gif"}}; do u know how can solve this error

    Palestine

    C# data-structures help

  • Photo Thumbnail
    T TAREQ F ABUZUHRI

    i want to make Photo Thumbnail copy and save it in data base --- please i want help , i want to make upload to photo befoar save it in data base i want to make copy from this photo and resize it to make Thumbnail image and then save it in data base

    Palestine

    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