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
B

bishu_Visu

@bishu_Visu
About
Posts
2
Topics
0
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • how to pass values from 1 page to another..
    B bishu_Visu

    You can use session/query string to pass values from one page to another. query string Response.Redirect("Home.aspx?value="'+ddl.SelectedItem.Value+'"); on another page you can receive string temps=Request.QueryString["value"]; Session Session["TempToStore"]=ddl.SelectedItem.Value; Or In case of large data you can use XML Manipulation to write or Read. There is another way to create dataset and store it into session http://stackoverflow.com/questions/2288299/storing-and-retrieving-datatable-from-session

    ASP.NET tutorial question

  • object reference not set to an instance of an object
    B bishu_Visu

    Try This and then use

    Initialize array
    Int32[,] Process = new Int32[5,5];

    Int32 i = Convert.ToInt32("1");
    Int32 j = Convert.ToInt32("1");
    Process[i,j] = Convert.ToInt32("45");

    C# help data-structures
  • Login

  • Don't have an account? Register

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