Forum: JavaScript / DHTML / AJAX Mar 20th, 2009 |
| Replies: 5 Views: 1,035 I tried the escape recommendation and it does not work. Any other suggestions. |
Forum: MS SQL Mar 16th, 2009 |
| Replies: 3 Views: 3,213 What I like to get done is a bit more complex than that; but thank you for the partial solution. what you have will only give me all the dates that are between the start and the end date.
What I... |
Forum: MS SQL Mar 12th, 2009 |
| Replies: 3 Views: 3,213 I need some help creating a query that will pull a series of record that falls with a date range with specific interval.
for example: I would like pass in a date like getdate() - 10 for start... |
Forum: JavaScript / DHTML / AJAX Mar 12th, 2009 |
| Replies: 5 Views: 1,035 I am using javascript to create the url (code as follow)
top.main.location.href="../TrackApp/main.aspx?selectedTab=1&Tab2=0&username=" + username + "&deviceName=" + name + "&deviceUID=" + pid; |
Forum: JavaScript / DHTML / AJAX Mar 9th, 2009 |
| Replies: 5 Views: 1,035 Hello fellow developers
I have a site project I've just acquired for a quick repair and I have problem with the url string being truncated because of the "#".
What I mean by that is if I have... |
Forum: RSS, Web Services and SOAP Aug 18th, 2008 |
| Replies: 6 Views: 3,553 Yes I can and you are right there is a problem with the wsdl and Sprint is currently working on the repair. However, they have one of the services fix and I am now able to access the methods within.... |
Forum: RSS, Web Services and SOAP Aug 18th, 2008 |
| Replies: 6 Views: 3,553 I am developing a web service for our internal client and this web service MUST make use of the Spring .wsdl.
<?xml version="1.0" encoding="utf-8"?>
<wsdl:definitions... |
Forum: RSS, Web Services and SOAP Aug 13th, 2008 |
| Replies: 6 Views: 3,553 I recently been assigned a project to develop an internal web service that makes use of an outside service from Sprint. the only thing I have is a .wsdl file web reference from Sprint. When I add... |
Forum: C# Jun 19th, 2008 |
| Replies: 1 Views: 2,355 I've just taken over an old project that my boss would like me to incorporate a couple of session variables into the code in order to maintain data history on a few pages. The project itself is web... |
Forum: ASP.NET Apr 23rd, 2008 |
| Replies: 2 Views: 555 I am using C# and I've tried to implement the method below but when i ran it, I got "0700000100 for this number 6784855146" Can someone point out why I got this result?
protected void... |
Forum: ASP.NET Apr 21st, 2008 |
| Replies: 2 Views: 555 I have been assigned this project to create a dynamic key code and I don't have a clue about how I can get it done.
The problem:
I am given a 10 digit number like a phone number 5627775698 and... |
Forum: Networking Hardware Configuration Apr 21st, 2008 |
| Replies: 3 Views: 656 I would agree but I don't recall answering too many question on security in the CCNA. Then again it has been a long time since I took that test. |
Forum: Networking Hardware Configuration Apr 21st, 2008 |
| Replies: 0 Views: 527 I have a CISCO 2621 with two CSU/DSU T1 serial cards that I would like to connect it to an Adit-600 device that already has a router slot. I have a public ip range of 55.136.100.31 - 59 that I can... |
Forum: Networking Hardware Configuration Apr 21st, 2008 |
| Replies: 3 Views: 656 If I were you, I would start with a basic cisco 2600 series router and a basic 18 to 24 port switch. These routers are not very expensive on eBay and you can one in the neighborhood of $100 - $200... |
Forum: ASP.NET Mar 14th, 2008 |
| Replies: 17 Views: 3,464 Already have and its still the same. Somebody suggested that I use the is null in the query itself but I've never constructed a query like that before. Can anyone of you let me know if it is... |
Forum: ASP.NET Mar 14th, 2008 |
| Replies: 17 Views: 3,464 with the above code it is always guarantee to have a row returned so I don't need to count it. the problem is whether a column is null or not. |
Forum: ASP.NET Mar 14th, 2008 |
| Replies: 17 Views: 3,464 That part of the code works fine. What I was doing there is evaluating whether the query return a row and if it did, I'll move on to the next step and evaluate if the data in the column is NULL (The... |
Forum: ASP.NET Mar 14th, 2008 |
| Replies: 17 Views: 3,464 Here is the code
[WebMethod]
public int TestDBNullValue(string PID)
{
int ErrorValue = 0;
if (PID.Equals(String.Empty))
{
ErrorValue = 10110;... |
Forum: ASP.NET Mar 14th, 2008 |
| Replies: 17 Views: 3,464 I tried that method already and it does not work. |
Forum: ASP.NET Mar 14th, 2008 |
| Replies: 17 Views: 3,464 How exactly do I do that, I've use IsDBNull, Convert.IsDBNull, IsDBNull.Value and nothing works and I've tried type casting. ???? |
Forum: ASP.NET Mar 13th, 2008 |
| Replies: 17 Views: 3,464 I have been looking for a way to evaluate if a column in a database has a null value in it. So far, every method suggested have failed and I would like to know anyone else have successfully evaluate... |
Forum: ASP.NET Feb 15th, 2008 |
| Replies: 8 Views: 2,225 It's OK. Maybe I wasn't as descriptive as should have been. |
Forum: ASP.NET Feb 15th, 2008 |
| Replies: 8 Views: 2,225 what I found out is that the query that he is using returns an entire row/record and not a single value. Also since the query is in use by other program parts, he wanted to use the same query to... |
Forum: ASP.NET Feb 14th, 2008 |
| Replies: 8 Views: 2,225 I was able to solve the problem the way my colleague wanted it to run. there is a small performance penalty because of the hash table but it's not very noticeable. Here is the solution.
public... |
Forum: JavaScript / DHTML / AJAX Feb 14th, 2008 |
| Replies: 1 Views: 16,034 solution:
instead of passing the control name of the container, I referenced it by using the document.getElementById() method [Line 3].
function PrintContent()
{
var... |
Forum: JavaScript / DHTML / AJAX Feb 8th, 2008 |
| Replies: 9 Views: 2,537 One problem that I noticed right away is that your getTable() method is evaluating the the state of xmlReq within the if statement but you are assigning it a value of 4 rather than evaluating it to... |
Forum: JavaScript / DHTML / AJAX Feb 8th, 2008 |
| Replies: 9 Views: 2,537 chances are your AJAX script is breaking down before you even get to the response text. what I would recommand is to test the script by inserting a series of alerts up to the point where you are... |
Forum: ASP.NET Feb 8th, 2008 |
| Replies: 8 Views: 2,225 This data table has growth potential and adding a value to the hash table is much more easy to accomplish then to write a complete case statement (at least that's what I was thinking). You know us... |
Forum: JavaScript / DHTML / AJAX Feb 8th, 2008 |
| Replies: 9 Views: 2,537 There is insufficient information here to help you out. I recently created an AJAX code that would dynamically create a table and populate its table data. Could that be what you are trying to... |
Forum: JavaScript / DHTML / AJAX Feb 7th, 2008 |
| Replies: 1 Views: 16,034 Hi Fellow programmers,
I need to print the content of a repeater list located inside of an asp:panel. once the page is loaded, the code for the asp:panel is displayed as a regular div tag. What... |
Forum: ASP.NET Feb 7th, 2008 |
| Replies: 8 Views: 2,225 I have this webservice that connects to my database via a table adapter and I am trying to read the column value based on the controls passed by an AJAX script that I wrote. I tried to use a hash... |
Forum: JavaScript / DHTML / AJAX Feb 6th, 2008 |
| Replies: 4 Views: 5,142 I see, it makes sense. I don't know what I was thinking. Text boxes have value properties thus innerHTML would not have worked. I guest I need to take a break from C#/C++ and Java programming and... |
Forum: JavaScript / DHTML / AJAX Feb 6th, 2008 |
| Replies: 4 Views: 5,142 I already did that and I still can't get my data inside the tag. |
Forum: ASP.NET Feb 5th, 2008 |
| Replies: 11 Views: 1,139 sure you have to know the length of the string but, you can built your own function that will return the length of the string. for example, you could have a loop that will do this
int index = 0;... |
Forum: JavaScript / DHTML / AJAX Feb 5th, 2008 |
| Replies: 4 Views: 5,142 I have this ASP.NET web page that makes use of the <asp:TextBox> tag and I would like to use it with my codebehind as well as an a small AJAX code. The text box field will be use to edit/enter data... |
Forum: ASP.NET Feb 5th, 2008 |
| Replies: 11 Views: 1,139 why don't you create your own method that would make use of a regular expression. Do some research on regular express and ASP.NET or .NET and see what comes up.
HINT: you are going to start with... |
Forum: ColdFusion Feb 1st, 2008 |
| Replies: 0 Views: 1,983 I have coldfusion file that I am calling from my ASP page using the response.redirect() method. Inside my url string, I am passing a variable/value pair as shown below.
... |
Forum: MS SQL Jan 30th, 2008 |
| Replies: 1 Views: 2,556 How do I create a single sql statement that will insert a row into a data table and return the row number back for processing? I tried to use the scope_identity method and find out it works well... |
Forum: ASP.NET Jan 15th, 2008 |
| Replies: 8 Views: 2,048 I see what you're saying now. I am going to implement the suggested solution to see what I will get with this project addition.
78% of this project is build in C# |