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
C

ca8msm

@ca8msm
About
Posts
28
Topics
0
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Listbox
    C ca8msm

    http://aspnetlibrary.com/codebankdetails.aspx?type=Controls&codebank=Get-a-list-of-all-selected-items-in-a-CheckBoxList The ListBox works in the same manner as the CheckBoxList when it comes to looping through items, so simply use the example from the article above and replace the name of the CheckBoxList with the name of your ListBox.

    Mark, http://aspnetlibrary.com

    ASP.NET tutorial

  • Saving images to the server folder
    C ca8msm

    http://aspnetlibrary.com/codebankdetails.aspx?type=Images&codebank=How-to-save-a-remote-image

    Mark, http://aspnetlibrary.com

    ASP.NET sysadmin help question

  • Is it safe to move to IE7?
    C ca8msm

    You should install IE7 even if it is just to test what your site(s) look like in this browser. If any of your users are using it and you haven't tested it, they may be experiencing problems that you are not aware of.

    Mark, http://aspnetlibrary.com

    ASP.NET question announcement

  • disable copy otion
    C ca8msm

    Don't do it. If you try and mess with the user's browser by disabling it's functionality you will end up annoying your users. Plus, there are really easy ways to get around whatever solution you come up with.

    Mark, http://aspnetlibrary.com

    ASP.NET

  • listbox to display
    C ca8msm

    Use the SelectedIndexChanged event of the DropDownList to populate your ListView based on the SelectedItem of the DropDownList.

    Mark, http://aspnetlibrary.com

    ASP.NET help

  • Email
    C ca8msm

    It could be any number of problems unfortunately. Some that I can think of are: 1) SMTP Server not setup 2) SMTP Server not forwarding emails 3) Network issue 4) Email address incorrect 5) Junk mail rules stopping email

    Mark, http://aspnetlibrary.com

    ASP.NET csharp asp-net help

  • Improve the performance
    C ca8msm

    You could add some Data Caching

    Mark, http://aspnetlibrary.com

    ASP.NET csharp database performance tutorial code-review

  • How to get wether the opened page is secure or nonsecure in asp.net
    C ca8msm

    That method may not work as the referrer isn't always passed by the browser (the user can disable it if they want) and it wont exist if you type the address directly into the address bar. Check out my earlier reply on the Request.Url.OriginalString method.

    Mark, http://aspnetlibrary.com

    ASP.NET csharp asp-net tutorial

  • Gridview
    C ca8msm

    You'll need to use the FindControl method. Do some research on this method if you haven't used it before.

    Mark, http://aspnetlibrary.com

    ASP.NET tutorial

  • Email
    C ca8msm

    http://aspnetlibrary.com/codebankdetails.aspx?type=Email&codebank=Send-an-email

    Mark, http://aspnetlibrary.com

    ASP.NET csharp asp-net help

  • How to get wether the opened page is secure or nonsecure in asp.net
    C ca8msm

    Try parsing the Request.Url.OriginalString path

    Mark, http://aspnetlibrary.com

    ASP.NET csharp asp-net tutorial

  • showing locations on map
    C ca8msm

    Try having a look at Google Maps as they provide some good functionality.

    Mark, http://aspnetlibrary.com

    ASP.NET question com business

  • Tracking users in ASP.NET 2.0
    C ca8msm

    No probs. Quick example if you don't know how to use them: To add them: Session.Add("username","bob") To retrieve them: Label1.Text = Session.Item("username")

    Mark, http://aspnetlibrary.com

    ASP.NET question csharp asp-net help tutorial

  • How to apply filter to Input file type control in asp.net [modified]
    C ca8msm

    You'll have to check the file extension in your ASP.NET code once the file has been uploaded.

    Mark, http://aspnetlibrary.com

    ASP.NET csharp asp-net tutorial

  • how to run web application on server.
    C ca8msm

    You'll have to provide more information than "its not running on the server". That could mean anything.

    Mark, http://aspnetlibrary.com

    ASP.NET sysadmin help tutorial

  • Tracking users in ASP.NET 2.0
    C ca8msm

    Use session variables for each user

    Mark, http://aspnetlibrary.com

    ASP.NET question csharp asp-net help tutorial

  • get control id from the content page
    C ca8msm

    When the HTML is written out to the Page, your button's ID in the HTML probably isn't "Button1". That means your javascript method will fail. To get around this, write the javascript into a String on the Server-Side and add it to the Page by using the RegisterClientScriptBlock method. When inserting the Button's ID, use MyButton.ClientID to get the correct id.

    Mark, http://aspnetlibrary.com

    ASP.NET

  • Server Error
    C ca8msm

    Have you done what the error suggested you do?

    Mark, http://aspnetlibrary.com

    ASP.NET

  • Javascript-codebehind
    C ca8msm

    Why would you need to call a javascript function from a code-behind page?

    Mark, http://aspnetlibrary.com

    ASP.NET

  • Extending the Textbox Control in ASP.Net using C#
    C ca8msm

    It will if you extend the control as it will inherit all of it's properties and methods.

    Mark, http://aspnetlibrary.com

    ASP.NET
  • Login

  • Don't have an account? Register

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