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
M

Marco van der Linden

@Marco van der Linden
About
Posts
5
Topics
0
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Parse the selected value from ddl and fill another ddl with information + NHibernate + C#
    M Marco van der Linden

    Hi Thommie, Its a method that retrieve data from the database. public DataTable Retrieve_Municipalities( int region) { string connectieString = ConfigurationSettings.AppSettings["ConnectieString"]; SqlConnection connectie = new SqlConnection(connectieString); SqlCommand commando = new SqlCommand("spRetrieveMunicipalities", connectie); SqlDataAdapter adapter = new SqlDataAdapter(commando); commando.CommandType = CommandType.StoredProcedure; SqlParameter parameterHoofdgroep = new SqlParameter("@region", SqlDbType.Int); parameterregion.Value = region; commando.Parameters.Add(parameterregion); DataTable regions= new DataTable(); adapter.Fill(regions); connectie.Close(); return regions; } Greetings, Marco :doh:

    ASP.NET csharp help asp-net question

  • Parse the selected value from ddl and fill another ddl with information + NHibernate + C#
    M Marco van der Linden

    Hi Thommie, I think your looking for somting like this: private void ddlRegions_SelectedIndexChanged(object sender, System.EventArgs e) { RetrieveMunicipalities( int.Parse( ddlRegions.SelectedValue ) ); } private void RetrieveMunicipalities( int region) { ddlMunicipalities.DataSource = Retrieve_Municipalities( region); ddlMunicipalities.DataBind(); } Greetins, Marco van der Linden

    ASP.NET csharp help asp-net question

  • String To XML
    M Marco van der Linden

    Hello Elizma, Just write the string to a file with the extention ".xml". Greetings, Marco van der Linden

    ASP.NET xml help question

  • Unable to run a report from client PC...
    M Marco van der Linden

    hello Ajay Kumar, I had the same error.. try installing the Crystal Reports for .NET Framework 2.0 it works for me now http://msdn2.microsoft.com/en-us/library/ms225293(VS.80).aspx[^] Greetings, Marco van der Linden :)

    ASP.NET visual-studio sysadmin help

  • Hej
    M Marco van der Linden

    Hello, With the next call you go back to the previous url. Response.Redirect(Request.UrlReferrer); Greetings, Marco

    ASP.NET database com 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