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

Sandeep Kumar

@Sandeep Kumar
About
Posts
105
Topics
0
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • DataTable / DataRow / someDataTable.Select() Issue
    S Sandeep Kumar

    hi... what your thinking is rite..... If the DataRow that is passed as a parameter is in a detached state, it is ignored, and no exception is thrown while importing the datarow...

    Regards, Sandeep Kumar.V

    C# database csharp help css question

  • url encode with '+'
    S Sandeep Kumar

    Hi you find info in below link.... http://www.albionresearch.com/misc/urlencode.php

    Regards, Sandeep Kumar.V

    ASP.NET database sysadmin tutorial question announcement

  • how to create a session for a loging user?
    S Sandeep Kumar

    Hi, Inorder to solve your problem you need to do follow the below steps. 1)on sucess full login before redirecting to members page keep the username in session. 2)on page load of members page check for the session contain some value.. if it contains some value then the use is a logged in user else if it is null redirect user to login page. 3)on clicking logout clear the session so that after clicking if user copy pastes that members page link also he will be redirected to login page has you cleared session.

    Regards, Sandeep Kumar.V

    ASP.NET help tutorial question

  • DataGrid DATE process???
    S Sandeep Kumar

    Hi..... I think there is no formatter to format like that...... in dotnet you can acheive that.....like..... eg: <asp:BoundField **DataFormatString="{0:dd-MMM-yyyy}"** DataField="ShippedDate" HeaderText="Shipped Date" />

    Regards, Sandeep Kumar.V

    ASP.NET csharp help asp-net database sql-server

  • SEARCH A FILE in solution explorer?
    S Sandeep Kumar

    give same namespace for both user controls then same as classes you can access them.....

    Regards, Sandeep Kumar.V

    ASP.NET csharp question asp-net help tutorial

  • SEARCH A FILE in solution explorer?
    S Sandeep Kumar

    John Sundar wrote:

    this.MenuPlaceHolder.Controls.Add((UserControl)LoadControl("file1.ascx"));

    i guess above code should be like below one...... this.MenuPlaceHolder.Controls.Add((UserControl)LoadControl("\output\file1.ascx"));

    Regards, Sandeep Kumar.V

    ASP.NET csharp question asp-net help tutorial

  • SEARCH A FILE in solution explorer?
    S Sandeep Kumar

    Hi... for the file A1 which is in the folder suppose give namespace as namespace TestNamespace { public class A1 { ............ } } for the file which is out side the folder give same name space like... namespace TestNamespace { Public class out1 { } } now if you want ot access any for the files you can directly call that cllas name in your class file.... like.... namespace TestNamespace { Publc class out2 { out1 o=new out1(); A1 a=new A1(); } } Hope with this you can get some thing...... :)

    Regards, Sandeep Kumar.V

    ASP.NET csharp question asp-net help tutorial

  • DataGrid DATE process???
    S Sandeep Kumar

    John Sundar wrote:

    select convert(varchar,column1 as "Test column",106) from tbl_name

    the query is not correct..... select convert(varchar,column1,106) as "Test column" from tbl_name

    Regards, Sandeep Kumar.V

    ASP.NET csharp help asp-net database sql-server

  • SEARCH A FILE in solution explorer?
    S Sandeep Kumar

    hi.... you can achieve that by using namespaces. Give same namespace for all the pages that u want to access.

    Regards, Sandeep Kumar.V

    ASP.NET csharp question asp-net help tutorial

  • DataGrid DATE process???
    S Sandeep Kumar

    Hi can acheive that in two ways.

    John Sundar wrote:

    i want to change those date in (23-Jul-2007).

    1. while writing query to retriew data from SQL server you need to use convert function. eg: select convert(varchar,DateColumn,105) from tablename 2) In databound of datagrid coloum u can foramt.

    Regards, Sandeep Kumar.V

    ASP.NET csharp help asp-net database sql-server

  • Datagridview problem
    S Sandeep Kumar

    Hi,

    soniasan wrote:

    sqlcommand1.ExecuteNonQuery()

    comment the above line and try to execute the code...

    Regards, Sandeep Kumar.V

    Visual Basic help

  • Best method for keeping website visitor count in database
    S Sandeep Kumar

    Hi,

    N a v a n e e t h wrote:

    I thought of using locking.

    Thats a good idea and it will work fine.......I used same concept in one of my projects.

    Regards, Sandeep Kumar.V

    Database csharp announcement html css database

  • hi
    S Sandeep Kumar

    Hi.... you need to change the below lines...

    mon***z wrote:

    lst_emp.DataTextField=objds.Tables[0].Columns["txtval"].ToString(); lst_emp.DataValueField=objds.Tables[0].Columns["emp_id"].ToString();

    to...... lst_emp.DataTextField = "txtval"; lst_emp.DataValueField = "emp_id";

    Regards, Sandeep Kumar.V

    Database help

  • Datagridview problem
    S Sandeep Kumar

    Hi, As u have not set any sql command for GDataAdapter u r getting that error.....

    Regards, Sandeep Kumar.V

    Visual Basic help

  • how to ZIP and UNZIP in C#
    S Sandeep Kumar

    Hi..... By using GZipStream class you can compress and decompress the file..... GZipStream Example Link[^]

    Regards, Sandeep Kumar.V

    C# question csharp tutorial

  • passing value from close event of window
    S Sandeep Kumar

    tonymathewt wrote:

    Is it possible to send and recieve a parameter or value from a window opened from a parent window.

    Yes,by using javascript class Opener. Example for using Opener Class OpnerWindow

    Regards, Sandeep Kumar.V

    Web Development

  • java script problem
    S Sandeep Kumar

    Hi anthor way of doing the things..... function close() { return window.confirm("Click ok to close"); }

    Regards, Sandeep Kumar.V

    ASP.NET java tools help question

  • Query
    S Sandeep Kumar

    Welcome........:)

    Regards, Sandeep Kumar.V

    Database database help

  • Query
    S Sandeep Kumar

    Hi....here is the query........ SELECT ProductID from tablename where SNo = (SELECT MAX(SNO) from tablename)

    Regards, Sandeep Kumar.V

    Database database help

  • java script problem
    S Sandeep Kumar

    Hi here is the code.......... function close() { event.returnValue = "Any string value here forces a dialog box to appear before closing the window."; }

    Regards, Sandeep Kumar.V

    ASP.NET java tools help question
  • Login

  • Don't have an account? Register

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