Search

You searched for the word(s): userid:699887

Matching Posts

  • Re: Godaddy.com and MySql.Data.dll problems.

    i have tried everything you explained and got error like that Server Error in '/' Application. Compilation Error Description: An error occurred during the compilation of a resource required to service this request. Please review the following specific error details and modify your source code appropriately. Compiler Error Message: CS0246: The type or namespace name 'MySql' could not be found (are you missing a using directive or an assembly reference?) Source Error: Line 1: <%@ Page Language=
    Posted to MySQL (Forum) by ibrahimersoy on 2/15/2007
  • ASP.NET 2.0-SQLEXPRESS 2005 Connection Problem

    i got an error just like that.What must i do? An error has occurred while establishing a connection to the server. When connecting to SQL Server 2005, this failure may be caused by the fact that under the default settings SQL Server does not allow remote connections. (provider: Named Pipes Provider, error: 40 - Could not open a connection to SQL Server)
  • Re: DirectX Support

    Have you heard of X3D? i talk about that technology.Like VRML...
    Posted to Feature Requests (Forum) by ibrahimersoy on 1/16/2007
  • Re: Hit points in a Image

    are u going to draw geometric shapes using coords? or something else?
    Posted to System.Drawing/GDI+ (Forum) by ibrahimersoy on 1/14/2007
    Filed under: C#
  • Re: Getting Coordinates of an ImageButton When Clicked!

    lets make a scenarios: 1)u can use this code whether u want to take the color of the imagebutton 2)u can use this code whether u want to take coords of a city,town in a map i can consume much more scenarios with that.Are the scenarios above enough for you or shall i write much more???
    Posted to Tips & Tricks (Forum) by ibrahimersoy on 1/12/2007
    Filed under: Code sample
  • DirectX Support

    i think directx support would be great.it supports directx but not as i expected.if asp.net supported directx just like in windows programming that would be great.
    Posted to Feature Requests (Forum) by ibrahimersoy on 1/10/2007
    Filed under: asp.net 2.0
  • Re: what does the statement means..........?

    i think u created a variable named m_ResponseData.And u are creating a sample of ResponseData() class which u are making equal to m_ResponseData. 1th Declaration; ResponseData m_ResponseData(); m_Response=new ResponseData(); 2nd Declaration; ResponseData m_ResponseData=new ResponseData(); 1th declaration and 2nd Declaration are the same.
    Posted to C# (Forum) by ibrahimersoy on 1/9/2007
    Filed under: C#
  • Two Ways to check whether cookie exists or not!

    1.way; bool KurabiyeKontrol(String anahtar) { HttpCookieCollection kurabiye=Request.Cookies; System.Collections.IEnumerator e=kurabiye.GetEnumerator(); while(e.MoveNext()) { if (e.Current.Equals(anahtar)) { return(true); } } return(false); } 2.way; bool KurabiyeKontrol2(String anahtar) { int i; String[] anahtarlar; anahtarlar=Request.Cookies.AllKeys; for(i=0;i<anahtarlar.Length;i++) { if(anahtarlar ==anahtar) { return(true); } } return(false); }
    Posted to Tips & Tricks (Forum) by ibrahimersoy on 1/9/2007
    Filed under: Code sample
  • Cookie that contains multiple values

    Void KurabiyeOlustur() { HttpCookie Kurabiye=new HttpCookie("Key","value"); int i; for(i=1;i<10;i++) { Kurabiye.Values.Add(i.ToString(),"Key" + i.ToString()); } Response.AppendCookie(Kurabiye); }
    Posted to Tips & Tricks (Forum) by ibrahimersoy on 1/9/2007
    Filed under: Code sample
  • Creating Global Cookie

    HttpCookie kurabiye=new HttpCookie("key","value"); kurabiye.Expires=new DateTime(2010,1,1,23,00,00); //this cookie will store until 1/1/2010 23:00:00 Response.Cookies.Add(kurabiye);
    Posted to Tips & Tricks (Forum) by ibrahimersoy on 1/9/2007
    Filed under: Code sample
Page 1 of 3 (29 items) 1 2 3 Next >