Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Wanet Telecoms Ltd on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by vwani

  1. vwani

    how to modify XML DTD for Escape characters

    The problem is I don't have control over the format of URL. If I want to use URLEncode on my URL in C++ how do I do it? I understand that I can also do this with DTD. Thanks vw
  2. vwani

    how to modify XML DTD for Escape characters

    Hi, I've a standard XML parser written in C++. But this parser doesn't take care of escape characters like &,<,>,', etc. I have a DTD which I want to modify to take care of the escape characters. Can someone help me? My DTD is as follows <!ELEMENT media (objectURI|type|size|name|NotifyURI)*>...
  3. vwani

    Query to display records in the order of weekday desc

    If I drop the distinct qualifier the records will be repeated.As I have explained in that example above.I am joining table X to a stored procedure on Col1. This stored procedure contains data that I can join with Col1. But if I drop distinct from the view that I have created it will repeat the...
  4. vwani

    Distinct alternative

    You can use something like this CountValue = "Select Count(townName) as TownCount from yourTable Group By townName" Later on in your program you can say if CountValue > 1 then go to page X else go to page Y
  5. vwani

    Query to display records in the order of weekday desc

    Hello friends, I have a problem. I have this table X which has fields Col1,Col2,ColDate. The data in all these fields can be duplicate except in ColDate.eg Col1 Col2 ColDate 1234 MName 10/23/2004 11:00:00 AM 3456 MName 10/17/2004 9:00:00 AM 1234 MName 10/24/2004 11:00:00 AM Then I...
  6. vwani

    ASP and HTML Layout Problem

    Hi Friends, I have a problem and I need your help to solve it.It hoes this way. I have a navigation menu on the left side of my webpage. I need one of these buttons to link me to a page which contains a caption.Below this caption I want a frame which should display a page from some third party...
  7. vwani

    Passing parameters

    Hi Thank U .It worked fine.
  8. vwani

    Copying data from Stored procedure in one database to a table

    Hi Folks, I have a question.I have a stored procedure called sp_stored_proc in a Database called globaldataabase. This stored procedure pulls out information from several tables in the same database and creates a huge recordset.I want to pull out 2 fields(mlsno,mlsid) from the result of this...
  9. vwani

    Passing parameters

    Hi Friends, I created a two radio button yes and no in one form.This form goes onto next form and depending on value of radio button does some action. If I want to access the action of this radio button into another file too what should I do. I tried using the foll. 1st file <form...
  10. vwani

    Using Javascript with ASP to update Database fields

    Hello, I am trying to do the foll I have a shopping cart for which I want to add a field where the user can modify the quantity he/she has purchased. I have created a button to update the price according to the quantity but I donot know how to make this button read the data and update the price...

Part and Inventory Search

Back
Top