Search

You searched for the word(s): userid:809742

Matching Posts

  • Re: Please can you provide me simple GridView Edit Delete Sample

    Thanks a lot for your valuable help..
    Posted to Web Forms (Forum) by ASHISH1985S on 9/6/2008
  • Re: Please can you provide me simple GridView Edit Delete Sample

    Hi, Thanks for your intrest for the same.. but i need code which is not useing SQL Data source as i have to follow 3 - tier architecture in the same... As edit is done but if i am apply delete than whole page is loaded again so i lost my current state.. Thanks.. Ashish Shah
    Posted to Web Forms (Forum) by ASHISH1985S on 9/4/2008
  • Please can you provide me simple GridView Edit Delete Sample

    Please can any one provide me Grid View Sample with Edit-Delete... Thankx
    Posted to Web Forms (Forum) by ASHISH1985S on 9/2/2008
  • Re: How can I manually bind a listview control.

    Hello, Same thing you can bind with listview easily.. For binding listview control i have code in c# but no matters to convert it to vb.. listview1.DataSource=dt; listview1.DataBind(); with Regards.. Ashish Shah India
    Posted to Data Presentation Controls (Forum) by ASHISH1985S on 8/14/2008
  • Re: .net

    Hello, Please give some more idea about what you exactly needed.. With regards.. Ashish Shah India
    Posted to C# (Forum) by ASHISH1985S on 7/3/2008
  • Re: set bellow style dynamically in asp.net 2.0 and these values I will get from database--urgent

    Hello, You can add style font color and size using this code.. HeaderLogo.style.font.fontColor = "Black" ; HeaderLogo.style.font.fontSize = "Your Font Size" ; With Regards.. Ashish Shah India NOTE:Please make, mark post as answered if you find that post is helpful to you..
    Posted to Web Forms (Forum) by ASHISH1985S on 7/3/2008
  • Re: DirectoryInfo: size? (C#)

    Hello, System.IO.DirectoryInfo dir = new DirectoryInfo('Directory Fullpath'); FileSystemInfo[] filelist = dir.GetFileSystemInfos(); FileInfo[] fileInfo; fileInfo = dir.GetFiles("*", SearchOption.AllDirectories); for (int i = 0; i < fileInfo.Length; i++) { try { size += fileInfo[i].Length; } catch { } } This code will give you total size of your directory... With Regards.. Ashish Shah India NOTE:Please make mark post as answered if post is helps you ...
    Posted to C# (Forum) by ASHISH1985S on 7/3/2008
  • Re: can we do with sessions ?

    Hello harish , you can do this with , SQLServer session, which is maintaing at SQL server as well you can do this using stat server session which is maintain at iis,, i will prefer you sql server session which is more reliabel ,light and more secure than stat server session... you may get idea for SQL SErver Session from below mention link.. http://projectserverblogs.com/?p=1100 With regards.. Ashish Shah India NOTE:Please mark post as answered if you find post is helpful to you
    Posted to State Management (Forum) by ASHISH1985S on 7/3/2008
  • Re: checking session exists or not

    Hello Ramesh, This is simple using .net.. You have to do, if(Session["YourSessionVariable"] !=null) { //Session is exist // Your code } else { //session is not exist } With Regards.. Ashish Shah India NOTE: Please mark this post as answered if post is helpful to you..
    Posted to State Management (Forum) by ASHISH1985S on 7/3/2008
  • Re: session

    Hello, Session in ASP.net can be stored in 3 ways. 1. Inproc 2. State Server 3. SqlServer The InProc mode of Session State management is the fastest among all of the storage modes available and stores the Session data in the ASP.NET worker process. Performance will be effected if the amount of data stored in the session is large. Basically the session is stored in the memory space of an application domain and is volatile.So if asp.net worker process i.e. aspnet_wp.exe restarts then the session state
    Posted to State Management (Forum) by ASHISH1985S on 7/3/2008
Page 1 of 3 (23 items) 1 2 3 Next >