2
Answers

Push Notification

D B

D B

8y
472
1
Hi,
 
For IOS push notification(APNS) how can be done in webapi.
 
Regards,
Durga 
Answers (2)
0
Sandeep Singh Shekhawat

Sandeep Singh Shekhawat

NA 22.4k 12m 11y
suppose you have a checkbox and one button and submit a form on button click with checkbox true or false value according to checkbox checked or uncheck.

create a page which has a checkbox and a button on .aspx page

Student:<asp:CheckBox ID="chkStudent" runat="server" Checked="false" /><br />

    <asp:Button ID="btnSubmit" runat="server" Text="Submit" onclick="btnSubmit_Click" />

 On button click event you want vale of check box checked or unchecked accordingly :

protected void btnSubmit_Click(object sender, EventArgs e)

        {

            bool student = chkStudent.Checked ? true : false;

        }

 
thereafter you can use student variable for fruther working.


Thanks
Sandeep Shekhawat

Accepted