No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
22 Posted Topics
I have been trying to use [code=javascript]<script language="javascript" type="text/javascript"> function check_length() { var x = document.getElementById("tbDescription").value; alert(x); } </script>[/code] to get the value of this text box [code=asp]<asp:TextBox ID="tbDescription" runat="server" Height="78px" TextMode="MultiLine" MaxLength="10" Width="363px" ValidationGroup="quickQuote" onkeypress="check_length()" CausesValidation="true"></asp:TextBox> <asp:RequiredFieldValidator ID="rfvDescription" runat="server" ControlToValidate="tbDescription" Display="none" ErrorMessage="You must give a description of your shipment." … | |
I am trying to verify that the email addresses entered into our site are valid. Basically are they fake addresses or not and if I send them an email there will be an inbox associated with that address. All I keep finding on the web is info for validating with … | |
I am trying to get a modal popup to display on an onblur event, but I keep getting a "'null' or is null or not an object" js error. I have seen many examples using [code=javascript] var _popup; _popup = $find('MPE'); _popup._show(); //And $find('MPE')._show(); //And $object('MPE')._show() [/code] But none of … | |
Is it possible to find a record in a datagrid by typing characters into the grid? Bascially if I have the following records: Anne Bob Bill Bud Carl Carlos Curt And type "C" it will got to the records that start with "C". If I type "Ca" it will go … | |
I am passing a value through query string to a popup and then trying to pass it back to the main page... I store the value in a hidden input box [code] <input type="text" name="FromZip" id="FromZip" value="<% response.write(Request.QueryString("txtZipFr")) %>" /> [/code] and am passing it back through query string to … | |
I am trying send information to the DB and the SP will return a recordset. The problem is that I keep getting this error (ADODB.Recordset error '800a0e78' Operation is not allowed when the object is closed). I saw a bunch of posts using queries, but none using SPs and cannot … | |
I have a bunch of params: InputParam1, InputParam2, InputParam3, etc... I would like to loop through them instead of writing out code for each one, but am having some issues getting it to work correctly. Here is what I have so far: [code=vb] Dim iCount As Integer Dim objTemp As … | |
I have a count set up in a SQL view set to '*' with the alias set to 'Cn'. I can get the column name with: [code=vb] grd.columns("columnName") [/code] But it does not work when I use the alias... How can I pull use alias instead of the actual column … | |
I am trying to display the results of a store procedure, but cannot seem to get the Move Next to work for me. Without it I am currently only getting the first row. Here is what I have so far: [code=asp] Set x1 = server.CreateObject("ADODB.Command") Set RS = server.CreateObject("ADODB.Recordset") With … | |
I have a bunch of print statements in a SP that tell me exactly what went wrong in the SP (if anything), but I cannot figure out how to capture the text in the [code=sql]PRINT 'Receiver and Customer don''t match'[/code] statements... I pretty much want to get the info with … | |
Does anyone know of a tutorial/site that explains how to bind to a tdblist clearly? If anyone could explain it, I would also appreciate it. So far I have this and must be missing something. It has been way too long since I have done anything in VB6. :) Other … | |
Is there something else I have to do to get a message with an error occurs other than this: [code=vb] On Error GoTo Handler 'Code that will cause an error Handler: msgBox(Err.Description) [/code] The Handler gets thrown but it is empty.... Just a message box comes up with no text. | |
I am trying to get the current date in a tdbdate textbox and am having no luck. I am currently using: [code=vb]TDBDate1.Text = Now()[/code] But it is still only showing what is in the Properties Text box. Is their something within the properties menu that I need to change in … | |
I am pretty sure the favicon.ico is coming up with someone bookmarks our site, but I am not sure why webresource.axd would be listed in my traffic reports as an exit or entry page. Striptresource.axd is another one that shows up fairly often. I am using NetTracker 7.5 if that … | |
What can I do not get this to work in Firefox? [code]document.getElementById("type_" + x).checked[/code] When I used [code]alert(document.getElementById("type_" + x).checked);[/code] to check the value it comes up fine in IE, but I get a "has no properties" error in FireFox. | |
I have been looking all over trying to find a simple example of how this is done... Basically I want to send info from a form to another website API via XML and get the information they send back to me. If anyone has any examples or knows of any … | |
Anyone have a clue what I am doing wrong here? I have tried to call this function a bunch of different ways, but here is the latest: mProfitPercent = GetProfitPercent Here is the function that I am trying to call: [code=asp] Function GetProfitPercent Dim rsRegx Set rsRegx = Nothing 'Set … | |
I have a page with radio buttons that either enable or disable textboxes depending on the radio button selection. When the user clicks submit the they are taken to a thank you page, but if they hit the back button on the browser the radio buttons both return false and … | |
I am trying to submit a form with .submit(), but I am having issues passing the values from my form... Here is what I have so far: [code=c#] <TITLE>ASPXTOASP.aspx</TITLE> <script language="C#" runat="server"> private void Page_Load(object sender, EventArgs e){ //We grab all the session variable names/values and stick them in a … | |
I need to update a few pages that send a forms based XML string to a site and display the returned values. I am not sure of the C# .NET 2.0 syntax to pull it off and wondered if anyone new of a good place to look. I have searched … | |
I am trying to get a value from a stored procedure: [code=SQL]SET @RowCount = @@RowCount IF @RowCount = 1 BEGIN SET @Ret = 1 PRINT 'Insert a success' END IF isnull(@RowCount,0) = 0 BEGIN SET @Ret = 2 PRINT 'Insert a failure.. Terminating Proc...' RETURN END[/code] I should be getting … | |
I am using some Ajax tools on my existing site and can get the tools to work, but still have the red lines under the tool names. Any ideas on what the deal might be? BTW - Sorry about the title... I sorted that issue out. |
The End.