Click here to Skip to main content
15,898,134 members

Comments by Rajib Mahata (Top 34 by date)

Rajib Mahata 21-Apr-15 11:24am View    
i wont to make native application .this mobile app will be a wrapper for the web app and the functionality of the cars on the map be pulled into the app from the web app, similar to an iFrame.
Rajib Mahata 13-Apr-15 11:11am View    
Why ? can i make a cross platform application in mvc c# ?
I saw that Xamarin can do this .
Rajib Mahata 3-Dec-14 6:06am View    
onclick="javascript: doctorAppmodel(0,7,2/12/2014," am=");"

this does not call function doctorAppmodel(appdocid, appid, date, starttime) function
Rajib Mahata 3-Dec-14 5:50am View    
function doctorAppmodel(appdocid, appid, date, starttime) {
debugger;
if (appdocid > 0) {
$.ajax({
type: "POST",
url: "/Dashboard.aspx/showdoctorAppointment",
contentType: "application/json;charset=utf-8",
data: "{'intapp':'" + obj + "'}",
dataType: "json",
success: function (data) {

},
error: function (result) {
alert("Error login");
}
});
} else {
document.getElementById('<%=lbldocname_doctorApp.ClientID%>').innerText = "Dr. " + '<%=Session["DocName"]%>';

var date = new Date(date);
var yr = date.getFullYear();
var mo = date.getMonth() + 1;
var day = date.getDate();
document.getElementById('<%=lbldate_doctorApp.ClientID%>').innerText = day + "/" + mo + "/" + yr;
document.getElementById('<%=lbltime_doctorApp.ClientID%>').innerText = starttime;

document.getElementById('<%=hdndocname_doctorApp.ClientID%>').value = "Dr. " + '<%=Session["DocName"]%>';
document.getElementById('<%=hdndate_doctorApp.ClientID%>').value = mo + "/" + day + "/" + yr;
document.getElementById('<%=hdntime_doctorApp.ClientID%>').value = starttime;
}
}
Rajib Mahata 31-Oct-14 8:35am View    
hello sir I am developing Web Application to allow clients to upload file on my Google drive with automatic authentication.