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...
yes
in the store procedure
CREATE Procedure sp_getTelephoneCallPlans
@TelephoneSupplierID int
AS
Depening on the TelephoneSupplierID call plan name should be shown
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...
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.
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>...
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...
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>...
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...
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...
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.
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 = ''...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.