Click here to Skip to main content
15,903,033 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I modify an existing web application.
But it contains a namespace GISSDLL

And all procedures are called through this namespace .

GISSDLL.dllDataset.FillDataSet(ref con, ref dsbroker, "sp_SelectId", 7, 0, "", System.DateTime.Today, "", System.DateTime.Today, "", System.DateTime.Today, "", System.DateTime.Today, 0, "", "", "", "", "", "", "", "", 0, "", 0, "", 0, 0, "", 0, "", 0, 0, "", 0, "", 0);


In need to modify it.

I expand the solution explorer then show GISSDLL.dll and GISSDLL.dll.refresh.

How to I edit that Namespace for add new stored procedures.
Posted

Where from you got this GISSDLL.dll? Is it a third party or your own written one? Based on the GISSDLL.dll.refresh file, looks like it is one of your own.

Just go to the GISSDLL.dll class library and make the changes you want to. it will reflect in your application accordingly.
 
Share this answer
 
You cannot edit GISSDLL.dll if it a dll included in a third party tool install that you obtained from some other location. You would need the source code from that third party to do that.
 
Share this answer
 
You can do one this use reflector to get code from dll and than change name space than create dll again form that source code.
 
Share this answer
 
Run your application in Debug mode and use F10. it look like that the DLL is from your solution as it contains the .refresh file also.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900