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
S

sandamalsilva

@sandamalsilva
About
Posts
3
Topics
0
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Do I need to call return statement after a Response.Redirect method ?
    S sandamalsilva

    Is that the problem that you are afraid that below code will execute after Response.Redirect executes, isnt it? so dont be afraid. if the program reaches that Response.Redirect line, it normally stop executing that process and pass the control to next process, it will never execute below coding int x = 5; int y = 4; doSomething(x,y);

    ASP.NET question csharp asp-net database

  • Virtual Web Developer >> Change database name...?
    S sandamalsilva

    Can you explain your problem little bit more

    ASP.NET database question

  • how to convert date into english words
    S sandamalsilva

    you have to use a method which returns the word for each number. For an example refer the following code. public string getWordForNumber(int number) { string word = null; switch (number) { case 1 : word = "One"; break; case 2: word = "Two"; break; .. .. .. default: break; } return word; } For 30/31 days of month, you dont need 30/31 case on your switch. use another method which returns 10 to the power 1 numbers, For an example, for 21 --> for number 2 it should return Twenty, using the above method you can get next number, for number 1 - One, All together --> Twenty One

    ASP.NET help tutorial
  • Login

  • Don't have an account? Register

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