ASP.NET is a web application framework developed by Microsoft to allow programmers to build dynamic web sites and web applications.
5
votes
1answer
200 views
+50
AD User Authentication
I am attempting to create an ASP.NET (.NET 3.5) website to connect to our Exchange 2010 server through Exchange Web Services, I am able to connect to EWS when I define the username, password and ...
2
votes
1answer
64 views
+100
Requests hanging on Session module on IIS 7.5
From time to time, some requests on my website starts to hang on the RequestAcquireState state of the Session module. When that spiral begins all requests timeout and we need to restart the IIS on the ...
0
votes
0answers
83 views
+50
CRUD operation for hundreds of entity(tables) in oracle
We have hundreds of tables in oracle where each table for an entity.
Now we have to do the CURD operations for the entities through our B/S application.
We use asp.net 4.0. It is a hard work to ...
0
votes
0answers
41 views
+50
How to use zong with asp.net website
Zong is a mobile payment company that allows users to make micropayments on the Internet if they have a postpaid mobile phone The payments are charged to their mobile phone bills by the mobile ...
1
vote
1answer
32 views
+100
Acceptable security: Disable ValidateRequest with Paramatised SQL and HTML Encoded Strings?
I'm trying to make sure my webforms ASP.NET application is as secure as possible, it receives and stores user input data to a SQL database (the usual stuff) only for users with a login, so not ...
0
votes
1answer
113 views
+50
iTextSharp - MVC / HTMLWorker one string to add to a paragraph
I am sending the contents of Telerik MVC Editor to the controller using Ajax as a string:
I comes out as:
"<strong>Hello world!</strong> <object height=\"1\" id=\"plugin0\" ...
1
vote
1answer
76 views
+50
Membership.Provider for mysql in asp.net issue
Using MVC4 synced to a mysql server. Did it successfully by changing the machine.config and successfully used the ASP.net Configuration Tool to create users. However when I log in with a username ...
2
votes
1answer
447 views
+50
Whether to use Page_IsValid or Page_ClientValidate() (for Client Side Events)
I have following code inside a button click handler. Both approaches work fine. The Page_ClientValidate() causes an extra validation check and do processing whereas Page_IsValid makes use of existing ...
1
vote
2answers
38 views
+100
How do I enable GZIP compression for POST (upload) requests to a SOAP WebService on IIS 7?
How can I enable compression for POSTed data uploaded to a .NET WebService (SOAP, not WCF)? I thought it would be a simple matter of enabling dynamic compression in IIS but after enabling, it's only ...
