| Author: lalitha 03 Dec 2008 | Member Level: Gold | Rating:  Points: 2 |
Hi
Set CausesValidation Property of Refresh button to False
Your problem might be solved
Regards Lalitha
|
| Author: Pradeep Iyer 03 Dec 2008 | Member Level: Diamond | Rating:  Points: 4 |
Hi Harika,
For this purpose, you just have to set the PostBackUrl property of the refresh button to the same page itself.
For example, if you are in the Default.aspx page, give the refresh button code as:
<asp:Button ID="testbtn" Text="Refresh" runat="server" PostBackUrl="~/Default.aspx" />
This will surely refresh everything in the page.
Regards, Pradeep Y
Regards, Pradeep Iyer
|
| Author: Yugi 03 Dec 2008 | Member Level: Gold | Rating:  Points: 3 |
hi yar
except submit button use Set CausesValidation = false
for all controls which has autopostback = true(those controls post back page to server)
|
| Author: Jayabalaji B 03 Dec 2008 | Member Level: Silver | Rating:  Points: 2 |
hi... by use this code u can slove this problem
<asp:Button ID="btnsubmit" runat="server" PostBackUrl="~/Default.aspx"/>
B.Jayabalaji, balarefutes@gmail.com
|