I M working in 1.1 .net framework.
In a page I have 5 text box & 2 data grid.
In PageLoad()
All text box will populate with blank value & 1st dataGrid
with some value.
When I click on EDIT button Of the 1st dataGrid,The Relevent
data Of the particular row will populate in first 3 textboxs
& corresponding relevent data Will populate in the 2nd DataGrid.
Now when I click 2nd datagrid's EDIT button of a perticular
Row,relevent data will populate on last 2 textboxs &
1st 3 textbox's value will be same as per as it was........
........My Problem Is ...........
When I click on edit button Of 2nd DataGrid, 1st 3 text
boxes values goes Off & 2nd DataGrid Is goes off Due to
Postback.but The relevent value is populated In last 2
textboxes.So How I stoped this postback??So that all the
data in 1st 3 textboxes will be same.So that I can edit the
values of 2nd Grid with 1st 3 textBoxes value..
plz dirctly mail me 1 copy of post to...
maloy.adhikari@in.com
Answer Posted / nabin
hi,
you can use this code to check IsPostBack or not using
IsPostBack property
if((!IspostBack))
{
//your form logic goes here
}
| Is This Answer Correct ? | 0 Yes | 1 No |
Post New Answer View All Answers
what is publisher?
How to disable disable browser's Back button in asp.net (JavaScript)?
calling result set one procedure to anothar procedure in sql2000
What is asp net objects?
Can you explain the basic use of dataview?
Is sql backend or frontend?
What are type/key pairs in client script registration? Can there be 2 scripts with the same type/key pair name?
How can you debug your.net application?
What is the difference between GridView and Repeater controls in ASP.NET?
How can we secure the data which is send from client side to server? Like the login id and paasword needs to be authenticated on the server but we cannot send it in plain text into the server.One more thing we are not using the SSL here.
Explain difference between friend and protected friend?
How many web config files can be created for an application?
How long should a session id be?
How do I send an email message from my ASP.NET page?
How does session work?