Tagged Questions
10
votes
2answers
468 views
I need a fast runtime expression parser
I need to locate a fast, lightweight expression parser.
Ideally I want to pass it a list of name/value pairs (e.g. variables) and a string containing the expression to evaluate. All I need back from ...
6
votes
2answers
881 views
System.Security.VerificationException: Operation could destabilize the runtime. (Subsonic 2.2)
I recently tried to upgrade a .net 2.0 project which had its DAL generated by SubSonic 2.2 to .NET 4.0 under Visual Studio 2010.
The projects converted without error but now I am getting a rather ...
5
votes
2answers
51 views
pass model from one action to another action in same controller
I am trying to pass my model List< Models.Statement > statementList from one action to another but i am receiving null value in the 2nd controller. Please suggest what is wrong here. Even tried ...
5
votes
5answers
82 views
Duplicate type error?
We have been having a random issue with our live website. We're not sure what exactly is causing the issue. We tried clearing the temporary files but the issue happened again. We even killed the IIS ...
5
votes
6answers
7k views
Crystal Reports for Visual Studio 2010 Error
I am trying to run a crystal report from my web application which was built using ASP.NET 4.0 and Visual Studio 2010. I have installed the following from the SAP site ...
5
votes
2answers
3k views
ScriptRessources Error : This is an invalid script resource request
We catch this error sporadically. Does anyone know what could it be?
The URL give by our error logging get this weird url for this error :
...
5
votes
2answers
4k views
asmx web service returning xml instead of json in .net 4.0
i have just upgraded a test copy of my site to asp.net 4.0 and have noticed a strange issue that only arises when i upload the site to my server.
the site has an asmx web service that returns json, ...
4
votes
7answers
113 views
alternating row color MVC
I need to design a table with alternating row colors. Below is written code but its not working. May be some syntax issue for MVC. Please suggest.
@for (int i = 1; i <= 10; i++)
{
var ...
4
votes
3answers
235 views
Implementing DotNetOpenid in my asp.net website
I am trying to implement DotNetOpenid in my asp.net website. However, the more I try to read up on DotNetOpenid, the more confused I get. My initial goal is to allow user login process (similar to ...
4
votes
2answers
595 views
Custom Data Annotations IsValid is never invoked. (ASP.NET MVC 2 .NET 4)
I have a custom Data Validation Attribute I've created to make sure the passwords a user inputs are the same, but IsValid is never invoked.
Custom attribute:
public class IsSameAsAttribute : ...
4
votes
1answer
164 views
Visual Studio's Format Document – How to Write it in C#
I'm having a go at writing some C# code which overrides the Render method of the System.Web.UI.Page and then reformats the HTML before presenting it to the browser. This is purely experimental so ...
3
votes
3answers
55 views
Can I programmatically handle cached pages in webforms
For example, my home page shows a few of the newest products. I would like to set this page to be cached indefinitely, and then when I create a new product I could delete the cached page in my code, ...
3
votes
2answers
329 views
Is ASP.NET with .NET 4 faster
I'm looking to upgrade my ASP.NET web app to the .NET 4 framework. Would I see performance improvements right away?
3
votes
3answers
652 views
ASP .Net: Authorization issue
I am having some trouble when I use ASP .Net 4's URL Routing feature while Authorization rules configured.
Global.asax
void Application_Start(object sender, EventArgs e) {
...
3
votes
1answer
569 views
ASP.Net 4.0 - Response required in SiteMap building?
I'm running into an issue upgrading a project to .Net 4.0...and having trouble finding any reason for the issue (or at least, the change causing it). Given the freshness of 4.0, not a lot of blogs ...
2
votes
3answers
48 views
Sanitize Foreign Characters / Accents From URL
I need to write a server side function to sanitize URL encoded strings.
Example querystring:
FirstName=John&LastName=B%F3th&Address=San+Endre+%FAt+12%2F14
When I pass that through ...
2
votes
3answers
39 views
send pdf statement without saving on application server
Requirment: To generate invoice in pdf format on company template and send it in email.
Approach I used:
Placed the company template at path: ~Content/InvoiceTemplate/
Using iTextsharp Pdf ...
2
votes
2answers
74 views
Repository pattern with PLinq
I am fairly new to Plinq and Repo pattern. I nee some references and guidlines from you for implementation of Repository pattern using dbml, PLinq in fx 4.0
2
votes
2answers
106 views
HttpWebRequest redirect with cookies
I know a lot of questions have been asked about HttpWebRequest. However, I can't find any answer for the problem I'm having.
I need to mimic the way browsers redirect URLs. My code works fine but not ...
2
votes
1answer
187 views
ASP.Net C# Routing; HttpHandler; and HttpModule not working
I am having quite a few problems with custom extensions and intercepting existing handlers.
What am I trying to do
Based upon persisted options, I would like all 'virtual' extensions to be handled ...
2
votes
1answer
108 views
How to send list of objects to WCF service?
I'm building WCF service and I would like to accept List as a parameter to one of my method.
Here is my code:
[ServiceContract]
public interface IProductService
{
[OperationContract]
int ...
2
votes
2answers
113 views
How to dispose thread in c#
I have used threading in my web application which I have mentioned below:
var t1 = new Thread(F1);
t1.IsBackground = true;
t1.Start();
var t2 = new Thread(F2);
...
2
votes
2answers
190 views
Linq self-join query
I need some help with Linq self-join.
I have the following classs:
public class Owner
{
public string OwnerId {get;set;}
public string Name {get;set;}
public string Area {get;set;}
public string ...
2
votes
1answer
263 views
Caching ASHX Image Response
I have created an ashx file to generate image thumbnails on the fly. I would like to cache these images client side after they are called the first time.
URL:
...
2
votes
2answers
195 views
special character in url routing in asp.net 4.0 web form?
How to handle special character in url while using url routing in asp.net 4.0?
special character like ( & , .)
It shows error as bad request or dangerous character in url.
How to handle?
...
2
votes
1answer
202 views
encrypting web.config
Here is my c# code :
System.Configuration.Configuration config =
System.Web.Configuration.WebConfigurationManager.OpenWebConfiguration("~/Web.config");
ConfigurationSection section = ...
2
votes
3answers
557 views
Global.asax.cs and Static variable
In a WCF Service, I need to create a variable which should be accessible anytime from anywhere. All methods of my service need to have access to that data and I can load it only once. So I though ...
2
votes
2answers
780 views
Custom membership and role provider in MVC 3 application
I have custom membership and role provider (C#) in my .net 4 (webform based) web application.
I am moving my web app to MVC 3.
How do I migrate or implement my custom providers in MVC 3?
Any ...
2
votes
1answer
109 views
Creating a composite key in VS2010
I've got a conjoining table, which I need to insert into with LINQ. But I can't insert into it because it has no primary key. I created a "Unique Key" which is a composite in the VS2010 table ...
2
votes
3answers
369 views
C# .Net 4.0 Creating a class like ASP.NET MVC 3 ViewBag?
I have a situation where I would like to do something simular to what was done with the ASP.NET MVC 3 ViewBag object where properties are created at runtime? Or is it at compile time?
Anyway I was ...
2
votes
5answers
458 views
HTML Email created with ASP.NET MVC 2 View (standard view engine)
Is there a way to email an ASP.NET View using the standard view engine (not spark)?
2
votes
1answer
482 views
How to change the layout of the CreateUserWizard control?
How to change just the layout (template) of the CreateUserWizard control programmatically? I would to define another layout (not using the horrid table) but continue to use all the event handling and ...
2
votes
4answers
175 views
Code Keeps Timing Out
So, we've got this set of code that, for some reason, keeps timing out. It's not the stored procedure that it's running, because that runs fine. Also, if we remove the parameter from the c# code, ...
2
votes
5answers
350 views
Access list in codebehind from aspx page
My code-behind looks like this
class Image
{
public string tnImg { get; set; }
public string Name { get; set; }
public string city { get; set; }
public string ...
2
votes
3answers
731 views
ASP.NET MVC - Uploading an image to Amazon S3
I have my image from Request.Files[0]. Now, how do I upload this image to S3? I see that in the AWS .NET API you have to specify ContentBody when putting an object which is a string. How would I get ...
2
votes
1answer
210 views
How to get password html helper to render password on failed validation
I have a form for creating a new account and it has a password field in it. I'm using view models to pass data to the controller action and back to the form view. When the user enters their details ...
2
votes
3answers
328 views
ASP.NET 4.0 webforms routing
I have an existing site that I'd like to convert to use routing, and after reading Scott Guthrie's post here, I built a working sample that works for most circumstances. However, since not all of ...
2
votes
1answer
4k views
ADO.NET EntityObject Generator
I've just installed VS.NET 2010 and discovered that ADO.NET EntityObject generator exists as a new item.
Do u have more docs on it? i surfed on the net, but i found only two urls' speaking about ...
1
vote
0answers
46 views
Attempting Simultaneous File Operations
I am attempting to create an ASP.NET 4.0 website (C#) that does the following: after the user clicks a button, take user inputs (from text boxes) and call a Powershell script on the server. The ...
1
vote
1answer
80 views
Asp.net c# cshtml with jquery Datatables 1.9 update [closed]
I have just start using razor 2 days ago, and i like it very much and at the midst of learning as well.
Now, i am working on a Accounting project and I got stuck with jquery datatables 1.9
I am ...
1
vote
1answer
41 views
I want to Store Date specific to “Arabian Standard Time” irrespective of the time zone on web server
I have been trying to find ways to save Datetime specific to "Arabian Standard Time" which is +4 UTC.
So far I have not been successful.
Here's an example:
Response.Write("<br>System Time : " + ...
1
vote
1answer
55 views
How to not match double spaces?
So far so good, but I would like to match "Health and Beauty" instead of "Health and Beauty _ _ _" (trailing six spaces)
var a = Regex.Match("Health and Beauty 08/05/11 TO 08/11/11",
...
1
vote
2answers
54 views
How to return the unique ID after DB insertion
Using ASP.Net C# with MVC3
Here is my insert code.
var fInfo = new FileInfo {filename = filefield.FileName, dateadded = DateTime.Now.ToString()};
db.FileInfoes.AddObject(fInfo);
db.SaveChanges();
...
1
vote
1answer
85 views
How to set ClientIDRowSuffix on nested ListView when using XmlDataSource?
I've got an XmlDataSouce with Movies and Actors. I would like to list the each movie with the specified actors. I'm using ListView controls with ClientIDMode="Predictable" and a ClientIDRowSuffix to ...
1
vote
2answers
138 views
Best way to detect major search engines in C# MVC
I found the following question but if possible I don't want to have to make changes that will affect all sites on the server. HttpBrowserCapabilities.Crawler property .NET
I also found instructions ...
1
vote
2answers
74 views
code fail when retrieving a larger amount of data from web service
I have a web service returning some Json stuff to my iPhone application and it works fine as long as the amount of returned data is kind of small but if I increase the amount of data that is returned ...
1
vote
3answers
57 views
Security of cached data in .NET
I cached one DataTable fetched from SQL Server 2005 through C# ASP .NET 4.0 Web App [around 50000 row 32 columns]..
Cache by mean is on Client-Side.
I want to know whether the DataTable is secure ...
1
vote
2answers
89 views
Set watermark on an image and save it in an original quality
I upload a photo on web site and I want to set a watermark on it and save it in original quality. For testing I create C# application.
class Class1
{
public static string ...
1
vote
3answers
74 views
any better way of Sorting my dropdownlist
After I retrieve the country names in English,I convert the country names to localized versions,I need to sort those names again so I used SortDropDownList.
Here after I sort my dropdownlist Items,I ...
1
vote
1answer
148 views
Maximum Length of FormsAuthenticationTicket.UserData Property
I am implementing a Custom Identity class for an ASP.Net 4.0 site with Forms Authentication based on this tutorial:
Forms Authentication Configuration and Advanced Topics
I would like to store extra ...