i have used an login control for the users who have not logged in and defined login verification method on the click event of the button but while excuting i do get an error
Error 1 The name 'Login1' does not exist in the current context
protected void Login1_LoggedIn(object sender, EventArgs e) { LoginName loginName = LoginView1.FindControl("LoginName1") as LoginName; Response.Write(loginName.ToString()); //for now I used Response.Write for testing purposes }
I have a image CAPTCHA script (downloaded from the web) that I am placing inside a Login control. I have also place that Login control inside the annonymous template of a LoginView control.
When I try to do the image verification the text box to verify keeps coming up Null and gives me an " NullReferenceException: Object reference not set to an instance of an object" error.
I have the same control working inside the CreateUserWizard control so I am not sure what's wrong.
[code]....
I have tried variations for the LoginView1.FindControl("txtVerify"); but this is the only one I have been able to use with Intellisense that does not cause a build error.
I have a problem with using login controls form authentication ! as my website serves some pages for guest users(Anonymous user) and some pages are for only secure user(they must have to login for those requested pages)...... my problem is this that when i apply form authentication in web.config file to login control then visual studio directly shows only login page where i want that in general case only : guest user pages must be shown and if user clicks on login then after login the requested page he may open !
I have a field that is based on asp.net membersip UserID. I can bind this to dropdowns which aren't in a detailsview just fine, but for somereason my code isnt working for finding the control properly.I have the following in detailsview.databound (where it was suggested to be placed)
I am using FindControl to get a hyperlink but it only works on the first page. It works fine until I click on another page number in the pager. Then the hyperlink is nothing. This is the hyperlink.
I am trying to target a control in a Detailsview in my codebehind, however I am getting an error "Name "control" is not declared" for example, i have a FileUpload field in the edit template of the detailsview, which I am trying to access as
FileField.PostedFile.SaveAs("directory")
I also tried adding a reference to the Detailsview id such as DetailsView1.FileField.PostedFile.SaveAs("directory")
Here two have two grid inner and outergrid, When i am click the Edit Linkbuttom i am able to see the EditItemplate of innergrid.. where i can edit the Value.. When going to update that values in Data base.. i am not able to fine the control . Here is the code
I have a LoginView control that contains a PasswordRecovery control. Upon page_load I don't want this to be visible. When the user clicks a hyperlink button ("forgot password?" type of button), then it'll be made visible.
But I'm having a hard time making the password recovery control invisible at runtime. Here is my page_load function:
[Code]....
It is the only password recovery control in the LoginView control, so I don't understand why this isn't working. The password recovery control is still visible when the page loads in my browser.
I've put a DropDownList control within a LoginView control. I've got 2 SqlDataSource controls outside of the LoginView control, with the intent of databinding the items that comprise the ListItems of the DropDownList control, and another one for the data is stored in another table which has what was previously saved for the selection. However, when I've assign the SqlDataSource control to the DropDownList control's DataSourceID for the lookup table, I'm used to seeing the fields from the SqlDataSource control appearing in the DataTextField and DataValueField properties. However, they're not appearing there at all. Moreover, even when I try to type them in, its as if VS 2010 refuses to allow them.
Couple of days ago I was creating site where i have placed a login control taken from the Login Tab in Toolbar, but today i am unable to find it there, see the attached snap, where the Login Control Is ?
want to use ligh box effect like i have login control and i want to show login control in ligh box effect so its like if i open on login link login control wil show and same time we can control click anywhere in page ??
i have problem in using ajax control , till morning it everything was file , now when i add any new ajax control it shows the error Control canot be created because visual studio cannot find the control's type in the control assembly then if i press OK it says The operation could not be completed . invalid FORMATETC structure
i am getting this error "A control with ID 'NewAssignTL' could not be found for the trigger in UpdatePanel 'UpdatePanel'. " i have 2 problems i cannot access my dropdownList control from code behind and i triggers cannot access the control.
I have grid view control that includes a dropdown control in a template field.I wish to execute some code when the value is changed in the dropdown list. Can't figure out how to capture this event though?
I've a datalist within the logged in template.On the page_load first I'm ensuring the visitor is logged in
[Code]...
[Code]...
However this doesn't work,I get the following error:Object reference not set to an instance of an object.
Highlighting:DataList1.DataSource = ds If I take the loginview away then it works,but I thought the loginview1.findcontrol part would solve any problems.
I'm trying to find a TextBox in the code-behind page, it's inside a nested master page and also then inside another control container (it's inside ctrlCheckoutShippingAddress also) .