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