0
votes
1answer
34 views

Different date types manipulation

I am currently stuck with a database issue where I need to manipulate data using my database inserts. I am currently doing a website with C# ASP.NET on Visual studio 2012 and the database I am using ...
-1
votes
0answers
35 views

How I can get log in time asp.net 4.5 in visual studio 2012 [closed]

How I can get log in time asp.net 4.5 in visual studio 2012 i want to store the time for example {0x1, 0x2, 0x3, 0x4, 0x5, 0x6, 0x7, 0x8} cqn u help me encrypt the array with public key (modulus AND ...
0
votes
0answers
25 views

MetaData class usage

I am trying to learn a new framework (i think) and i have got to a stage where im not sure whats going on. So i created a class and a Metadata class. My assumption was that i would have had access to ...
-1
votes
2answers
115 views

C++ Program for Finding LCM of given N number

i want to find LCM of more than two numbers C++ Program for Finding LCM of given N number
1
vote
0answers
123 views

Developing a security tool or API for web application [closed]

I'm doing Computer science degree and part of my final year is a project based on network security in which i have to develop a tool or an API to secure web application more likely a web application ...
3
votes
1answer
1k views

System.Net.WebException: The remote server returned an error: (403) Forbidden when access Google API

I'm using the Google API on my website. It works fine from my localhost, but on the live server I get the following error: System.Net.WebException: The remote server returned an error: (403) ...
0
votes
0answers
116 views

Design View in Visual Studio 2010 ASP.NET 4.0 not keeping HTML format, (it gets a mess)

I have an issue with my design view in asp.net. I have a master Page which when I debug eerything is fine but when I choose design view in the window al controls are missplaced. Any idea how to fix ...
2
votes
1answer
104 views

How can native library methods be used in a web application?

I have many native libraries with a C API that contain functionality I want to use in a web app. What choices are out there (frameworks/languages) for doing this?
-1
votes
1answer
138 views

Foreach MVC3 MembershipUser

i have implemented a class inherits TableServiceEntity that adds a few propertys called UserEntity. In a view, i want to do a foreach loop to show all the entries like this: @model ...
0
votes
1answer
106 views

how can I copy all cells in a datarow to session?

foreach (has.has_actorRow actorrow in actortable.Rows) { foreach(object actorcell in actorrow){ //add all to session } } gives me an ...
1
vote
2answers
733 views

uploading files using httpSendRequest c++

I am trying to send a file to HTTP server via POST request (c++ and winapi), steps: // Read file into "buff" and file size into "buffSize" .... .... .... HINTERNET internetRoot; ...
1
vote
0answers
178 views

Data Annotation Validators with Asp.net Web Form and differences with MS Enterprise Library Validation Block

I use Asp.net 4 and C# in Web Forms with Entity Framework 4. I need cross cutting Validation for my Entities on the business layer and on the presentation layer. I read about Data Annotation ...
2
votes
1answer
1k views

Move config settings from web.config to ServiceConfiguration.cscfg

If I am moving config settings from my Web.config to Aazure ServiceConfiguration.cscfg, Do I need to make any code changes For Example my I have the below mentioned entries in my Web.config ...
3
votes
4answers
2k views

How to read programmatically web.config values?

I use asp.net and c# 4. I have a Web.Config file <globalization culture="auto:fr" uiCulture="fr"/> I want to get this value in a new variable programmatically in Code Behind. var test = ...
0
votes
1answer
482 views

.Net Error - System.AccessViolationException: Attempted to read or write protected memory

I am using server side active x control for paging (http://activexperts.com/xmstoolkit/). The code below worked find on windows 2003 servers but now we moved to windows 2008 and I am getting the ...
6
votes
2answers
814 views

How can I write raw XML to a Label in ASP.NET

I am getting a block of XML back from a web service. The client wants to see this raw XML in a label on the page. When I try this: lblXmlReturned.Text = returnedXml; only the text gets displayed, ...
0
votes
1answer
312 views

How to keep connection alive when using webrequest?

string strURL = (Request.IsSecureConnection ? "https://website.com/Transaction.asmx" : "http://website.com/wTransaction.asmx"); string strCommand = clsMisc.strGetDataFromPage(this, "c", "", ...
0
votes
1answer
119 views

Compiled C dll can't set pointer when called from ASP.NET App

I've got a 3rd party C application that's compiled to a non-.NET non-COM DLL. It has one simple function declared like so: Declare Function CapiTaxRoutine Lib "taxcommono.dll" (ByVal sInData As ...
0
votes
3answers
510 views

How to call a C library from .NET

I have a C library which I need to call from an ASP.NET / C# app, how do I go about doing this?