Hi All, I have two website 1. ABC 2. Xyz. And i want to transfer data from one site (i.e ABC site) to another site (Xyz site). Example: ABC site have data (name , surname) => Pass this data to => Xyz site. so, How can i pass this data.. Any Idea?? Thanks & Regards, Priyanka
Priyagdpl
Posts
-
Data Passing between two different Application -
XML Query in C#Hi All, Please tell me how to write XML query in Asp.net. I hav temple.xml file which contain data of temple. now i want to apply search on it.
-
Update the node value of XML fileexcellent Links. Thanx.
-
XML Query in asp.netHi All, Please tell me how to write XML query in Asp.net. I hav temple.xml file which contain data of temple. now i want to apply search on it.
-
Validation Without Page Refresh .Hi All, I would like to perform some validation on an entry into a text box in the TextChanged event without causing the entire page to refresh. In a Email-ID TextBox m checking whether that mailid is duplicate or not. I want to prevent user by entering duplicate mail-id. I used Update Panel, still it get refresh. any solution ??
-
How to get Mac Address. ??Hi, anybody know that , How to get Mac Address ? Thanx in Advance.
-
use of session in aspx file.In aspx file, function PikCode(textid) { String myval = document.getElementById(textid).value; <%=Session["code"]%> = myval; } in the cs file, if (!IsPostBack) { txtcode.Attributes["onblur"] = "PikCode('ctl00_ContentPlaceHolder1_txtcode')"; } in the user control i m accessing this session, code is, if (FileUpload1.FileBytes.Length > 0) { if (FileUpload1.HasFile == true) { string txtcode1 = Convert.ToString(Session["code"].ToString()); FileUpload1.SaveAs(Server.MapPath ("~/AdminSection/Products/Chemicals/"+txtcode1+FileUpload1.FileName.ToString())); } } This is my code.
-
use of session in aspx file.No, its not working. still session is null. :(
-
use of session in aspx file.<%=Session("txtcode")%> = myval; This statement gives error like, 'System.Web.UI.Page.Session' is a 'property' but is used like a 'method'
-
use of session in aspx file.function PikCode(textid) { String myval = document.getElementById(textid).value; alert('myval'); Session["txtcode"] = myval; } In cs file: string txtcode = Convert.ToString(Session["txtcode"].ToString());
-
use of session in aspx file.hi, plz, tell me, can we use session in source (javascript function in aspx file) file. if yes then plz tell me syntax of it. My fun is, function PikCode(textid) { String myval = document.getElementById(textid).value; Session["txtcode"] = myval; } <script> but wen i use session in cs file, it become null. Thanx in Advance.</x-turndown>
-
while using blank file , fileUpload doesn't work.Really Thanx... Its Work Fine... :)
-
while using blank file , fileUpload doesn't work.Hi, if (FileUpload1.HasFile == true) { FileUpload1.SaveAs(Server.MapPath("~/AdminSection/Attachment/Emp/" + FileUpload1.FileName.ToString())); } If file is not blank, then this code work fine. but if the file is blank then it doesn't. Is there any Solution for this. or tell me how to check whether file (File can be of any type) is blank or not. Thanx. :)
-
fileupload.hasfile always return false ???Thanx
-
problem with fileupload.hasfileif (FileUpload1.HasFile == true) { FileUpload1.SaveAs(Server.MapPath("~/AdminSection/Attachment/"+FileUpload1.FileName.ToString())); } hi, anybody knows, what may be the possibility by which this condition alwz return false.
-
fileupload.hasfile always return false ???if (FileUpload1.HasFile == true) { FileUpload1.SaveAs(Server.MapPath("~/AdminSection/Attachment/"+FileUpload1.FileName.ToString())); } hi, anybody knows, what may be the possibility by which this condition alwz return false. :)