Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
V

VK Link

@VK Link
About
Posts
44
Topics
19
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • EXCEL and ASP.Net
    V VK Link

    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

    ASP.NET csharp asp-net help

  • Message Box Facility in ASP.NET
    V VK Link

    Hi - I tried the above but it comes back with : Compiler Error Message: BC30456: 'javascript' is not a member of 'ASP.myFile_aspx'. Thanks.

    ASP.NET csharp javascript asp-net help

  • Just not working.....
    V VK Link

    Using a HttpWebResponse as well, after HTTPWebRequest - still wouldn't work, you say? Thanks.

    ASP.NET csharp asp-net com sysadmin question

  • Just not working.....
    V VK Link

    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!

    ASP.NET csharp asp-net com sysadmin question

  • Just not working.....
    V VK Link

    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

    ASP.NET csharp asp-net com sysadmin question

  • Just not working.....
    V VK Link

    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.

    ASP.NET csharp asp-net com sysadmin question

  • Send email attachment
    V VK Link

    Hi - 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.

    ASP.NET question

  • Post to another page
    V VK Link

    Hi, 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.

    ASP.NET csharp asp-net sysadmin business help

  • Post to another page
    V VK Link

    Eric, 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

    ASP.NET csharp asp-net sysadmin business help

  • Post to another page
    V VK Link

    We are still not yet using ASP.Net 2.0 Thanks.

    ASP.NET csharp asp-net sysadmin business help

  • Post to another page
    V VK Link

    We only need to post to the payment gateway a whole bunch of variable.

    ASP.NET csharp asp-net sysadmin business help

  • Post to another page
    V VK Link

    It is a requirement for payment company that the method is POST only.

    ASP.NET csharp asp-net sysadmin business help

  • Post to another page
    V VK Link

    Hi, 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.

    ASP.NET csharp asp-net sysadmin business help

  • Run batch file in IIS6 Win2003
    V VK Link

    This 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

    System Admin help

  • Run batch file in IIS6 Win2003
    V VK Link

    Hi - 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!

    System Admin help

  • Multiple results
    V VK Link

    Thanks 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.

    ASP.NET database tutorial question

  • Multiple results
    V VK Link

    Like the way you had specified TOP - is there a BOTTOM or DOWN as well? thanks.

    ASP.NET database tutorial question

  • Multiple results
    V VK Link

    Hi, 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.

    ASP.NET database tutorial question

  • Timer for asp.net page
    V VK Link

    Hi, 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.

    ASP.NET csharp asp-net database question

  • Refresh Panel
    V VK Link

    Hi, 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.

    ASP.NET javascript question
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups