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.

0 Endorsements
~2K People Reached
Favorite Tags
Member Avatar for moiseszaragoza

Hey I am trying to know what is the value of of a check box (true, or false) but i cant seem to get it write [CODE] function getPrice(boxName){ alert(form1.Soft_Top_Cloth.checked) // Hard code box name it works alert(form1.boxName.checked) // passed threw variable not working } [/CODE] [CODE] <input type="checkbox" name="<%= …

Member Avatar for Airshow
0
71
Member Avatar for moiseszaragoza

I am using a Flash file that calls gallery.xml its hardcoded into the flash and i cant edit the flash file. the code in my page looks like [code=Coldfusion] <cfsavecontent variable="gallery"> <?xml version="1.0" encoding="UTF-8" standalone="no"?> <gallery frameColor="0xFFFFFF" frameWidth="15" imagePadding="20" displayTime="6" enableRightClickOpen="true"> <image> <url>http://www.modelproductions.com/proimages/avatar9.jpg</url> <caption><![CDATA[<font size="50">Example Gallery</font><br>An example large format <u><a …

Member Avatar for gklandes
0
343
Member Avatar for moiseszaragoza

I have a SQL Query build as a string but i cant seem to pass it into to the <cfquery> But it does not work any one can help me? [ICODE] <cfif ISDEFINED ('member')> <CFSET SQL = "SELECT * FROM precontract "> <CFSET SQL_Coubr = 0 > <cfif form.member neq …

Member Avatar for gdmprog1
0
184
Member Avatar for moiseszaragoza

Thanks This is what i have [code=php]<?php function msort($array, $id="order") { echo($array); $temp_array = array(); while(count($array)>0) { $lowest_id = 0; $index=0; foreach ($array as $item) { if (isset($item[$id]) && $array[$lowest_id][$id]) { if ($item[$id]<$array[$lowest_id][$id]) { $lowest_id = $index; } } $index++; } $temp_array[] = $array[$lowest_id]; $array = array_merge(array_slice($array, 0,$lowest_id), array_slice($array, $lowest_id+1)); …

Member Avatar for ShawnCplus
0
121
Member Avatar for moiseszaragoza

i am trying to call a C# fonction or event from a JS object. i have this [code=asp.net] <script language="javascript" type="text/javascript"> function UpdPanelUpdate(){ __doPostBack("????",""); } </script> <a onmouseover="UpdPanelUpdate()"> mose over me </a> <asp:Button ID="ClientID" runat="server" Text="Press ME" onclick="ClientID_Click1" /> [/code] i know that [B]__doPostBack(" ","");[/B] will cause my page to …

Member Avatar for serkan sendur
0
491
Member Avatar for moiseszaragoza

I have a field validatior on my page. but i noteces if i press the submit btn 2 times the validator does not stop the process. have any one have a problem like tihs? and how to solve it. Thakns [CODE] <tr> <td > <div class="buyIt_Titles2"> <asp:RequiredFieldValidator ID="RequiredFieldValidator1 runat="server" ControlToValidate="txt_BillingCity" …

Member Avatar for serkan sendur
0
70
Member Avatar for moiseszaragoza

i have a page with a couple of controlls, when i roll over some text i fake that i am pressing the btn. to cause a post back, ihave a update panel that i want to catch that psot back and not refresh the hole page. // UPDATE PANL [code] …

0
59
Member Avatar for moiseszaragoza

ok i have a page that calls 2 diferents controls. Control 1 is ctHead and Control 1 is ctBody. ho do i make ctHead call a function in ctBody. how i call the function in body from the page is [code] ctBody.Speech = "Hello!"; [/code]

Member Avatar for moiseszaragoza
0
52
Member Avatar for moiseszaragoza

I was wondering how would i make a call to a function inside my C# code with out reloading the page from inside Flash? Thanks

Member Avatar for serkan sendur
0
48
Member Avatar for moiseszaragoza

[CODE] Response.Write(MoviePayedDate) '11/3/2008 9:32:15 AM Response.Write("<br> -" & Now)'11/3/2008 9:37:31 AM Response.Write("---------------") Response.Write("<br>" & DateDifference)' HOW do i get this? [/CODE]

Member Avatar for dickersonka
0
131
Member Avatar for moiseszaragoza

I know that I have childNodes in my XML it has over 337 lines But I still get a return of 0 My code [CODE] ' Create new XML reader object Dim xmlDoc Set xmlDoc = Server.CreateObject("Microsoft.XMLDOM") ' Load the specified XML file (returns XML output) xmlDoc.load("http://pathToXML") If (xmldoc.childNodes.length = …

Member Avatar for hielo
0
95
Member Avatar for moiseszaragoza

I have been trying to get the child nodes out of a XML doc. so far what i have is [CODE] <% ' ' Create new XML reader object Dim xmlDoc Set xmlDoc = Server.CreateObject("Microsoft.XMLDOM") ' Load the specified XML file (returns XML output) xmlDoc.load("http://xmlPath") ' Parse XML if xmlDoc.parseError.errorcode …

0
54