Posts
 
Reputation
Joined
Last Seen
Strength to Increase Rep
+2
Strength to Decrease Rep
-0
0% Quality Score
Upvotes Received
0
Posts with Upvotes
0
Upvoting Members
0
Downvotes Received
3
Posts with Downvotes
2
Downvoting Members
2
1 Commented Post
0 Endorsements
~541 People Reached
Favorite Tags
Member Avatar for hookedtocsharp

500 - Internal server error. There is a problem with the resource you are looking for, and it cannot be displayed. The OS is Windows 7 and its of 32-bit OS type After publishing I get the above error. This OS is Windows Server 2008 R2 and is of 64-bit.. …

Member Avatar for hookedtocsharp
-2
142
Member Avatar for hookedtocsharp

I have this is my first page FirstPage.aspx protected void GridName_SelectedIndexChanged(object sender, GridViewSelectEventArgs e) { String Url = String.Empty; int index = e.NewSelectedIndex; String Name = String.Empty Name = GridName.DataKeys[index].Values["Name"].ToString() Url = "RetrieveAddress.aspx?Name= " + Name.ToString(); Response.Redirect(Url, false); Context.ApplicationInstance.CompleteRequest(); } Now, using the Name parameter from the FirstPage.aspx, How to …

Member Avatar for JorgeM
0
187
Member Avatar for hookedtocsharp

The scenario is, If the user has logged in for the first using his one time password it should get redirected to ResetPassword.aspx If the user is not new, then should get redirected to Main.aspx page. Should I use IsPostBack or Membership.ValidateUser? How do we usually code in c# to …

Member Avatar for Ketsuekiame
0
212