In my cshtml page i have one bootbox dialog like this
bootbox.dialog({
title: "Addresstitle " + ADDRESS + " save",
message: "you will be send to " + fromaddress + "for verification dear" + customer,
buttons: {
success: {
label: "Next,
className: "btn btn-success",
callback: function(){
//some logic
}
}
}
});
I will create 2 resource string in resource file one for title and one for message
Addresstitle {0} save
you will be send to {0} for {1} verification dear {2}
How can i set this text in resource file dynamically?