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 MikeeOK on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: choudhmh
  • Order by date
  1. choudhmh

    SQL Select Problem

    sorry youre procedure does not function. theres no need to do any joins, tblTelephoneSuppliers is not needed. Thanks for all your help
  2. choudhmh

    SQL Select Problem

    Sorry for the hassel guys but found the answere after test and trials: CREATE Procedure sp_getTelephoneCallPlans @TelephoneSupplierID int AS Select Distinct TelephoneCallPlanName From tblTelephoneCallPlans TS Where Enabled <> 0 AND TS.TelephoneSupplierID = @TelephoneSupplierID GO GRANT...
  3. choudhmh

    SQL Select Problem

    yes in the store procedure CREATE Procedure sp_getTelephoneCallPlans @TelephoneSupplierID int AS Depening on the TelephoneSupplierID call plan name should be shown
  4. choudhmh

    SQL Select Problem

    Hi Guys I have two table tblTelephoneCallPlans which has fileds TelephoneCallPlansID, TelephoneSuppliersID and TelephoneCallPlanName. tblTelephoneSuppliers has fields tblTelephoneSuppliersID and TelephoneSupplierName. I'm trying to us the select procedure to select the the...
  5. choudhmh

    Open a pop-up window

    yes exactly like this. you've did yours using php. any idea how i could do mine using vb.net
  6. choudhmh

    open a pop up window from a datagrid

    the above column is a hyperlink column. the target=_newwindows opens the details from that column in a new window. Instead of openning this in a new window i want it to open as a pop-up window . does this make it clearer.
  7. choudhmh

    open a pop up window from a datagrid

    Hi Guys, Using the script below i'm trying to open a pop up window: <asp:TemplateColumn> <ItemTemplate> <a id="description" target="_newwindow" href="<%# "details.aspx?bcstid=" & DataBinder.Eval(Container.DataItem, "BoilerCoverSupplierTariffID") %>"> Full Description </a> </ItemTemplate>...
  8. choudhmh

    Open a pop-up window

    Hi Isadore I really dont undersatnd whats happenning in your code to open a pop up. I have a hyperlink within a data grid colum. At presen tthe target=_newwindow shows tha data from that datagrid on a new window. I want to change that format so it is shown as a pop up instead of a new window...
  9. choudhmh

    Open a pop-up window

    Hi Guys, Using the script below i'm trying to open a pop up window: <asp:TemplateColumn> <ItemTemplate> <a id="description" target="_newwindow" href="<%# "details.aspx?bcstid=" & DataBinder.Eval(Container.DataItem, "BoilerCoverSupplierTariffID") %>"> Full Description </a>...
  10. choudhmh

    Validation

    Hi Guys, I have this textBox encryption field which is related to the database. The database shows only interger should be inptted on that textbox. How would i write an asp.net validation script, so only intergers are entered and if alphabetc text or alphanumeric text are entered it shows an...
  11. choudhmh

    spliting address

    Hi cLFlaVA Fanatastic, its working perfectly now. Thanks for all your help. You're a genius. Mac
  12. choudhmh

    spliting address

    Using the above code you submitted. On the first textbox firstline of address is inserted, on the second line the town value is shown, but on the third textbox the postcode is shown. I have a separate textbox for postcode. with your code the postcode is now shown twice. on the original postcode...
  13. choudhmh

    spliting address

    Sorry cLFlaVA i've got it nearly working with the above code, onle one problem, the postcode is shown again on the txtcounty textbox - this should be blank. how would i get rid of the value of postcode from txtcounty value, if the address on split[3] is null.
  14. choudhmh

    spliting address

    The above script throws an error something about this brackets is missing )
  15. choudhmh

    spliting address

    I have develop ths script where it fills addresses up. function FillAddress(Address, type) { //debugger ; if ( Address == '0' || Address == 'none' ) { if (type=='bill') { document.frmAddressDetails.txtbilladdress1.value = ''...
  16. choudhmh

    Programme a back button

    Hi ThatRickGuy, I dont think you're understanding the concept properly. Its a web form intergrated with a database, e.g. a memebers login form. I insert something on the form on page 1 then press the submit buuton, it adds the value of each form on that page to the database(happens in the...
  17. choudhmh

    Programme a back button

    The response re-direct will need to return the page back to page 1, with all the data that were inserted before. The button i've stated above is in page 2.
  18. choudhmh

    Programme a back button

    A web browser with a back button neesd to be inserted. I've added the back button, but now when a redirect the button, i want all the values that was inserted in the form to retrive. At the moment it redirecty to the last browser, but none of the values which were inserted on the form satys. The...
  19. choudhmh

    Retrive data from the database on to a web page

    Iam doing a bit of database testing. I have four web pages, the first three web pages by a click of a button stores values from the form to the database and redirect the page to the next page. On the fouth page i want to retrive some of the data onto the forms which has been stored in the...
  20. choudhmh

    Re-write a code

    I need to write a code where the page will show all the results in the page, instead of limiting to a number. ReDim aobjTariff(intResultsPerPage) ' Set the number of results per page. objGasResults.SetResultsPerPage(intResultsPerPage)...

Part and Inventory Search

Back
Top