I have designed a form which process database Insert, edit and Delete(datagrid). I input userid,password and privilege in textboxes which has validation controls to verify data keyed in. And press the button to perform insert operation. Upto here is fine.
I want to perform edit or delete operations. I put datagrid for that one. After clicking the Update button for the row, the validation controls are firing again. I need to input some temporary data in the form fields to perform actual update operation. How can i stop firing validation controls at this stage?
if its possible to create a custom validation control which can enable or disable any given control depending on whether a checkbox is checked or not?Currently my solution involves posting back to the form which in turn enables or disables appropriately.
I have noticed with some of the standard validation controls that the screen does not refresh (postback) for the error message to display.Is it possible to enable/disable a control instead of displaying an error message, and do this without posting back to the form to refresh?I have seen some custom controls which can do this for sale, but they cost $$$.
I have two .aspx web pages. The first one has a form with ASP textboxes, validation controls, an a submit button which calls an event handler using VB to insert data into an Access database then redirect to the second page.
Both pages work fine on my local host computer (IIS). But on my remote host, when I click the submit button, it just sits there and does nothing. When I remove the validation controls, the event handler works fine.
How can I get the validation controls to work on the remote server?
A drop down list is populated with certain values from the database and when the selection is changed the post is posted back to itself and ceratin other processing takes place on the same page, based on the selected value. I have modified the code to make a default list item selection (using option selected etc. ) when the page loads the 1st time. I also want the onChange event to fire the 1st time (by taking this default selected item) on page load, not just when user makes a selection from the list.
For some reason my global.asa file is not firing. I have it located in the root of my website (e.g., wwwrootmywebsiteglobal.asa) and I have the web site configured as an "application" in IIS. When I modified the file I also stopped and restarted the web server.
I'm workinbg in Visual Studio 2003. I'm experimenting with creating a session variable, and from all I can gather. the Session_Start event is not firing.
In Global.asx.vb, in the Session Start event, I have the following:
Sub Session_Start(ByVal sender As Object, ByVal e As EventArgs) ' Fires when the session is started Session("varTest") = "123" End Sub
First off, when I set a break point at that line, it is never reached when the application starts. Secondly, when I try to post a test alert(), to display Session("varTest"), it comes up blank (no error). Finally, if I set Session("varTest") = "123" in my asp page, then display it, it shows up, all of which leads me to believe that the global.asax file is not seen by the project, even though it was inserted automatically.
Problem with global.asa not firing 100% of the time. This error crops up several times throughout the day but if you wait a while and reload the page (could be 5 mins or an hour) it will suddenly start working again.
The error is: ADODB.Recordset error '800a0bb9' Arguments are of the wrong type, are out of acceptable range, or are in conflict with one another. /footer.asp, line 101
Line 101 in the footer.asp file reads: InnovationRS.Open sql, Application("AnymousConnection")
I believe that bad code would produce a persistent error message. The application would either work, or generate an error 100% of the time, not be intermittent. The error is now appearing 3 or 4 times a day with different users reporting it, but like I said, if you wait a while and refresh the page, it is working again. Code:
My Session_OnStart works but Session_OnEnd does not work. Here's the code...can anyone tell me what's wrong with my code or if anything else on the server that needs to be changed. The Session_OnStart does create the folder for me with the SessionID as the folder name but Session_OnEnd does not delete that folder. Code:
In the code behind of my ASP.net web page I have code written that is dynamically creating a button. Here is a sample of how I define it.
//Define Variable Button btnNext;
public void someMethod() { btnNext = new Button(); button += new EventHandler(this.btnNext_Click); //then i add the control to the page, then call its click event btnNext_Click(); }
When I clickthis button on the page, the page postsback and its onclick event is never called (stepping through the code shows that it never gets reached). If I click the button a second time, the method is called and it works fine.
Create the following code from database but does not validate on enter - I am using ShadowWizards validation code.
<Input fields so work however I will need dropdown and radio buttons to be validated also.
I really like the work ShadowWizard has put in and would like to continue in the same neat, cleaver coded way!
I did validate the few fields with ASP but Yahoo toolbar stops people going back on forms and therefor would not work on all PC's, typically the bosses and now he seems to want it asap so any javascript solution? Code:
I have a Base class that is inherited by Form.aspx them Form.aspx loads 2 controls Menu.ascx that never changes and a body control that is selected dynamically at runtime. On each of the body controls I have a Function for validating the page Val() .
What I need to do is when an image button is clicked on the Menu.ascx I need to Fire off Val() in the Body control. Is this possible? I have tried setting a session var. but I have to load menu.ascx after the body control for the page or the body control does not function properly?
FormView & DetailsView are great controls in the new version of ASP.Net, but I am finding it tricky to display more than the record that either control is bound to at the time. For these controls to be useful in any mode other than read-only, we need the ability to populate controls like drop downs that hold associated data, which in the DB represents foreign key related data. In order to do this, do I create a template field that has a seperate control that binds to a different data source pulling back the "lookup" data?
I have a list of radio buttons that is populated from the database. The value of this radio button from the DB is SalesRanking If one selects the radio button (Sales Ranking) then I want to display 2 select boxes. Is this possible?
I have the following problem: I have an asp-page which contains a loginview with two templates (loggedin- and anonymoustemplate). How can I access a textbox inside the the loggedintemplate from the code behind c# module?
I tried: (TextBox)Page.FindControl("TextBox1") but that will result in a null pointer. I also tried: (TextBox)Page.FindControl("ContentPlaceHolder1.LoginView1.TextBox1") with the same result.
I am using the object command in asp page to download and register my controls on the client machine. But when a upload the file and run the page on client machine its shows means the permission to download the controls but it didn't download it on client machine as a result i am not able to use any of the control function from page. what to do. I am using this object tag to download
<OBJECT ID="voxPlayer" CLASSID="CLSID:45C0D292-1955-4ABF-8FFE-BEDC323ADBD9" CODEBASE="http://<ServerName>/<myControl>.cab" height = "10" width = "20" border = 2> </OBJECT> Am i missing anything
I want to change this color when someone selects this control. I know in visual basic the set.focus function works. how do I apply this to this control.
On my form I have 3 dorp down controls. Two of them have main information on them. Then on the third control I have only 3 values. "<blank>, AND, OR". If the end user selects AND, OR then Create a new line with 3 more drop down controls beneath the other 3. Where can I find out how to do this?
If I want to encode all inputs from user, can I apply this encoding for all "Input" fields on my site in a single action. Something like Input.HtmlEncodeAll() or HtmlEncodeAllInputs() etc.
I want to hide the form control on clicking the submit button on the same form.Tell me the solution.And also facing the problem while using the date time pickers in frontpage.
Actually by using asp value of date selected is being fethched in variable but on clicking the submit button again the datepicker shows the date before selecting the date.
i have a webpage which has 3 forms and each of the form has a about 20 controls. now what i want is to have these controls displayed in a mixed manner on the screen. moreover the ACTION pages of all the three forms are different. so is there anyway in which we can specify that TO WHICH FORM do they belong
my page is something like this
FORM1 starts TEXTBOX(of FORM1) FORM2 starts TEXTBOX(of FORM2) BUTTON(of FORM1) END OF FORM1 TEXTBOX(of FORM2) END OF FORM2
We have a need to be able to edit videos uploaded to us. Need to be able to resize them, resample,convert to various formats, etract images, overlay images, etc.
I've seen a few controls that do this, but wanted to know if anyone had any feedback on any of them. If you've used any of the ones on the market, please give your feedback on ease of use and stability.
I am trying to set up the security for my website... and understand that ASP.NET comes with a Membership Administration tool which is great, does it all for you! however, it stores all the user data (i.e. username password etc) in a default database.
What i would like to do is to GET the user information from this database once a new user is created and store it in my own database - hopefully i will only need the username and password... as then i can link my own user table to my employee table using a user id field? does this make sense???
Basically, i need to know HOW to get this information from the database that ASP.NET automatically creates and add this info into my own User Table.
I'm creating controls dinamically in ASP.NET using VB. The problem is that i don't know how to catch the event of each button that i've create (the buttons are created dinamically).
Suppose I have a form with only a button on it. Each time I click on the button, I want an other new button control to be added on the form, of course with some functionalities.
This is a simple example to make my question clear. I need to learn how to make dynamic changes on my form.
i have a webpage which has 3 forms and each of the form has a about 20 controls ...
now what i want is to have these controls displayed in a mixed manner on the screen ... moreover the ACTION pages of all the three forms are different ...
so is there anyway in which we can specify that TO WHICH FORM do they belong ....
I have a Web form with a gridview supplied with a object dated source, when I select a line, h've got a formview with the detail of the line... I would like to know, in edit mode, how to grey some fields according to the rights of the user, admin or not??? Here what I do...
==> ddlstSeverity is always null, i've got this error message
"Object reference not set to an instance of an object. Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code. Code:
I have an ASP 3.0 page that contains an ActiveX control that I wrote in VC++ v6.0. Under Visual Interdev I can debug the ASP code just fine. However, when I get to an ASP line that references my ActiveX control the debugger does not go inside my C++ code allowing me to debug the ActiveX control.
If I load the ActiveX control project from VC++ with Internet Explorer as the debug executable I have the same problem. Break points in the ActiveX control's code are not respected. I know I'm compiling in Debug mode,how to get these breakpoints to be respected?
I have a sysmon activex control inside an ASP page. When I resize the window, the activex control does not resize itself to fit the window. Does anyone know how to make the activex control automatically resize to fit the window?