Click here to Skip to main content
15,886,026 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
in visual studio 2005 .net c# the data given in the textbox of first webpage has to be thrown in textbox of forthcoming webpages as default and should run in a web server of my website...please help me with the answer
Posted
Comments
Mycroft Holmes 16-Oct-12 3:15am    
Is there a reason you are reposting the same question repeatedly. Also the title should not be the entire question!

You have not asked a question, what problems are you encountering?

 
Share this answer
 
Comments
lavanya19 16-Oct-12 3:29am    
thank u
XML
    protected void Page_Load(object sender, EventArgs e)
    {
   Service s = new Service();
    }
protected void Button3_Click(object sender, EventArgs e)
   {
       string d = Service.GetName(Label7.Text);
   }



In Webservice:
[WebMethod]
    public string GetName(string name)
    {
 return string.Format("Insert:{0}",name);
    
    }
 
Share this answer
 
So.... what are you doing now...
give more information about this...
and you use session, query string, etc type of logic's....
 
Share this answer
 
Comments
lavanya19 16-Oct-12 3:28am    
yes..i use session concept...the thing is the content in textbox of my first web page is thrown in remaining web pages in my local system but not in web server..

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900