Hi all,
I currently have asp pages that clients submit xml transactions to. The asp pages take the xml and validate it against a schema. Some other light validation ocurrs and the data is fed into a SQL db. I've recently developed a web service which has the same functionality as the asp...
I'd like to be able to share with it with you. It's a secure site for Third Party Administrators (health insurance). We provide a solution where you can use a debit card to pay for doctor visits and what not with your card. Instead of dealing with the insurance company for a reimbursement, it...
We're getting much closer to being on the same page.
1. Page1 loads. - DONE
2. User clicks a link to Page2, with querystring - DONE
3. Page 2 needs to display all that querystring data to user, along with a button to confirm/commit that data to db. - DONE
4. User clicks that button. - DONE
5...
1. Yes, that's working fine.
2. Yes, that's correct.
3. No idea how. Here's what I've got going on...
Page 1 opens Page 2 with a querystring
The Page_Load event calls PopulateTransactionDetails()
within the PopulateTransactionDetails() I've got this to populate the data
objReader =...
You are on the ball today.
Page1 uses cLink.Attributes.Add("onclick", "window.open('GetTransactionDetails.aspx? to open page2 with all of the data on it (page 2 is the same page I was having trouble with the button). Page2 now has the update event which needs to send data back to a stored...
Thanks for the help Tom. I was starting to think it couldn't be done. I took what you wrote and tested it. Then added in, piece by piece, the rest of my code. It came down to the pageload and the If Not Page.IsPostBack
. Once I took out the condition, it did exactly what it should do...
right - meaning the attributes.add is clientside which i had commented out. i think i did what you're saying and it's still not working. the event never fires.
Right. The attributes line is commented out and I have tried AddHandler btnUpdateAdj.Click, AddressOf update which is the equivalent of EventHandler in c#
Here is pretty much where it's at without being commented out
dim btnUpdateAdj as new Button= New Button...
Help! I swear I've tried everything and getting nothing. I'm trying to add a button at run time but when the button is clicked all I get is a postback event. The event that I want to fire, never does. Thanks in advance....here's my code.
Currently this is in the Private Sub...
Hey all,
I'm writing a console app in vb.net that needs to upload a file to a secured website. The website has a logon page and then a couple more buttons to get you to the submit page where you upload the file. Does anyone know what the process would be for this? Here is what i've got but...
Thanks for the quick response.
I looked at BCP, but my understanding is that the table def must be exactly the same format as the txt file format. I've got some additional fields in the table that are not in the text files. Since this is a staging table, I didn't want to create another...
Hi all,
I've been scouring the internet for the last couple days trying to find an example but am not coming up with exactly what I need.
I have an ftp server where clients put text delimited files, a different server than my SQL server. I've got a vb6 app that monitors the different...
Yes, we the data is validated against a schema.
We are using MSXML.
Is it possible that a connection interruption could cause this behavior?
Thanks,
tman
I can't find any help on this anywhere....
xsi:nil attribute on element 'CheckDate' is invalid.
However, if i take the input file and check it against the schema with XML Spy, it checks ok. It's not happening all the time either, it's intermitent. The same file can be posted with a failure...
I got it a different way, thanks though. I'll post what I came up with..
function popupLetters()
{
try
{
var xslt = new ActiveXObject("Msxml2.XSLTemplate");
var xslDoc = new ActiveXObject("Msxml2.FreeThreadedDOMDocument");
var xslProc;
xslDoc.async = false...
I can't figure out the correct JavaScript to pass the XML data to a popup window and have it trasformed.
Gives me object doesn't support this property or method on
myxml.transform(myxsl.xml)
Here's what I've got
<SCRIPT LANGUAGE="JavaScript">
var oPopup = window.createPopup();
function...
I ended up doing this
LEFT JOIN Letter l ON l.ClientID = @ClientID
AND e.employeeNumber = l.employeeNumber AND a.Code = l.Code
INNER JOIN letter l2 ON l2.ClientID = @ClientID
AND l2.employeeID Is Null AND l2.Code = a.Code
Then I used this in my select
, COALESCE(l.paragraph2...
yes, I need to display everything from the letter table. Let me see if I can clarify this. This letter table has records in it which sometimes match up to an employee directly with clientID, employeeID, and Code. There can be multiple letters for an employee and multiple employees within a...
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.