2
Answers

Can we call .Net Dll from Sql Server

Photo of Prasant Jinaga

Prasant Jinaga

13y
1.5k
1
Hi All,

I have a function in .Net dll file.I just wanted to call that function from Sql Server.Could anyone help me on this please...

Thanks,
Prasant

Answers (2)

0
Photo of Abie Jose
NA 17 39.3k 13y
Using a Query string you can pass values of current page's control to another page


Response.Redirect("SecondPage.aspx?value1="& Textbox1.text &" &value2 = "& Textbox2.text &" ")


and in the secondpage.aspx you can retrieve this value with the following code

request.querystring("Value1")