Need Immediate HELP

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • dhanu sahu
    New Member
    • Mar 2008
    • 14

    #1

    Need Immediate HELP

    Thanks

    I am writing Web Application and using Sqlserver inback end.
    User enter the data in textBox,Dropdow nlist..etc When he/c click SAVE button it save on back End Database.Its Ok here...

    But I need after SAVE click the page's data or Controls are Inactive means not editable.Even you post back /use BACK Button in IE .
  • dip_developer
    Recognized Expert Contributor
    • Aug 2006
    • 648

    #2
    Originally posted by dhanu sahu
    Thanks

    I am writing Web Application and using Sqlserver inback end.
    User enter the data in textBox,Dropdow nlist..etc When he/c click SAVE button it save on back End Database.Its Ok here...

    But I need after SAVE click the page's data or Controls are Inactive means not editable.Even you post back /use BACK Button in IE .
    there are many ways to do that..

    1. you can use a flag(variable) in viewstate ....after inserting data change the viewstate variable....
    2.you can check from database before inserting a data whether the data exists or not.....
    3.you can make the controls(textbo x,checkbox,comb obox) empty after inserting the data......

    Comment

    Working...