Click here to Skip to main content
15,902,299 members
Home / Discussions / C#
   

C#

 
AnswerRe: When is the PictureBox redrawn? Pin
benjymous19-Nov-07 3:27
benjymous19-Nov-07 3:27 
QuestionFileSystemWatcher vs. Own file system polling Pin
C-Scharbe19-Nov-07 2:42
C-Scharbe19-Nov-07 2:42 
AnswerRe: FileSystemWatcher vs. Own file system polling Pin
jmhamm19-Nov-07 5:05
jmhamm19-Nov-07 5:05 
GeneralRe: FileSystemWatcher vs. Own file system polling Pin
C-Scharbe19-Nov-07 5:10
C-Scharbe19-Nov-07 5:10 
GeneralRe: FileSystemWatcher vs. Own file system polling Pin
jmhamm19-Nov-07 5:28
jmhamm19-Nov-07 5:28 
AnswerRe: FileSystemWatcher vs. Own file system polling Pin
mav.northwind19-Nov-07 5:12
mav.northwind19-Nov-07 5:12 
AnswerRe: Marshell.sizeof exception Pin
Pete O'Hanlon19-Nov-07 2:37
mvePete O'Hanlon19-Nov-07 2:37 
QuestionINBOUND XML Pin
kibromg19-Nov-07 2:13
kibromg19-Nov-07 2:13 
Hi all,

Can any one help me out if my application's code is correct to read an Inbound Xml file pointing to my application from another platform API's.

Here is the code in the page_load event.

protected void Page_Load(object sender, EventArgs e)
{
string xml = Request.Form["XML"];

DateTime dateNow = DateTime.Parse(DateTime.Now.ToString());
string contentName = dateNow.ToString("yyyyMMddhhmmsstt");
string dateOnly = dateNow.ToString("yyyyMMdd");
string hourOnly = dateNow.ToString("HHtt");

string path = Server.MapPath("./text/revers.xml");
string billingMsg = "Thank you for you message. You have been .";
string username = "test";
string password = "test";
string xmlOut = string.Empty;

if (!string.IsNullOrEmpty(xml))
{
int DbPosition = GetNextId();
ProcessMoMms(xml, path, contentName, billingMsg, username, password, DbPosition, dateOnly, hourOnly);
xmlOut = GetXmlString(path);
xmlOut = HttpPost("http://gateway.input.com/MtReceiver", xmlOut);
Response.Write("OK");
Response.End();

}
else
Response.Write("The post field xml has not been defined.");
}
}
QuestionHow to find the current user domain Pin
NK719-Nov-07 1:54
NK719-Nov-07 1:54 
AnswerRe: How to find the current user domain Pin
originSH19-Nov-07 2:18
originSH19-Nov-07 2:18 
QuestionDynamically create table Pin
markymark8219-Nov-07 1:37
markymark8219-Nov-07 1:37 
AnswerRe: Dynamically create table Pin
Satish - Developer19-Nov-07 1:41
Satish - Developer19-Nov-07 1:41 
GeneralRe: Dynamically create table Pin
markymark8219-Nov-07 1:57
markymark8219-Nov-07 1:57 
AnswerRe: Dynamically create table Pin
Malcolm Smart19-Nov-07 2:01
Malcolm Smart19-Nov-07 2:01 
GeneralRe: Dynamically create table Pin
markymark8219-Nov-07 2:06
markymark8219-Nov-07 2:06 
Questionhowto check a directory periodically Pin
stephan_00719-Nov-07 0:31
stephan_00719-Nov-07 0:31 
AnswerRe: howto check a directory periodically Pin
Vasudevan Deepak Kumar19-Nov-07 0:39
Vasudevan Deepak Kumar19-Nov-07 0:39 
AnswerRe: howto check a directory periodically Pin
pmarfleet19-Nov-07 0:40
pmarfleet19-Nov-07 0:40 
GeneralRe: howto check a directory periodically Pin
stephan_00719-Nov-07 1:15
stephan_00719-Nov-07 1:15 
GeneralRe: howto check a directory periodically Pin
pmarfleet19-Nov-07 3:09
pmarfleet19-Nov-07 3:09 
GeneralRe: howto check a directory periodically Pin
stephan_00719-Nov-07 2:12
stephan_00719-Nov-07 2:12 
GeneralRe: howto check a directory periodically Pin
stephan_00719-Nov-07 4:43
stephan_00719-Nov-07 4:43 
AnswerRe: howto check a directory periodically Pin
Luc Pattyn19-Nov-07 1:46
sitebuilderLuc Pattyn19-Nov-07 1:46 
Questionsearch a word Pin
RajeevKumarSharma19-Nov-07 0:21
RajeevKumarSharma19-Nov-07 0:21 
AnswerRe: search a word Pin
Sun Rays19-Nov-07 0:30
Sun Rays19-Nov-07 0:30 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.