SELECT DISTINCT
o.name AS Object_Name,
o.type_desc
FROM sys.sql_modules m
INNER JOIN
sys.objects o
ON m.object_id = o.object_id
WHERE m.definition Like '%YourText%'

Programming is fun and interesting. As you all know, sometime we programmers stucks in the middle way of coding without getting a solution. Blogs like this will help us to find a path to solve our problems. The contents of this blog are the solutions that I found by myself and from other sources. Sharing such solutions is also interesting. Thank you!
Sunday, October 28, 2018
Search Inside a SQL Procedure
Tuesday, June 19, 2018
Access IIS Localhost From Another Computer
- Open cmd as an administrator.
- Allow the ports to be accessed by the firewall.
- Allow IIS to use your IP and machine hostnames. You can choose to use both or just one.
- Add the hostnames to your local IIS configuration.
- Navigate to "Documents\IISExpress\config"
- Open "applicationhost.config"
- Locate the applications you need to enable remote access for. In the case of my "RemoteAccess" project, you're looking for this:
- Add "binding" directives under "bindings." My changed configs look like this.
>netsh advfirewall firewall add rule name="Open Port 3000" dir=in action=allow protocol=TCP localport=3000
Here we are assuming that my project is on port 3000.
> netsh http add urlacl url=http://pc-hostname:3000/ user=everyone
> netsh http add urlacl url=http://10.0.1.10:3000/ user=everyone
Here we are assuming the IP address of my machine is 10.0.1.10
<site name="RemoteAccess.web" id="17">
<application path="/" applicationPool="Clr4IntegratedAppPool">
<virtualDirectory path="/" physicalPath="C:\Users\Justin Walker\Documents\Visual Studio 2013\Projects\Remote Access\RemoteAccess.Web" />
</application>
<bindings>
<binding protocol="http" bindingInformation="*:3000:localhost" />
</bindings>
</site>
<site name="RemoteAccess.web" id="17">
<application path="/" applicationPool="Clr4IntegratedAppPool">
<virtualDirectory path="/" physicalPath="C:\Users\Justin Walker\Documents\Visual Studio 2013\Projects\Remote Access\RemoteAccess.Web" />
</application>
<bindings>
<binding protocol="http" bindingInformation="*:3000:localhost" />
<binding protocol="http" bindingInformation="*:3000:pc-hostname" />
<binding protocol="http" bindingInformation="*:3000:10.0.1.10" />
</bindings>
</site>
Wednesday, April 11, 2018
Uncaught typeerror: cannot read property 'msie' of undefined | Solution
Solution 1
Solution 2
Copy the code below to the page
Downloaded jquery-migrate.1.2.1.js and referenced that file in the error page
Solution 2
Copy the code below to the page
<script>
jQuery.browser = {};
(function () {
jQuery.browser.msie = false;
jQuery.browser.version = 0;
if (navigator.userAgent.match(/MSIE ([0-9]+)\./)) {
jQuery.browser.msie = true;
jQuery.browser.version = RegExp.$1;
}
})();
</script>
Sunday, January 7, 2018
Encrypt and Decrypt string using SQL
Sample Code
Output
Declare
@myData nvarchar(max) = 'My data',
@seqKey nvarchar(20) = 'UniQKey07x@a',
@encryptedData varbinary(2000)
set @encryptedData = EncryptByPassPhrase(@seqKey, @myData)
print @encryptedData
print convert(nvarchar(max),DecryptByPassPhrase(@seqKey, @encryptedData ))--Decrypted data
Output
0x010000008076CB00D6FB7820D77D4B9C3768D596BA1812019E4CFCAEF9B190DAD462A3E3
My data
Encrypt And Decrypt String Without Using Special Character In C#
Encrypt
Decrypt
public static string Encrypt(string plainText)
{
try
{
System.Text.Encoding encoding = System.Text.Encoding.Unicode;
Byte[] stringBytes = encoding.GetBytes(plainText);
StringBuilder sbBytes = new StringBuilder(stringBytes.Length * 2);
foreach (byte b in stringBytes)
{
sbBytes.AppendFormat("{0:X2}", b);
}
return sbBytes.ToString();
}
catch (Exception tx)
{
return "0";
}
}
Decrypt
public static string Decrypt(string encryptedText)
{
try
{
System.Text.Encoding encoding = System.Text.Encoding.Unicode;
int numberChars = encryptedText.Length;
byte[] bytes = new byte[numberChars / 2];
for (int i = 0; i < numberChars; i += 2)
{
bytes[i / 2] = Convert.ToByte(encryptedText.Substring(i, 2), 16);
}
return encoding.GetString(bytes);
}
catch (Exception ex)
{
return "0";
}
}
Subscribe to:
Posts (Atom)