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
K

kadaoui el mehdi

@kadaoui el mehdi
About
Posts
31
Topics
2
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • how to solve dynamic control panel postback problem?
    K kadaoui el mehdi

    Hello, I recommand to use the Callback and not postback. For more infotmations you can check this topic : Callback WebControls[^] I hope that will help you. Good luck.

    ASP.NET csharp asp-net help tutorial question

  • X509Certificate Error
    K kadaoui el mehdi

    try with others protocols

    SslProtocols.Tls

    .NET (Core and Framework) security sysadmin cryptography help

  • Windows service error [modified]
    K kadaoui el mehdi

    Hi, which version of .Net did you develop the Windows Service ? is the same version is installed on Win Server 2008 ?

    .NET (Core and Framework) help sysadmin question

  • How to get the current url in the code [modified]
    K kadaoui el mehdi

    Did you try

    Request.QueryString

    ?

    ASP.NET question com help tutorial

  • Tabstop property of control missing in asp.net
    K kadaoui el mehdi

    AS i said, you have to implement it on Client-side on Javascript http://forums.asp.net/t/881850.aspx[^] http://www.codeguru.com/csharp/.net/net_asp/controls/article.php/c5355[^]

    ASP.NET csharp asp-net tutorial

  • help needed
    K kadaoui el mehdi

    :)

    .NET (Core and Framework) csharp question help

  • help needed
    K kadaoui el mehdi

    Reflector decompiles an assembly to .net language C# or VB.net or MSIL, and the "there is no solution" means "to encourage him to learn c#" ;)

    .NET (Core and Framework) csharp question help

  • help needed
    K kadaoui el mehdi

    you must learn C#, there is no other solution to your problem!

    .NET (Core and Framework) csharp question help

  • View blob files from SQL to a Picture Box in Windows form?
    K kadaoui el mehdi

    you have to convert the byte array to image look at this: C# Image to Byte Array and Byte Array to Image Converter Class[^] Good luck.

    C# database help question

  • Change the properties of the controls
    K kadaoui el mehdi

    On the Combox1 Selectedindexchanged Event (when you select a Value)

    private void comboBox1_SelectedIndexChanged(object sender, EventArgs e)
    {
    foreach (Control tb in this.Controls)
    {
    if (tb.Name == comboBox1.Text )
    tb.Visible = false;
    }

        }
    
    C# csharp

  • Change the properties of the controls
    K kadaoui el mehdi

    the 4 textboxex are static or dynamic ? i mean you will have always those 4 textboxs or maybe change on 3 or 5 ?

    C# csharp

  • Questions about ASPNETDB.MDF
    K kadaoui el mehdi

    Merge the two databases on One! and then make your relationship with tables.

    ASP.NET database csharp asp-net sql-server sysadmin

  • Tabstop property of control missing in asp.net
    K kadaoui el mehdi

    you have to di it on Javascript ;) because it's a Front end functionality not back end. Look at the internet for Javascripts samples to resolve your problem. Goof luck:thumbsup:

    ASP.NET csharp asp-net tutorial

  • MVC and Dataset
    K kadaoui el mehdi

    http://forums.asp.net/t/1429371.aspx[^] http://social.microsoft.com/Forums/en-US/Offtopic/thread/656e92d5-c3fe-4c55-bb99-8de165f87b7f[^]

    ASP.NET tutorial asp-net architecture help

  • error in data reader and connection
    K kadaoui el mehdi

    hello, in the past i had the same problem and i thnink that the when executing the commande on backgrounfd the DataReader (already opened) associeted is opened, i guess that is the cause of the error (open an opened DataReader)

    .NET (Core and Framework) data-structures debugging help

  • Controller and MVC
    K kadaoui el mehdi

    Hi, Check the Link below you will find all information that you need good luck http://www.asp.net/mvc/tutorials/using-asp-net-mvc-with-different-versions-of-iis-cs[^]

    ASP.NET asp-net csharp architecture question

  • how to transfer data from one gridview to another gridview page
    K kadaoui el mehdi

    Hi, you can create a temp table to insert the Selected Rows and when you redirect to the other page select thoses rows for Db and put them in the datatable to be a datasource for the GridView. Good luck ;)

    ASP.NET csharp tutorial asp-net

  • Failed to update database "C:\BCPORTAL\APP_DATA\BCANCER.MDF" because the database is read-only.
    K kadaoui el mehdi

    try to assign admin role to "asp.net user" good luck. Mehdi

    ASP.NET database help csharp visual-studio windows-admin

  • column selection of GridView
    K kadaoui el mehdi

    try this: http://quickstarts.asp.net/QuickStartv20/util/srcview.aspx?path=~/aspnet/samples/data/PagingSortingCallbacks.src[^]

    ASP.NET database sysadmin help

  • Dynamically Changing EventHandlers in Web page
    K kadaoui el mehdi

    to add controls (with eventhandlers) on pageweb you have to add it on page-init. try this:

    protected override void OnInit(EventArgs e)
    {
    base.OnInit(e);
    lblDialogTitle.Text = "Confirm Exit";
    lblDialogMessage.Text = "Are you sure? Click OK to continue and lose any data entered";
    ClearEventHandlers(btnDialogOK);
    btnDialogOK_Click.Click += new EventHandler(btnDialogOK_Click);
    ClearEventHandlers(btDialogCancel);
    btnDialogCancel_Click += new EventHandler(btnDialogCancel_Click);
    }

    protected void btnWelcomePage_Click(object sender, ImageClickEventArgs e)
    {
    if (this.HasChanges())
    {

        pnlDialog.Visible = true;
    }
    else
    {
        Response.Redirect("~/WelcomePage.aspx");
    }
    

    }

    good luck Mehdi

    ASP.NET com algorithms debugging help 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