IIS Doesn't Recognize Mp4
Jan 8, 2010I uploaded a video in mp4 format to my site. Now, when I try to download it. I get 404 error but if I change the extension to wmv. I can download it.
View 3 RepliesI uploaded a video in mp4 format to my site. Now, when I try to download it. I get 404 error but if I change the extension to wmv. I can download it.
View 3 RepliesIn my current project (ASP.Net 2.0) I have a lot of web user controls, among them "Office.ascx". Office.ascx is loaded into another controls using this line:
guide_controls_display_Office o = (guide_controls_display_Office)LoadControl("Office.ascx");
The control I am loading it into has Office.ascx registered using this line:
<%@ Register TagName="office" TagPrefix="uc" Src="Office.ascx" %>
But I get this error upon launching the web page: Unable to cast object of type 'ASP.guide_controls_display_office_ascx' to type 'guide_controls_display_Office'. Why do I get this message? I can see that the first type has "ASP." in front of it. Is that normal?
I am getting an error when i call the button id which is inside GridView Item template.
Error: "The TargetControlID of 'mpueResend' is not valid. A control with ID 'btnResend' could not be found."
Code:
AlternatingRowStyle-BackColor="#EDF3F7" HeaderStyle-CssClass="gridbgheading"
Width="100%" HeaderStyle-HorizontalAlign="Center" >
Code:
BackgroundCssClass="modalBackGround" DropShadow="true" CancelControlID="btnCancelR" >
I had a website with a few asp.net controls with id like:
btnSave and tbAmount
I renamed one of my controls and when I tried to use it in the code behind I get the following error.
Error 5 Name 'tbAmount' is not declared.
I was messing around trying to add new controlls rather than rename, but nothing seems to work.
And now, none of my controlls that were added to the page are recognized in the code behind. They all have the error:
Error 5 Name 'tbAmount' is not declared.
Or
Error 3 Name 'hfNoteId' is either not declared or not in the current
scope. E:NoteTenderNoteTenderMembersManageNote.aspx.vb 33 71 NoteTender
Even my button click event handler gives me the following error:
Error 2 Handles clause requires a WithEvents variable defined in the containing type or one of its base types. E:NoteTenderNoteTenderMembersManageNote.aspx.vb 27 91 NoteTender
I have verified that my inherits is using the correct namespace and class name.
I have a UpdatePanel with trigger like this:
[Code]....
The ListView will always return one result.
When I load the page I get: A control with ID 'btn' could not be found for the trigger in UpdatePanel 'upPanel'.
I have created profile objects in my web.config file:
[Code]....
[Code]....
In all tutorials I am finding on the net it says in order to read/write from these properties I just need to use the syntax with C#:
Profile.Surname = "Surname";
But this does not work on my web site code when I'm using C# it underlines and recommends I change to System.Web.Profile.Surname (which I do) but then Intellisense and the compiler do not recognise Surname. What am I doing wrong? I am using Visual Studio 2010 and .Net V4.
I have a GridView and on a row being deleted I trigger the GridView1_RowDeleting sub, but I receive an error "LINQ to Entities does not recognize the method 'System.Web.UI.WebControls.TableCell get_Item(Int32)' method, and this method cannot be translated into a store expression." Code is:
Private Sub GridView1_RowDeleting(sender As Object, e As System.Web.UI.WebControls.GridViewDeleteEventArgs) Handles GridView1.RowDeleting
' The deletion of the individual row is automatically handled by the GridView.
Dim dbDelete As New pbu_housingEntities
' Remove individual from the bed.
Dim remove_bed = From p In dbDelete.Beds _
Where p.occupant = GridView1.Rows(e.RowIndex).Cells(3).Text _
Where p.room = GridView1.Rows(e.RowIndex).Cells(6).Text _
Where p.building = GridView1.Rows(e.RowIndex).Cells(5).Text _
Order By p.id Descending _
Select p
remove_bed.First.occupant = ""
dbDelete.SaveChanges()
' Increase number of open spaces in room.
Dim update_occupancy = From p In dbDelete.Rooms _
Where p.room1 = GridView1.Rows(e.RowIndex).Cells(6).Text
Where p.building = GridView1.Rows(e.RowIndex).Cells(5).Text _
Select p
update_occupancy.First.current_occupancy = update_occupancy.First.current_occupancy - 1
dbDelete.SaveChanges()
End Sub
The specific line erroring out is: remove_bed.First.occupant = ""
on a server, I am trying to deploy a website. Originally, the page styles did not work and the some of the .gif and .jpg images didnt show up. I fixed the css problem by adding a http handler mapping through IIS. I tried the same thing to get the images to work but that didn't fix the problem. If the website was fully deployed im pretty sure the images would work so I dont want to change their paths (same with css). The handler mapping i added for css was for "*.css" of type system.web.staticfilehandler. This is the same type i tried for .jpg and .gif. I don't know specifically the purpose of system.web.staticfilehandler because msdn info is very short.
View 5 RepliesI have created a user control which is inside a folder called Controls and the class is a partial class which inherits from Web.UI.UserControl. Now from my page which is one level up I just try to access the method inside the usercontrol and so trying to cast it as the type of user control. But I get build errors. It just cannot recognize that class. I get Type not defined error. But at times it has recognized the class. Dont know why it does that.
View 1 RepliesI added some javascript to fill in a dropdown and it works wonderfully. However, when I try to access the value in codebehind to submit the data, the value shows as null. (string strValue = ddlName.SelectedValue;).
[Code]....
Im my MVC 3.0 Application, I created a helper like below;
[Code]....
And I used that helper in a linq query as below;
[Code]....
When I fire my app, it gives me the below error. LINQ to Entities does not recognize the method 'System.String GenerateURl(System.String)' method, and this method cannot be translated into a store expression. Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.
Exception Details: System.NotSupportedException: LINQ to Entities does not recognize the method 'System.String GenerateURl(System.String)' method, and this method cannot be translated into a store expression. Source Error:
Line 43: public Blogs GetBlog(string urlstring) {
Line 44:
Line 45: return GetAll().SingleOrDefault(x => BlogUrlGeneration.GenerateURl(x.ArticleTitle).Equals(urlstring));
Line 46: }
Line 47:
İn my blog, the link will be like below; [URL] so I need to set the above urlgenerator class into lambada. How can I do that? What would it take to make that work perfectly
why the system does not recognize DirectoryEntry in the code below? It indicates DirectoryEntry cannot be found.
[Code]....
I receive this error message: LINQ to Entities does not recognize the method 'System.Guid GetUserId()' method, and this method cannot be translated into a store expression. This is my code:
DB.Users user = db.Users.FirstOrDefault(u => u.Id == BOL.GetUserId());
BOL.GetUserId() returns a GUID of the current logged-in user (and this works works).
How can I make this LINQ code line work? Or, what is the shortest alternative? In the mean time I found out that there is a difference between LINQ to SQL and Entities. I use Entities because of the TailspinSpyworks example... but my code is using LINQ to SQL. My current solution is to use a var:
var userId = BOL.GetUserId();
DB.Users user = db.Users.FirstOrDefault(u => u.Id == userId);
Is this a good solution? And, is the execution time of Entities faster than SQL?
I am using Entity Framework to contact my data base. as part of my web code I am using Linq to entities, and I want to determine the number of elements in an anonymous type list. I can't get it to work, I get the exception: "LINQ to Entities does not recognize the method 'Int32 Parse(System.String)' method, and this method cannot be translated into a store expression."
var questItem = from chapters in context.TestChapter
from questions in context.Question
where chapters.ID == int.Parse(Request.QueryString["id"])
where questions.TestChapterID == chapters.ID
select questions.ID;
int numOfSteps = questItem.Count();
how can I get it to work?
Suppose I have logged into an application which is running from IIS. Now I haven't logged out, but closed the browser. And when I'm accessing the application again, it defaults to the login page. How does IIS recognize that it is a new request and redirects the user to the login page?
I have another doubt. Suppose if I'm not closing the browser, which I used when I logged in. I'm opening the new browser to request a page from same application. IIS recognizes that it's a new request to the application and redirects the user to login page. Why does it not use the existing session or cookies which the first browser uses?
We say http is a stateless protocol. Once the page is requested i have logged in.And http protocol connection will be terminated between IIS and browser right? Then iam navigating to other pages in that logged in application. Now iis recognises user has logged in this browser. But when i open a new browser and request that application how does iis recognises it is a new request. Since the http protocol is disconnected, how it works in the first case
I need to recognize the url from my Personalized plugin. Based on that for specialized url I need to fetch the credential from my database.
Is it possible to recognize the url from my plugin.
I am looking for an implementation similar to that of what is seen on banking sites. If a user comes to the site I want them to have to pass some form of registration IE (answer a question or enter in some key). If the user closes the browser and comes back to the site again from that machine they would just be able to provide login credentails to get in.
I am not sure if this is accomplished in ASP.NET by a cookie or what type of implementation.
i have an application that works fine in website state i.e when i create it in website. On converting it to web application it doesnt recognise a class i created e.g
Imports Utilities
End Function
error says
BC30182: Type expected.
yet it works wen its a website .
What I basically need is a Auto Sum script in Visual Basic for Excel. (Dynamically)
Instead, of having to manually insert the auto sum formula() every time I insert a new number in a new column. I want the script to automatically recognize the numbers, and either subtract, add, multiply, or divide. To get the number to get the value of the column.
I tried something like this -
Code:
MyTotal = Application.Sum(Range("A1:A100"))
' returns the total of the values in A1:A100 in the active worksheet.
[image redacted due to potential privacy concerns]
i build a web application in C# and asp.net. my question is if i opennig a few windows, how can i know wich windows is active, i mean wich windows is in the front right now?
View 4 RepliesI am new to mvc and like it a lot! I started with the movie app from stephen.My question: My mvc apps do not recognize image fields, how can see them or add them with a fileupload control?
View 1 RepliesI have a string and I want to know if it has unicode characters inside or not.(if its fully contains ASCII or not)How can I achieve that?
View 4 RepliesOn my Intranet page I want to be able to recognize the user by their Windows Domain login. I am using VB 2010 and ASP. I have several VB books but none of them cover this. If it isn't too much to ask could someone show me the way. I have a strong SYS ADMIN background and am pretty sure this will involve LDAP but that is about as far as I am.
View 2 RepliesI've been building my sample asp.net application using VWD2008 and the development virtual server that comes with that. I got to the point that I want to make sure that the application behaves correctly on the live server, so I went ahead and published it. Everything seems to working great accept for the stylesheets. None of the styles are being applied to the page. I double checked the link to the stylesheet and I double checked the server location. Everything seemed fine and it was identical to the version on my virtual server.
[Code]....
I've seen a few postings about MVC's inability to recognize a web.config in the areas sub folder.
I have a situation where each area is in a separate solution/project. There is history and organizational goals that prevents us from following the current standard. Is there anyway possible mechanism for me to dynamically load the web.config located anywhere within the area?
I've looked at the WebConfigManager but I believe that just opens the config and returns a configuration object. It doesn't really load the web.config in the current context.