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!

Recent content by choudhmh

  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 = ''...

Part and Inventory Search

Back
Top