This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <title>Bing Search v5 - Simple, show fewer results</title> | |
| <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.0/jquery.min.js"></script> | |
| </head> | |
| <body> | |
| <script type="text/javascript"> | |
| // more info: http://mvark.blogspot.com/2016/06/how-to-use-bing-search-v5-api-with.html |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!-- Read related post: http://mvark.blogspot.in/2016/03/how-to-scan-barcode-with-android.html --> | |
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="utf-8" /> | |
| <title>Desc</title> | |
| </head> | |
| <body> | |
| <script>document.write(location.href);</script> | |
| </body> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!-- Read related post: http://mvark.blogspot.in/2016/03/how-to-scan-barcode-with-android.html --> | |
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="utf-8" /> | |
| <title></title> | |
| </head> | |
| <body> | |
| <a href="zxing://scan/?ret=http://example.azurewebsites.net/desc.html?code={CODE}">Scan</a> | |
| </body> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Before: | |
| elem.append('<a title="'results[i].title | |
| + '" href="http://www.youtube.com/embed/' + results[i].id + '?autoplay=1&vq=small&autohide=2&iv_load_policy=3" >' + results[i].title + '</a>'); | |
| function htmlEscape(str) { | |
| return String(str) | |
| .replace(/'/g, ''') | |
| .replace(/"/g, '"'); | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <%@ Page Language="C#" %> | |
| <script runat="server"> | |
| void Page_Load(Object Src, EventArgs E) | |
| { | |
| try | |
| { | |
| System.Data.DataTable workTable = new System.Data.DataTable(); | |
| workTable.TableName = "Customers"; | |
| workTable.Columns.Add("Id"); | |
| workTable.Columns.Add("Name"); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <%@ Page Language="C#" %> | |
| <script runat="server"> | |
| void Page_Load(Object Src, EventArgs E) | |
| { | |
| try | |
| { | |
| System.Data.DataTable workTable = new System.Data.DataTable(); | |
| workTable.Columns.Add("Id"); | |
| workTable.Columns.Add("Name"); | |
| System.Data.DataRow workRow; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <%@ Page Language="C#" %> | |
| <script runat="server"> | |
| void Page_Load(Object Src, EventArgs E) | |
| { | |
| try | |
| { | |
| System.Net.Mail.MailMessage mail = new System.Net.Mail.MailMessage(); | |
| System.Net.NetworkCredential cred = new System.Net.NetworkCredential("[email protected]", "p@ssword"); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <%@ Page Language="C#" ValidateRequest="false"%> | |
| <%@ Register Assembly="FreeTextBox" Namespace="FreeTextBoxControls" TagPrefix="FTB" %> | |
| <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" | |
| "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> | |
| <html xmlns="http://www.w3.org/1999/xhtml" > | |
| <head runat="server"> | |
| <title>Generate a Word document dynamically with user submitted text formatted with |