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
CODE PROJECT For Those Who Code
  • Home
  • Articles
  • FAQ
Community
P

Pratik Desai

@Pratik Desai
About
Posts
7
Topics
0
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • upload file to server
    P Pratik Desai

    I had written a article about File Upload. You can find it here[^].

    ASP.NET sysadmin tutorial question

  • Concurrency problem
    P Pratik Desai

    If you are using oracle you can use select for update statement. If you are using MS Sql Server. MS SQL Server uses a read-lock everytime you read something,nobody is allowed to change the data if you are reading them, hence you can update the data if you are reading. Hope this helps.

    ASP.NET help csharp database question announcement

  • use datareader browse dataabse???
    P Pratik Desai

    Your error message indicates that your command objects oCmd and oCmd2 might be using the same connection object. Make sure that they use different connections and your code will work. eg. oCmd = New SqlCommand(query1, connection1) oCmd2 = New SqlCommand(query2, connection2)

    ASP.NET help csharp php asp-net database

  • validator
    P Pratik Desai

    To the View button add CausesValidation=False so that it does not perform validation And then on server side onclick for the view button redirect to the appropriate page.

    ASP.NET help question tutorial

  • which Machine.config in use??
    P Pratik Desai

    It depends on the version of Visual Studio.net you are using. Visual Studio .net 2002 is shipped with version 1.0 of the Microsoft .net framework sdk while visual studio .net 2003 is shipped with version 1.1 Thus VS .NET 2002 always builds version 1.0 applications, whereas VS .NET 2003 builds 1.1 applications Visual studio .net 2003 also allows you to choose which version your project supports by providing Supported Runtimes property. From the VS .net 2003 toolbar select Project --> Properties --> Common Properties --> Build --> Property Pages Dialog Box --> Supported Runtimes selection. (by default it is 1.1)

    ASP.NET csharp question asp-net database

  • making windows services configurable
    P Pratik Desai

    You can add an entry in the web.config file in the tag. eg. You can than read this entry using ConfigurationSettings.AppSettings("keyname")

    Visual Basic csharp database help question

  • Dataset related question?
    P Pratik Desai

    'Suppose in the dataset ds you have three tables 'Customer, Order and Supplier. If you want to save 'the Customer table. Below is the code 'Duplicate the table and add it to a DataSet Dim datatb As DataTable = ds.Tables("Customer") Dim datatbTmp As DataTable = datatb.Copy() Dim dsTmp As DataSet = New DataSet() dsTmp.Tables.Add(datatbTmp) 'Save data to xml file and schema file dsTmp.WriteXml(Server.MapPath("Customers.xml"), XmlWriteMode.IgnoreSchema) dsTmp.WriteXmlSchema(Server.MapPath("Customers.xsd"))

    Visual Basic question sales xml
  • Login

  • Don't have an account? Register

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