Tagged Questions
ASP.NET is a web application framework developed by Microsoft to allow programmers to build dynamic web sites and web applications.
0
votes
0answers
10 views
return more than one data with soap webservice
I am trying to create a webservice which will return more than 1 string. it will return 4 strings. I didt webservices before and I used to return only true or false values. but now I need more data.
...
0
votes
0answers
3 views
Validation of viewstate MAC failed when ran from Visual Studio 2010
I am receiving the below error from a very simple web application ran directly from Visual Studio 2010 with framework 4.0.
Server Error in '/' Application.
Validation of viewstate MAC failed. ...
0
votes
2answers
15 views
Display ASP.NET generated pdf byte[] to web page without saving the file
I'm using iTextSharp for generating a pdf. I can save the PDF file from the PDF byte[].
byte[] outputPDF = cnt.CreateBreakPDF();
File.WriteAllBytes(pdfOutPutPath, outputPDF);
What is the best way ...
0
votes
2answers
16 views
Repeater ItemTemplate and DataBinding
I have some .ascx and its code behind. I am using Repeater with my ItemTemplate there.
So the question is - in which moment this template is assigned to my repeater?
Regards, Dmirty.
0
votes
3answers
20 views
SQL expressions in EF using Lambda
I would like to know if something similar to this (linq to SQL)
customers.Where(c => SqlMethods.Like(c.Name, "%john%"));
is possible to do in Entity Framework. Preferably using lamba ...
0
votes
2answers
24 views
Asp.Net MVC Adding two viewmodels to a third
I have two viewmodels, VM1 and VM2 - I want to add these to a third viewmodel, so I can send two tables of information, to my view - but I'm struggling.
My viewmodels are:
public class VM1
{
...
-4
votes
0answers
22 views
What technology used to set up a travel website in asp.net 3.5 and c# [closed]
I have a project in which there are a lot of destination/subdestination along with packages.
In this project also i manage hotel booking and other task. I want to know that how i set up my project to ...
0
votes
0answers
8 views
internal Button/link click tracking application for a website
The requirement is pretty simple but I'm struggling to find any application that meets it.
We have an existing ASP.NET WebForms 2.0 site. uses the AjaxToolkit and jQuery 1.4.
The system ...
0
votes
2answers
16 views
unable to access the linq to sql result in mvc4
I am getting result from theee tables usign linq to sql but i am unable to use the values in the view, how i can do that as i am new to mvc
here is my controller code:
public ActionResult Grid()
{
...
0
votes
1answer
34 views
Value of Dropdownlist in Listview
I have DropDownList in listview, and i want to have selectedValue same as Dropdownlist2, which isnť in listview?
Can you any idea?
Now I have this code..but it isnt working..
Values in Dropdownlist ...
0
votes
0answers
21 views
Multiple ASP.NET Membership roles in the same Website
In my MVC3 application I have ASP.NET Membership roles like - Manager, System Admin and Editor
I am using Windows Authentication for the website and I am adding the users in the Network to the ...
0
votes
1answer
14 views
Is there any relation between compilation debug=“true” and in publis mode “release”
Do I need to set the debug='false'
<compilation debug="false" targetFramework="4.0" />
Even if Publish my code in Release Mode.
0
votes
0answers
16 views
issue with child application paths
I created a new website in IIS called wbsite1 than i added an application to website1 wish is a website also called website2 but the problem appeared when we try to access links in website2 the ...
0
votes
0answers
12 views
How to implement digital signature in asp.net?
I have a asp.net web application.
I want; users can digitally sign PDF documents with certificates installed in the client machine. Users have a PIN. They must upload file and enter their unique PIN. ...
3
votes
1answer
35 views
How to Parse a DateTime String to Support 24 hours timing?
I'm trying to use DateTime.TryParseExact as below:
DateTime modifiedSinceDateTime;
var succeeded = DateTime.TryParseExact(modifiedSince, "yyyy-MM-ddThh:mm:ss",
CultureInfo.InvariantCulture,
...