|
The assemblies/files i mentioned are all declared one after another in my code. At first i get
the following error:
Configuration Error
Description: An error occurred during the processing of a configuration file required to service this request. Please review the specific error details below and modify your configuration file appropriately.
Parser Error Message: Could not load file or assembly 'System.Core, Version=3.5.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089' or one of its dependencies. The system cannot find the file specified.
As i get this error for this specific assembly mentioned above, i tried removing the assembly and add its reference again. When that happens it is generated again in my code at the end. So when i try to publish the page again i get a similar error about next assemblies in the code.
|
|
|
|
|
I faced same Problem in my last project. It happened because all the dll which project was refering got modified.
You need to take latest DLL for your project.
Let me know exact reason for this behavior
Thanks and Regards
Sandeep
If If you look at what you do not have in life, you don't have anything,
If you look at what you have in life, you have everything... "
|
|
|
|
|
I already have the latest dlls i think because i also tried updating .NET framework 3.5 again.
And after that i re-added those references in my code but still the same errors...
Any ideas how to solve this?
|
|
|
|
|
No dude i don't have any answer for this question now
Just remove all dlls and try one more time
Are you providing any version to this dll in web.config
Thanks and Regards
Sandeep
If If you look at what you do not have in life, you don't have anything,
If you look at what you have in life, you have everything... "
|
|
|
|
|
Original Message:
The GridView in question is displaying data correctly.
However, when I pass some of them by using dynamic links on the GridView, they showup as empty strings. Here's my code: (code)
I get => "...statdetails.aspx?File=&Station=&SubmittedBy="
I checked the strings and they are empty.
You said:
You can use datarowview instead
<br />
Dim R as datarowview = e.row.dataitem<br />
fName = Convert.ToString((r.item["FILE_NAME"]));<br />
stnID = Convert.ToString((r.item["STATION_ID"]));<br />
submitBy = Convert.ToString((r.item["SUBMITTEDBY"])); <br />
I tried C# version like this: (but still does the same - empty strings)
<br />
DataRowView drv = (DataRowView)e.Row.DataItem;<br />
fName = Convert.ToString((drv.Row.ItemArray[1]));<br />
stnID = Convert.ToString((drv.Row.ItemArray[4]));<br />
submitBy = Convert.ToString((drv.Row.ItemArray[3])); <br />
|
|
|
|
|
Hi all,
Could i have two or more dropdownlist with one datalist in one page?
it means i want for example i be have a dropdownlist that when i select one of its items for example price range(dropdownlist1) or another dropdownlist that be contain from subject of book(dropdownlist2) my datalist show relation information.
if it is possible how can i do this ?
if it's impossible then what do i do?
thank you,
Hoda
|
|
|
|
|
I don't see why you should not be able to do this, you're saying the data in the list filters on both drop downlists ? Just handled the selection changed on both controls, and write SQL that gets data based on both selections. Or if you want, have a submit button, so the user can choose both before seeing the filtered list.
Christian Graus
Please read this if you don't understand the answer I've given you
"also I don't think "TranslateOneToTwoBillion OneHundredAndFortySevenMillion FourHundredAndEightyThreeThousand SixHundredAndFortySeven()" is a very good choice for a function name" - SpacixOne ( offering help to someone who really needed it ) ( spaces added for the benefit of people running at < 1280x1024 )
|
|
|
|
|
This is possible as long as you include it within your SQL statement. If you set your SQL statement to something like this: SELECT BOOK FROM BOOK_LIST WHERE PRICE_RANGE = @PRICE_RANGE AND SUBJECT = @SUBJECT. You would then have to bind your parameters to each dropdownlist. I.E. dropdownlist1 to PRICE_RANGE and dropdownlist2 to SUBJECT.
|
|
|
|
|
It works in my local machine, but we we deployed in the deployment machine it is returning empty?
We are looking for any fix that can be done at the server side.
thanks in advance.
|
|
|
|
|
Is the Server behind any improperly configured firewall?
Best Regards,
Sam Xavier
www.componentone.com
|
|
|
|
|
Subject: Query: Start Page
Dear Sir,
I have built a website in Visual Studio 2005. It carries standard files as: Homepage.aspx, Login.aspx, CustomerProfile.aspx ViewCart.aspx and few more.
I have selected Home page, as the default start up page. When I open the website, the Home page does open. But when I run the project, although am no syntax errors or warnings, the system finally opens in browser (Local host) in different page instead of the Home Page. There is no specific page, but as observed, it is normally the last page I was working before last shut sown.
Please tell me how to organize my files , so that , the home Page opens on startup as well on RUN too , from where I may navigate to other pages .
Thanks.
Abdul Hayee.
Note: I have tried MSDN and Googles . teh guide the nicest way to build an application , but do bring you back on track , once you are down.
|
|
|
|
|
If you are launching a ASP.NET application from Visual Studio then your project settings control what page will be the start up page. If you run the site under IIS then the IIS settings control what page will be the start page.
led mike
|
|
|
|
|
many many thanks ,
I have tried at least ten times at solution explorer, where the option is to choose as start page . It did work for open up. But does not work for Running the project after building and debugging.
I do not know how to procedd through IIS ........... can you guide me to link?
Thanks again.
Abdul Hayee.
|
|
|
|
|
abdul_hayee wrote: I have tried at least ten times at solution explorer, where the option is to choose as start page
abdul_hayee wrote: I have built a website in Visual Studio 2005
On the Visual Studio menu Open the "Website" menu and select the "Start Options..." menu item. That will open the settings form to the Start Options page and you should be able to setup the project the way you want from there. Make sure you click "OK" or "Apply" to keep the changes you make.
led mike
|
|
|
|
|
Thanking again for your help.
I have tried , as advised , from the website menu .
Over there , there were both the options.
The one ( Start Options ) led me to a selection page , where , I selected ( HomePage.aspx ) , clicked ( Apply ) then ( OK ) button.
The bad Luck , problem is still the same .
However, Now ( the StudentProfile design page ) always opens up.
I selected , and reselected several times. But still the same.
I do not know , how it has been hard-coded , and not being removed.
is there any other path ( or code on resourse file ), I could try ?
Many regards.
Abdul Hayee.
|
|
|
|
|
If you hit F5 in the IDE when you are in an aspx page, that page will be opened (it assumes that's what you want to test). For your site when it goes live, you give IIS a list of pages to open as a default. I would create a default.aspx, even if it just redirects to home.aspx.
What opens by default in the IDE is kind of meaningless, it has no bearing on how it will act in the real world, instead it will reflect what the IDE thinks you want to see as a developer.
Christian Graus
Please read this if you don't understand the answer I've given you
"also I don't think "TranslateOneToTwoBillion OneHundredAndFortySevenMillion FourHundredAndEightyThreeThousand SixHundredAndFortySeven()" is a very good choice for a function name" - SpacixOne ( offering help to someone who really needed it ) ( spaces added for the benefit of people running at < 1280x1024 )
|
|
|
|
|
Hello All,
Having some trouble figuring out where to start with this one. We have a web based application, programmed in vb.net, with an oracle back end, and we have a requirement to be able to have users upload documents, and have those documents converted into PostScript format so that we can compile these separate documents together.
Any document type can be uploaded.
It would be much easier if the user would be able to install post script printers on each of their computers, so that they can convert the item then upload it, but we are talking about hundreds of users where we would have to get a post scrip printer installed individually.
We may even have to go the route of creating a printer driver and having the web application install that for the user.
Does anyone have any thoughts?
Any help would be greatly appreciated.
Thanks,
Rob
|
|
|
|
|
please send me a list of sms gateway provider list of delhi/ncr
|
|
|
|
|
|
from ystrdy i m doing this only...after that i posted my question here..please help me
modified on Thursday, April 17, 2008 1:00 AM
|
|
|
|
|
There are two ways to approach this problem.
1) You can check out with your cellular operator for a subscription.
2) Check out a third party provider like http://www.smscountry.com/[^]
Vasudevan Deepak Kumar
Personal Homepage Tech Gossips
A pessimist sees only the dark side of the clouds, and mopes; a philosopher sees both sides, and shrugs; an optimist doesn't see the clouds at all - he's walking on them. --Leonard Louis Levinson
|
|
|
|
|
Yeah, because here in Australia, I know better than you what SMS providers exist in Delhi.
I recommend reading the article I link to in my sig.
Christian Graus
Please read this if you don't understand the answer I've given you
"also I don't think "TranslateOneToTwoBillion OneHundredAndFortySevenMillion FourHundredAndEightyThreeThousand SixHundredAndFortySeven()" is a very good choice for a function name" - SpacixOne ( offering help to someone who really needed it ) ( spaces added for the benefit of people running at < 1280x1024 )
|
|
|
|
|
Hi,
I need your help and suggestions regarding NUnit in asp.net....I am trying to write NUnit test cases for my asp.net application...can anybody suggest me some good practise for writing that..or some good sample codes for that..I started working on that..but it's not going smmothly..specially while saving the data...like that...please help me...
regards
alex.
|
|
|
|
|
To test ASP.NET dependent code, you can use NUnitasp[^]. AFAIK, it's not good like the real NUnit. You can use NUnit itself to test your application, but you won't be able to include ASP.NET dependent code like Server.MapPath or HttpContext.Current etc. But you can test your class libraries and business rules. Also VS team system has some unit testing features, I guess that can be used to test ASP.NET applications.
|
|
|
|
|
exactly..i am planning to test classlibraries..do u have any idea about this...ie, writing test cases for class libraries
|
|
|
|