c# - Load page in div when i click button -
i new asp.net. in home page used 2 image buttons. should want when button click different page need load in home page div tag. how can asp.net /csharp
use iframe
<iframe id="iframe1" ></iframe>
use js change src i.e
document.getelementbyid('iframe1').src = yourpagepath;
thanks
Comments
Post a Comment