i am trying to move on master details view in my application after click on login button and it showing an error as
"HTTP Status 405 - Bad Method".
where code is like belove
<p class="submit"><input id="btn" onclick="goAhead()" type="submit" name="commit" value="Login" >
<script>
function goAhead()
{
sap.ui.getCore().attachInit(function() {
new sap.m.Shell({
app: new sap.ui.core.ComponentContainer({
height : "100%",
name : "Dr_Reddys"
})
}).placeAt("content");
});
}
</script>
</p>
so please help me to get it correct.