TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
parimal patel
NA
20
0
page not redirecting to new page
Jan 27 2009 2:47 PM
when i click orders in DataGrid page is not transfering to order.aspx.
private void DataGrid1_ItemCommand(object source, DataGridCommandEventArgs e)
{
if (e.CommandName == "ORD")
{
string strISBN;
string strTitle;
string strAuthor;
strISBN = e.Item.Cells[1].Text;
strTitle = e.Item.Cells[2].Text;
strAuthor = e.Item.Cells[3].Text;
Response.Redirect("order.aspx?ISBN=" + strISBN + "@ Title=" + strTitle + "@ Author=" + strAuthor);
}
}
can someone help with this.
Thanks in advance.
Reply
Answers (
4
)
Error: - Object reference not set to an instance of an object.
Cert Training