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
R

Ramin Tarhande

@Ramin Tarhande
About
Posts
4
Topics
1
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Limitation of users accessing an ASP.NET page
    R Ramin Tarhande

    try the following (put it in your Page_Load) if(!IsPostBack) { if(Application["num"]==null) Application.Add("num",0); int n=(int)Application["num"]; Application["num"]=++n; if(n>=50) { //show an error page } } il nome mio nessun sapra

    ASP.NET question csharp asp-net windows-admin

  • Container.DataItem.Row.GetChildRows Problem
    R Ramin Tarhande

    You must cast it first, because it thinks that it's an 'object'. in C# it would be somethig like this: ((System.Data.DataRowView)Container.DataItem).Row.GetChildRow["MsgComments"] good luck:-D il nome mio nessun sapra

    ASP.NET help docker question

  • Problem retrieving object from Session
    R Ramin Tarhande

    I store my data in an object an put it into Session sometimes when I want to get back the object from session I encounter an error message saying the object is null note: -the object is large (including some DataSets) -when I run in Debug mode it always works ok! could anybody help me solve the problem? :confused: thx il nome mio nessun sapra

    ASP.NET help dotnet debugging question

  • :: problem in UPDATE statement ::
    R Ramin Tarhande

    here is a sample code: int id=17; SqlConnection conn=new SqlConnection("initial catalog=Persons;user id=sa"); SqlCommand cmd=conn.CreateCommand(); cmd.CommandText="Update Catalog Set price=price*2 where id="+id.ToString(); cmd.CommandType=CommandType.Text; conn.Open(); cmd.ExecuteNonQuery(); conn.Close(); the better way would be to call a stored procedure & pass parameters to it I hope it helps. Movaffaq bashi :-O il nome mio nessun sapra

    ASP.NET csharp asp-net database help announcement
  • Login

  • Don't have an account? Register

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