C# - Adding And Maintaining Named Strings In A Separate Class File?

Aug 3, 2010

I have developed an asp.net web application containing 40-50 pages. I have implemented logger using Log4net and each of my pages has this in its page_load event.

[code]...

This method has many strings like "In page Load function","OrgId","Homepage.aspx?Sid=1","Page load function successfull". Now i would like to maintain these string which are common throughout my application in a seperate class file and use it with a variable...

View 2 Replies


Similar Messages:

How To Create A Log File As A Separate Class

May 13, 2010

I'm web dev newbie. I'm trying to create a log file as a separate class that will catch every exception , the thing is I don't much about files, where it is created, the path should be given or not, where is the ideal place to create it

View 3 Replies

How To Make A Class Recognize That An Interface Found In A Separate File Exists

Mar 8, 2010

I've made an interface called ApprovalEvent in a separate file with the namespace myproject... I've also made a class called PurchaseOrder... it's also in the same namespace, just in a separate file. Whenever I try to make PurchaseOrder implement ApprovalEvent it always says that ApprovalEvent is undefined...

How can I make the class recognize that the interface exists but is in a different file?

Here's some code:

[Code]....

View 1 Replies

Instantiating A Dynamically Named Class?

Jan 21, 2010

I have a C# web page that allows the user to select an object from a DropDownList. Each object in the list has its own class. On the user making a selection information appears on the page that is generated from its respective class.

How do I instantiate a class depending on the users selection? I could use a switch statement that would instantiate anyone of the classes pending the dopdownlist.selecteItem value, however I was hoping to avoid that.

View 4 Replies

Web Forms :: Adding Method To Class File?

Mar 11, 2012

i have private void enableFormValues(Control parent) in my aspx page

i added the above code in a classfile as public void enableFormValues(Control parent)

but when i am trying to call it in .aspx file i ama not getting enableFormValues

View 1 Replies

WCF / ASMX :: Maintaining Backward Compatibility When Adding To The Service Response?

Jan 7, 2011

We have a web-service written in .net v2 which has two simple methods, Request and RequestTyped. The first of these items return a structured XML document which may include error information. The second of these methods returns and object which contain the node information of the first, but in a typed format? This service has several hundred clients and has been operational for some time.

I was wondering what the implications would be to adding an additional node to the response of both methods. Obviously the object returned by the second of these two methods will also now include this data as an additional property. What are the implications for our clients?

1)Will the additional node returned by the first method be ignored by those consuming the services that have not refreshed their WSDL?

2)Will the additional property returned by the object in the typed method break existing models which have not refreshed the WSDL?

View 1 Replies

VS 2008 Adding Css File To Class Library Project?

Jan 10, 2011

I have a custom gridview control which is a class library project.I want to be able to specify the css class for the gridview which I can do.But I also want to set a default css stylesheet to the gridview. So if I don't override it using the cssclass property it must get it's cssclass from the default stylesheet I have in my project.

How can I specify the default stylesheet. I have a stylesheet in a folder called "Styles" in my project.

View 4 Replies

Attach An Auto-named Database For File <FILE> Failed?

Feb 15, 2011

I have the ASPNETDB.MDF database in the App_Data folder of my project.I'm getting an error when I try to add a user:

MembershipUser user = Membership.CreateUser(viewModel.Username, viewModel.Password, viewModel.Contact.Email,
viewModel.SecurityQuestion, viewModel.SecurityAnswer, true, out createStatus);

View 1 Replies

Templates And Connection Strings In A Class Library?

Jan 5, 2011

I'm using the template posted in this thread to generate C# enums from a couple of lookup tables in SQL Server within a class library that contains my DAL.

At the moment, I have the connection string used by the templates embedded an a template include file in the class library. Is there a convenient way to have the template grab the connection string from the main project (WAP)'s web.config without having to include a physical path? Or is there a better way to approach this?

I've also considered creating a SQL CLR assembly which returns a table-valued function containing the enum contents (which would then be defined in C#, not in the database), but I'm not sure what the performance hit would be. Whether or not it's significant will obviously be application-dependent but I'd hate to charge down a crappy path if it's a know best-avoid-this approach.

View 1 Replies

C# - Accessing Page Controls From A Separate Class?

Aug 6, 2010

I'm wondering how I can go about accessing page controls from a separate class I've made. I've tried a few things I found using google, but no luck :(

What I'm trying to do is keep a function that is used often, in a global class.

The function then accesses a page literal and calls ScriptManager.RegisterStartupScript. I was hoping this is possible, so then this function wouldn't have to be copied to all of the pages.

View 4 Replies

How To Reference A Field In Another Class In A Separate Aspx Page, Using C#

Aug 19, 2010

I have a 2D array of doubles in my Default class on my Default.aspx.cs page, like so:

protected Double[,] time;

By the time the page loads, I have populated this array from a database. Now, I want to reference this array in another file (Diff.aspx.cs) to avoid visiting the database again. Also, the data is used in a read-only fashion.

View 2 Replies

Forms Data Controls :: Create A Gridview In A Separate Class?

Feb 9, 2011

Does anyone know if it is possible to create a gridview from a class on a seperate webpage?

So I have webpage 1, that calls Class 1, in Class one there will be a Select Query that will call some info from a database and then return it to a gridview. The gridview wont work obviously as it is in the class and not on webpage 1.

Is there anyway to reference the fact I would like the gridview created on webpage1?

View 1 Replies

HttpHandlers / Modules :: .doc Extension Doesn't Intercept A File Named Like Pippo.doc

May 6, 2010

i manage the doc extension through a customized HttpHandler :

I set <add verb="GET" path="*/*.doc" type="MOMA.IWT.Framework.Portal.Components.HttpHandler.ResourcesHandler, PortalComponents" /> in the httpHandlers section of the web.config file and in IIS property i add a mapping for .doc with C:WINDOWSMicrosoft.NETFrameworkv2.0.50727aspnet_isapi.dll

So, when i try to get a file named like pippo.doc within my web application [URL) my handler intercept the request, all right but when i try to get [URL]the result is 400 bad request My question are: why the handler doesn't intercept the request? How can I open the pippo..doc document?

View 7 Replies

Web Forms :: Use Parameter Output Scope Identity To Named Upload File

Apr 3, 2012

I've sp :

ALTER PROCEDURE dbo.FileUpload (
@Filename nvarchar(250),
@FilePath nvarchar(250),
@IDPersonne BigInt,
@FileId int OUTPUT

[Code] ....

Everything works fine like this but i would like use the parameter output to do this when i want named the upload file like this :

 cmd.Parameters.AddWithValue("@FileName", Request.QueryString["IDP"] + p + "_" + filename);
cmd.Parameters.AddWithValue("@FilePath", "Files/" + Request.QueryString["IDP"]
+ p + "_" + filename);

How to do this ?

View 1 Replies

C# - ASP.NET - Best Practice For Reading Localized Strings From XML File?

Feb 14, 2011

I got an assignment to localize the website and to store all string values into the XML file. The reason for that is to let the sys. admin to change the localized values himself by editing XML file. Should I read the content of XML file and store in the memory on application startup? I guess there's a best practice for this kind of scenario.

View 2 Replies

SQL Server :: DataBase Error When Attach An Auto-named Database For File?

Oct 6, 2010

I m trying to save files like pdf, word, excel etc... into sql express, but m getting this error in my web page:An attempt to attach an auto-named database for file C:Usersmalek.safaDocuments est vbSavingFileInDBSavingFileInDBApp_Dataaspnetdb.mdf failed. A database with the same name exists, or specified file cannot be opened, or it is located on UNC share.
m not getting errors inside my code, just this one appearing on the web page.

View 2 Replies

MVC :: Store Model In Separate Class Library- Pass Model Objects?

May 19, 2010

I'm building an MVC 2 RTM app, and I want to be able to share my model across applications. I'd *like* to be able to implement it like:ASP.NET MVC2 app (holds Views and Controllers)Class library to hold Model(s)WCF app to handle the data transactions with the models via different data stores across apps I had the MVC app working fine, but I wanted to abstract the data stuff and be able to work with the model across apps through the WCF site, so I created a class library project and moved all of the Models classes into that and set-up a WCF app, then added project references to the MVC and WCF apps that point at the class library. The idea was I can create services that take and return objects from the model via method calls across apps. It appears that everything's wired up correctly in the MVC project, so I'm passing the objects stored in the Models class library between controllers and views and everythig is compiling just fine, but for some reason the data is not being passed back from the views to the controller on POST -- all of the properties in the classes are null or empty.

When I debug the app, I can see that the values are stored in the model data dictionary but not the model object itself. What am I doing wrong? Am I on the wrong path, or missing something obvious (to some)?

View 2 Replies

Hard-coded Strings Versus Resource File

Jan 4, 2011

As the title says then the question is relative simple however I cant decide whether a resource file with strings in is better than hard-coded strings...

View 3 Replies

Access :: Multiple Connection Strings In Web.config File

Jan 12, 2010

Is that possible to add two connectionstrings in web.config and Can I call those two web.config in my aspx.cs file?

View 3 Replies

Web Forms :: Converting .cs Class File To .vb Class File?

Jan 16, 2010

i have code in .cs class file

i need it in .vb

i used conversion tool for converting

but i feel its not proper as i am not able to reference it in my page

is there any other way

View 4 Replies

DataSource Controls :: Display Results From Two Separate Tables In Two Separate Databases?

Jan 14, 2010

I have access to two seperate databases (mySQL) located on two servers. I need to get the data, link the tables on a key field and display the results in a datagrid. My challenge is that if the search criteria changes for the display it affects rows returned from on table and should thus automatically affect the linked table and resulting data returned.

what the best approach would be to achieving this? So far I have set up a dataset with a dataadapter and table for each connection and then linked the tables in the dataset. The problem that I'm having is getting the linked resultsets to work.

On my form I have the datagrid with two Objectdatasources one for each dataadapter and i believe that's where I'm going wrong...

View 1 Replies

Put Autocomplete Methods In Separate Web File?

Dec 16, 2010

I have a web site with a growing number of AJAX calls.

I have AJAX code that looks like this:

function setupNameAutocomplete(id) {
$(id).autocomplete({
source: function(request, response) {
$.ajax({
url: "selectName.aspx/getNameAutocomplete",

Originally, the above javascript code was used on a web page where a user typed in the name of a person to search for; I decided I wanted to have autocomplete on the name.

However, as I continued to develop the web site, I decided that I wanted to be able to use the same "name" autocomplete on many pages. Logically, it made sense to put my javascript code in an external .js file instead of repeating it on every page.

It also makes sense that I would want to put the .net code that handles the AJAX in its own file as well. The .net autocomplete code looks like this:

[WebMethod]
public static IEnumerable<string> getNameAutocomplete(string text)
{
IEnumerable<string> values = lookupNamesThatStartWith(text);
return values;
}

Naturally, it seemed like this codes belongs in an external .asmx or perhaps a .ashx file, but I can't get my javascript code working unless I call the above code from selectName.aspx.

How can I get my AJAX .net code in a seperate code file?

View 1 Replies

Configuration :: Two Connection Strings In 4.0 Web.config File Using Ms Sql 2008 Express

Jan 21, 2011

I would like to use both of the connection strings in the same web.config file how can I do this I tried this yesterday it worked I called it a night, then this morning I got this. The error being on line: 10 Parser Error Message: The entry 'ApplicationServices' has already been added.

Line 8: <add name="ApplicationServices"
Line 9: connectionString="Data Source=Mysource;Initial Catalog=travelatlantic;User ID=MyID; Password=MyPassword;" />
Line 10: <add name="ApplicationServices"
Line 11: connectionString="Data Source=MySource;Initial Catalog=travelatlantic2;User ID=Myid; Password=MyPassword;" />
Line 12: </connectionStrings>

View 8 Replies

Web Forms :: Why Class Of User Control Is Unavailable In Another Class File

Nov 18, 2010

I have build a UserControl with separate code behind file.In that code behind file i have defined some public properties in the Partial class of user control that was automatically generated.Those properties will initialize some properties of controls that are used in the control.Now, in .aspx page i used this User Control and initialized the public properties through code behind of aspx page for dynamic contents.

View 6 Replies

Reading Settings From Separate Config File?

Feb 9, 2010

My asp.net app has is using a web.config for common configuration. I also have a section that maps some data objects to connection strings, and that section is going to be couple thousand of lines. I want to move that section to another config file "dataMappings.config", so I don't bulk up web.config - is there a standard mechanism of accessing that config file?

View 1 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved