Hi, I am trying to append form data into excel spreadsheet, I tried looking all over for this but unable to do. Was able to append to text file but now trying to an excel spreadsheet. Any help is appreciated. Thanks. Vani
VK Link
Posts
-
EXCEL and ASP.Net -
Message Box Facility in ASP.NETHi - I tried the above but it comes back with : Compiler Error Message: BC30456: 'javascript' is not a member of 'ASP.myFile_aspx'. Thanks.
-
Just not working.....Using a HttpWebResponse as well, after HTTPWebRequest - still wouldn't work, you say? Thanks.
-
Just not working.....I tried this after trying the documentation you had sent me - Dim HttpWReq As HttpWebRequest = _ CType(WebRequest.Create("http://www.contoso.com"), HttpWebRequest) Dim HttpWResp As HttpWebResponse = _ CType(HttpWReq.GetResponse(), HttpWebResponse) ' Insert code that uses the response object. HttpWResp.Close() Samething - it doesn't redirect to "http://www.contoso.com" - is something amiss above? thanks so much!
-
Just not working.....Shouldn't this redirect to the web site "http://www.contoso.com" as specified, along with the information it needs to post in the form? First, I was just trying to make sure that it redirects to above url, then post all variables info. I need to post to another server url from ASP.Net. Thanks. Vani
-
Just not working.....Hi, I am trying to post to another server using ASP.Net. I got this code from Microsoft web site: Dim myReq As HttpWebRequest = _ WebRequest.Create("http://www.contoso.com/") I have put this code in "Button1_Click" event. It just does not transfer to the site specified. I have added the Net namespace. Is something still missing? Many thanks.
-
Send email attachmentHi - How would we send email attachments from a web form? I tried: Dim fileattachment_1 = file.PostedFile Dim strPath As String strPath = Path.GetFullPath(fileattachment_1.Filename) objAttach = New MailAttachment(strPath) msg.Attachments.Add(objAttach) And then sent it. Many thanks.
-
Post to another pageHi, I tried a simple post to another web site - for some reason it doesn't seem to be doing anything. In the vb file: Dim httpmyReq As HttpWebRequest = _ WebRequest.Create("http://www.microsoft.com") httpmyReq.Method = "POST" In aspx page:
On browsing on IE, which does't it redirect to the Microsoft website? Many thanks.
-
Post to another pageEric, Thanks for your reply. I have to post this information and can't really send it in as a querystring. It is the requirement of the payment gateway that we post the information in form of hidden variables. They have even defined the variable names. I mean like : In this case, the value for amount has to be set dynamically based on what the amount is calculated in previous page. I am passing this amount value from previous page as a session variable. I need to post this information to payment gateway in a form. Thanks. Vani
-
Post to another pageWe are still not yet using ASP.Net 2.0 Thanks.
-
Post to another pageWe only need to post to the payment gateway a whole bunch of variable.
-
Post to another pageIt is a requirement for payment company that the method is POST only.
-
Post to another pageHi, This worked fine in our ASP web site but bit of an issue with ASP.NET We have integrated a third party payment s/w with our website which requires us to post some variables to their website, like the amount, description, billing name etc. In ASP.Net, the aspx page posts to itself which is not fitting with third party payment requirements. I have tried removing the "runat=server" in form but still doesn't appear to be working. Any ideas would be appreciated. Thanks.
-
Run batch file in IIS6 Win2003This article helped me solve the problem - only the cmd files. Still issue with .exe files. http://www.microsoft.com/technet/prodtechnol/WindowsServer2003/Library/IIS/848968f3-baa0-46f9-b1e6-ef81dd09b015.mspx
-
Run batch file in IIS6 Win2003Hi - I am trying to run a batch file from the web, which worked well in windows 2000, iis5. We migrated to Windows 2003, IIS6 - and now the same web page comes back with a 404 error message - page cannot be found. These are more like cmd or exe files. Any help is appreciated. Thanks!
-
Multiple resultsThanks for all the "great" ideas! solved the problem by adding a random number after the email address, so that way it will always be unique. And delete the number after email address to restore the original email address.
-
Multiple resultsLike the way you had specified TOP - is there a BOTTOM or DOWN as well? thanks.
-
Multiple resultsHi, Setting up a simple survey, where collects email address, answers and display options. Answers stored in database. And using table to select out and display information. There is some logic as to how the answers are displayed. Question - the user can take the survey multiple times. How to query the last set of answers for particular email address, if the user has taken the survey for the second time.
-
Timer for asp.net pageHi, Is there a way we could record the amount of time a user has spent on an application existing on our web site? Maybe something like start the timer, once the user has logged into the application, insert a start time in database. How would we capture the end time, when the user has ended the session? Many thanks for your time.
-
Refresh PanelHi, I have 4 panels set up in aspx page and each panel has some code. I need to refresh panel3 bec it has an image which need to be refresh with text written in panel2. I have tried Javascript's location.href=location.href; but ends up refreshing back to panel1 - all forms of code refreshes back to panel1 - is there some way we can refresh ONLY panel3? Many thanks.