Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6012345
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T02:23:28+00:00 2026-05-23T02:23:28+00:00

I currently have an aspx page, that has a script that gathers data via

  • 0

I currently have an aspx page, that has a script that gathers data via phone line. The data is currently writing to a text file, which via a DTS job pumps to the database at the end of the night. What I need to is have the data from the aspx page be written to a database. Part of the problem I am having is I am unfamiliar as to how to write to a database when the aspx page solely contains a script. I have tried opening the connection before the script and after, with no luck. Any thoughts, suggestions, or link to documentation would be greatly appreciated.

Here is what I have so far:

<script language="C#" runat="server">

 public class SQLSproc
       {
           public static void Main()
           {
               string connectionString = "server=ABC;database=abc;uid=abc;pwd=1234";
               SqlConnection mySqlConnection = new SqlConnection(connectionString);
               string procedureString = "Callin_Insert";
               SqlCommand mySqlCommand = mySqlConnection.CreateCommand();
               mySqlCommand.CommandText = procedureString;
               mySqlCommand.CommandType = CommandType.StoredProcedure;
               mySqlConnection.Open();
               mySqlCommand.ExecuteNonQuery();
               SqlDataAdapter mySqlDataAdapter = new SqlDataAdapter();
               mySqlDataAdapter.SelectCommand = mySqlCommand;
               mySqlConnection.Close();

           }

       }

Boolean ParseXML(string XMLContent)
       {
         try
         {
           XmlDocument doc = new XmlDocument();
           doc.LoadXml(XMLContent);

           String MenuID, Duration, CallerID, CallID, DateAndTime, VoiceFileName;
           XmlNode TempNode;
           Byte[] VoiceFile;

           XmlElement root = doc.DocumentElement;
           XmlAttributeCollection attrColl = root.Attributes;

           //parse inbound values
           MenuID      = attrColl["menuid"].Value;
           Duration    = attrColl["duration"].Value;
           CallID      = attrColl["callid"].Value;
           CallerID    = attrColl["callerid"].Value;

           //writed parsed values to file
           StreamWriter w = File.AppendText(Request.MapPath("summaryincallISM.txt"));

           //w.Write(DateTime.Now.ToString("MM/dd/yyyy,HH:mm:ss"));

           w.Write(String.Format("\"{0:MM/dd/yyyy}\",\"{0:HH:mm:ss}\"", DateTime.Now));

           //w.WriteLine("MenuId: " + MenuID);
           //w.WriteLine("Duration: " + Duration);
           //w.WriteLine("CallId: " + CallID);
           //w.WriteLine("CallerId: " + CallerID);

           XmlNodeList NodeCount = doc.SelectNodes("/campaign/prompts/prompt" );
           foreach( XmlNode node in NodeCount)
           {
                attrColl = node.Attributes;

                //w.WriteLine("Prompt ID: " + attrColl["promptid"].Value);
                //w.WriteLine("Keypress : " + attrColl["keypress"].Value);
                //w.Write("," + attrColl["keypress"].Value);

                w.Write("," + "\"" + attrColl["keypress"].Value + "\"");

                if (node.HasChildNodes)
                {
                   TempNode = node.FirstChild;
                   attrColl = TempNode.Attributes;

                   //convert file to binary
                   VoiceFile = System.Convert.FromBase64String(TempNode.InnerText);
                   VoiceFileName = attrColl["filename"].Value;

                   //save file in application path
                   FileStream fs = new FileStream(Request.MapPath(VoiceFileName), FileMode.OpenOrCreate);
                   BinaryWriter bw = new BinaryWriter(fs);
                   bw.Write((byte[]) VoiceFile);
                   bw.Close();
                   fs.Close();

                   w.WriteLine("Filename : " + VoiceFileName);
                }
           }

 void Page_Load(object sender, System.EventArgs e)
       {
          try
          {
             String xmlcontent, PostResponse, campaign;
             Byte[] Bindata = Request.BinaryRead(Request.TotalBytes);

             string XML;
             XML = System.Text.Encoding.ASCII.GetString(Bindata);
             StreamWriter w = File.AppendText(Request.MapPath("xmlsummaryincall.txt"));
             w.WriteLine("--- "  + DateTime.Now + " ------------------------------------------------------");
             w.WriteLine(XML.Replace("<?xml version=\"1.0\"?>", ""));  //needed so ?xml tag will display as text
             w.WriteLine("");
             w.WriteLine("");          
             w.Close();

             if (!ParseXML(XML)) Response.Write("Failed");

           }
           catch (Exception error)
           {
             Response.Write(error.Message);
           }
       }

</script>
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-23T02:23:29+00:00Added an answer on May 23, 2026 at 2:23 am

    Since ASP.NET code doesn’t use the standard static void Main() entrypoint, you’ll need to put the code in Main somewhere else, like Page_Load.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I currently have a web form aspx page that calls RegisterClientScriptBlock. This sends down
I currently have an MS Access application that connects to a PostgreSQL database via
For example, if I have a page located in Views/Home/Index.aspx and a JavaScript file
I am currently working on an ASP.net c# project. I have an aspx page
I have a strange issue: I am using SPContext.Current.Web in a .aspx page, but
Has anyone ran into this issue? We have a mobile site that can't use
I am working on an ASPX page that needs to handle multiple different kinds
I am working on a FYI page that has large list of top-tiered links.
I have a button on a web page that when clicked connects to my
I have a fairly straight-forward sequential approval workflow that has an EnableModificationActivity that is

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.