Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

~8K People Reached
Favorite Tags
Member Avatar for rrocket

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." …

Member Avatar for ranadheer_1
0
2K
Member Avatar for rrocket

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 …

Member Avatar for <M/>
0
214
Member Avatar for rrocket

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 …

Member Avatar for AFAQ AHMED
0
347
Member Avatar for rrocket

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 …

Member Avatar for LordOne
0
703
Member Avatar for rrocket

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 …

Member Avatar for guest
0
2K
Member Avatar for rrocket

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 …

Member Avatar for ardeezstyle
0
297
Member Avatar for rrocket

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 …

Member Avatar for QVeen72
0
132
Member Avatar for rrocket

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 …

Member Avatar for rrocket
0
81
Member Avatar for rrocket

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 …

Member Avatar for rrocket
0
159
Member Avatar for rrocket

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 …

Member Avatar for rrocket
0
81
Member Avatar for rrocket

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 …

Member Avatar for QVeen72
0
243
Member Avatar for rrocket

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.

Member Avatar for Jx_Man
0
116
Member Avatar for rrocket

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 …

Member Avatar for cometburn
0
185
Member Avatar for rrocket

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 …

0
52
Member Avatar for rrocket

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.

Member Avatar for Porthos
0
95
Member Avatar for rrocket

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 …

Member Avatar for rrocket
0
120
Member Avatar for rrocket

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 …

Member Avatar for rrocket
0
166
Member Avatar for rrocket

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 …

Member Avatar for digital-ether
0
144
Member Avatar for rrocket

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 …

Member Avatar for MattEvans
0
115
Member Avatar for rrocket

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 …

Member Avatar for SheSaidImaPregy
0
104
Member Avatar for rrocket

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 …

Member Avatar for rrocket
0
231
Member Avatar for rrocket

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.

Member Avatar for rrocket
0
66