Hi all
I m making a web app. using C# and SQL Server 2005,(using duwamish architecture), just got stuck on this particular problem.
1)I have a textbox where i will enter ProjectID which is numeric in nature, after writing, i will press tab or will hit enter and it will go to first radio button named new(Note: I have two radio buttons, one new and another Modify, both are unchecked by default). When i will select 'new'; text which i have entered as for ProjectID should get checked with database that whether it is available or not, if yes then in the dropdownlist all the available project version should come( for e.g 1,2,3) but these versions should be greyed out, i should not be able to select it. Along with the existing version , a new version should come(here for 4), which i can select.
2)Same is the case with modify radio button, difference is only that in the dropdownlist all the available version should come and i can select it.
Please throw some light on this, explaining through code.How can i implement this...