I have a textbox , assign required field validator and i
have two buttons 1) save 2) cancel , i want the validator
run only when i click save button, don't validate cancel
button , what to do?
Answer Posted / sneha gupta
set validationGroup = 'Save' for save button and textbox
but leave it blank for cancel button.
| Is This Answer Correct ? | 7 Yes | 3 No |
Post New Answer View All Answers
How to disable disable browser's Back button in asp.net (JavaScript)?
What are the different types of cookies in asp.net?
Explain the different parts that constitute ASP.NET application?
What is state management techniques in asp.net?
What is session id in web application?
How to implement role based security in asp.net mvc? : Asp.Net MVC
i want the asp.net technical questions and answeres
Difference between web user control and web custom control?
What is a uri query?
a web application needs to be created to accept the product name and quantity of a toy from a customer. After the customer has entered the product name the application needs to display the discounted price of the product to the customer (company is offering 35% discount on all products). The application should allow the customer to select the product name from a list box. and also while i'm data binding to a label with custom data binding with some declarations : "The Discounted Price is "+((System.Convert.todouble(lblprodprice.text)*(system.convert.todouble(txtqty.text)) - ((System.convert.todouble(lblprodprice.text)*(system.convert.todouble(txtqty.text)*0.35)). Where i need to give this declaration in asp.net 2.0.
What is the use of global.asax file?
What is session in asp.net?
What is a Cookie? Where is it used in ASP.NET?
What is custom attribute? How to create?
Explain how viewstate is being formed?