http://discoveringdotnet.alexeyev.org/2009/05/wse-and-visual-studio-2008.html
This tells you how to get WSE web services to work in visual studio 2008.
This blog helps me keep track of programming tricks I've learned, so I don't forget them later
Tuesday, September 1, 2009
Tuesday, July 28, 2009
Accessing a web service through javascript
You have to add the service reference to the service reference section of the web.config (I think).
Do a google search for ServiceReference. That might help too.
Do a google search for ServiceReference. That might help too.
Web services EnableSession = true
By default, Web Services can't access session information from the website. To enable this, add [EnableSession=true] above the function definition.
Getting rid of scroll bars using CSS
In cascading style sheets, you can use the "overflow" or "overflowx" property to get rid of scroll bars. You can use "scroll" or "scrollx" to show scroll bars.
Friday, July 17, 2009
Wednesday, July 15, 2009
Auto Login with Novell and Javascript
Use javascript nwdirlib object : C#Corner Forums
Says you can use the following javascript to retrieve the username
LdapObj = new ActiveXObject("NWDirLib.NWDirCtrl.1");
entry=LdapObj.FindEntry(LdapObj.LoginName);
usrId=entry.ShortName
More nwdirlib sample code : stackoverflow.com
This method is susceptible to url hacking.
Says you can use the following javascript to retrieve the username
LdapObj = new ActiveXObject("NWDirLib.NWDirCtrl.1");
entry=LdapObj.FindEntry(LdapObj.LoginName);
usrId=entry.ShortName
More nwdirlib sample code : stackoverflow.com
This method is susceptible to url hacking.
Subscribe to:
Posts (Atom)