0
votes
3answers
40 views
How can I make a query string tamper-proof?
I need to use query strings in a URL, but need to ensure that they haven't been tampered with. I found a solution which almost works, but the encoded strings get mangled by a service my app needs to …
1
vote
5answers
67 views
Specifications for Servers for Team Based Development
Background
My business is getting more and more requests for web development and as such I'm adding another .NET Developer to the team.
My current development environment is really poor, just a …
0
votes
2answers
49 views
TreeView and Postback
Here is my situation: I will have a web page with TreeView control, which is supposed to be expadable/collapsable/editable. All good so far. I know that postback is used heavily in this control which …
0
votes
3answers
50 views
Object reference not set to an instance of an object.
I keep getting the following error and I don't know how to fix it. Any help would be great please
Exception Details:NullReferenceException was unhandled by users code: Object reference not set to an …
0
votes
0answers
12 views
linq query with group
I'm having a table which contains userId, regBy, regDate and so many..
I need a out of regDate, regBy and count(userId).
How can a query this using LINQ..
2
votes
3answers
37 views
Storing special characters in database
Can somebody provide some best practices when storing special characters such as the trademark (tm or r) or copyright (c)? I am storing them in a varchar field with other text in SQL Server, and …
0
votes
1answer
26 views
Run ASP.NET application as Default Web Site on dev machine
I am trying to run my ASP.NET Web Application Project in my Local IIS Web Server instead of using the Visual Studio Development Server. It seems to only allow me to run my application in a Virtual …
0
votes
2answers
32 views
ASP.NET static variables remain when I stop my application!
I have some static classes in my application.
When I run the application, stop debugging and restart I notice that these variables stay in memory!
So when the application terminates they are left …
0
votes
1answer
11 views
Startup Script Not Firing During Partial Refresh
I have a User Control, named MyUpdateControl, that fires a startup script - its HTML is simply:
<div id="updatableArea"></div>
The startup script is added in the User Control's …
0
votes
1answer
13 views
control not allowing an id to be recognized
what kind of control is a cc2:WebToolkitGridview control? How is it different from a normal asp:GridView control? I am having issues adding a dropdown list within the cc2:WebToolkitGridview control, …
0
votes
3answers
250 views
Redirect user to authenticated page that uses forms authentication, using HTTP Location Header, HttpWebRequest/Response and Response.Cookies.Add()
I need to autheticate on a site using forms authentication and then redirect the user to that site along with the session cookie. I have not figured out how to successfully do this. Here's my code …
0
votes
1answer
26 views
Why does Velocity lose session after only a few minutes?
I've set up sesion management with Velocity distributed cache. I have 3 servers hosting the cache and created the named cache with
new-cache Sessions -Secondaries 1 TTL 1440
and the following is …
0
votes
0answers
32 views
Reload external javascript after asynchronous postback via UpdatePanel
I have an external javascript on my page, e.g. something like:
<script src="http://foo.com/script.js" type="text/javascript"></script>
and an UpdatePanel somewhere. The script writes …
0
votes
1answer
57 views
How to login in LinkedIn automatically from asp.net application?
I have dummy username and pasword to enter in linkedin. From an asp.net application, when the button is clicked i need to login automatically used the username and password in linkedIn.
How to do …
0
votes
1answer
21 views
AjaxControlToolkit MaskedEditExtender - custom mask appearance
I'm using a MaskedEditExtender to show users what format they should use to enter a date into a textbox. How do I change the mask to be dd/MM/yyyy instead of __/__/____?
