Click here to Skip to main content
16,016,760 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Question : how to get form action in page which has integrated with master page
Posted
Updated 30-Nov-11 0:31am
v3
Comments
lukeer 30-Nov-11 7:33am    
Please don't repost your question. Use the "Improve question" link instead and change/add to your question.

1 solution

C#
System.Web.UI.HtmlControls.HtmlForm form1 = Master.FindControl("Form1") as System.Web.UI.HtmlControls.HtmlForm;
form1.Action = SystemURL(strConnectTo);
 
Share this answer
 
v2

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