Latest developer linksBookmark and Share
 
HomeThis WeekTop MonthTop AlltimeSearchRegisterFAQ
  
 
Submit Your Link
Please login to submit your Link
 

How to remove the MY ASP.NET APPLICATION header and the login button and box

Posted: Dec/14/2010   By: nikhil   Points:15   Category: .NET  - ASP.Net    Views:177   Vote Up (0)   Vote Down (0)    

Visual Web Developer 2010 Express

Windows 7


I have chosen ASP.NET Web Site, rather than ASP.NET Empty Web Site when I created my website.  I thought just a little first step would help.


I now find that I am left, in default.aspx, with this extremely annoying bold header -

MY ASP.NET APPLICATION at the top of the page, and a little login function in the  top right corner.

All attempts to enter the area produce a no entry icon.

How do I get rid of / change this header area? Or did I get myself locked into this by choosing Express and/or ASP.NET Web Site rather than an empty one?

I sure do like the structuring of the forums here.  I feel comfortable in this beginner's one for now, thank you.Innocent ASP.NET wise at least.

With thanks, in anticipation of an answer, please.

Best regards


Philip Hunt

Perth, Western Australia

(soon to launch www.howandwhywonderbooks.info)







View Complete Post


Comments:
Be the first to comment this post.
 
Post Comment
Please login to post your comment
More Related Resources

Caputurig Back Button Event & Force The Page To Load From Server:

  
I think in many time developer need this event, which is not provided by any browser and it is not captured by any javascript event.In this Article you see how you capture this event and how you force the browser to load the page from server.

Create Navigation in asp.net web application

  
Create Navigation in asp.net web application. Create Navigation in asp.net

Send mail from my application

  

Hi,

      I have a requirement  where i need to send mail from my application. I used the following code to send mail

        MailMessage msgMail = new MailMessage();
        MailAddress fromAdress = new MailAddress("praveen.k@gmail.com","Mechano");
        msgMail.From = fromAdress;
        msgMail.To.Add("praveen@gmail.com");
        msgMail.Subject = "Issue on Website";
        msgMail.IsBodyHtml = true;       
        //msgMail.BodyFormat = MailFormat.Html;         
        string strBody = "This is test message";        
        msgMail.Body = strBody;
        SmtpClient sClient = new SmtpClient("127.0.0.1", 25);
        //sClient.DeliveryMethod = SmtpDeliveryMethod.PickupDirectoryFromIis;
        sClient.Send(msgMail);


The above code  is neither working in my local system not showing error, but after the application has deployed in remote server(this is shared server) the code is working. What might be the problem?


Thanks

Praveen







Strange problem with a button in a repeater

  

I've got a Imagebutton in a repeater.
Code:

<asp:Repeater ID="repImages"  runat="server">
                    <ItemTemplate>                       
                        <div>
                            <div><asp:ImageButton ID="btnDeleteImage" Width="7" Height="7" runat="server" AlternateText="Verwijder afbeelding"  OnClientClick="return confirm('Weet u zeker dat u deze afbeelding wil verwijderen?');" OnClick="ImageButton_OnClick" ImageUrl="~/images/spacer.gif" /></div>
                            <img id="imgImage" runat="server" src='<%# GetOccasionPath(int.Parse(Eval("ID").ToString()),Eval("BaseFileName").ToString(), TypeImage.thumbnail) %>' />
                        </div>
                    </ItemTemplate>
                </asp:Repeater> 

 

It is displayed well, but if i press the button btnDeleteImage he doesn't even run ImageButton_OnClick , also there is no data included just for testing...
protected void ImageButton_OnClick(object source, EventArgs e)
    {
       
    }

 

But still i get this error:

Invalid postback or callback argument.  Event validation is enabled using <pages enableEventValidation="true"/> in configuration or <%@ Page EnableEventValidation="true" %> in a page.  For security purposes, this feature verifies that arguments to postback or callback events originate from the server control that originally rendered them.  If the data is valid and expected, use the ClientScriptManager.RegisterForEventValidation method in order to register the postback or callback data for validation.

Also enableEventValidation="true" is placed in the page.
What can i do to solve this?


will a 32-bit web application run as WOW64 on a 64-bit server?

  

Hi

I need to know if a web application deployed in a 64-bit server runs as a WOW64 process or a 64-bit process if the web application's pages are compiled as PE 32/x86 ?

I mean I have read a lot about normal console applications or executables with PE 32/x86 run as WOW64 on 64-bit servers. But what about web applications( all i can compile is the pages which are dlls)? The only process I can think of is w3wp.exe for web apps. Please explain. I am confused.

Thanks in advance

Vineeth


In VB.Net - how to login on a website and access another page maintaining the session

  

Have a project where I need to access a RSS feed.   The issue is this RSS feed, you need to be logged in as a user.   They have a simple web form (login + password).   How do I?

1) Post a web form with my login and password

2) Maintaining Session (w/successful login), do an additiional GET to retrieve the RSS feed.

I am doing this in an ASP.Net page so it all happens server side in VB.Net

Brian 


AJAX UPDATE PANEL GET REFRESH EVEN JQUERY BUTTON CLICK RETURN FALSE

  

Hi !

I want to pop up a password text box and ask the user to enter the password again before procedding to retrieve a report.

However, my button keep submitin to the server to get a report.

I use AJAX Update Panel that contain a grid view and a button trigger the grid view to be filled in.

I use jquery to pop up a dialog box and even i return false on the click even, the update panel is still get updated before the user fill in a password.

How do i make sure the click event that pop up a dialog box come first before any other click event ?

        Sys.Application.add_load(function() {
            $("#dialog:ui-dialog").dialog("destroy");

            $("#dialog-modal").dialog({
                height: 140,
                modal: true,
                autoOpen: false,
                buttons: {
                    "OK": function() {
                        var passwordtxtbox = $('#<%=PasswordTxtBox.ClientID%>').val();
                        if (passwordtxtbox != "" && passwordtxtbox.length > 0) {
                            $(this).dialog("close");
                            return true;
                        }

                    }
                }
            });

            $("#<%=Search.ClientID%>").click(function() {
                $("#dialog-modal").dialog("open");
                return false;
            });

 


Jquery or popup dialog login

  

Would like to use a button that pops up with the login control, any ideas?


Can I change the default "ASP.NET Web Application" that appears every time I create a new project?

  

I'm using VS2010 and I'm trying to follow along with these videos: http://www.asp.net/general/videos and the guy in the video is using Visual Web Developer Express and when he creates a new website it's all nice and simple with a bare bones Default webpage and that's cool. Well, me in my Visual Studio 2010 when I create a new project I get this elaborate "My ASP.NET Application" page with an About page and a Login page and CSS and Jquery and it's just too, too much. Now, of course I could just create an empty ASP.NET application, but that goes too far the other way; I have to start from scratch and add the default page myself and try to reproduce exactly what the code in the video looks like and I can't really see the screen that well. Is there any way I could change my default template to what the gentleman in the video uses?


AJAX confirm button

  

hi tutuors

 

i want file upload button like ajax confirm button if user updatephoto button click the entire window hide then show the file upload button please help me 


 
Categories:
.NET
Java
PHP
C/C++/VC++
HTML/XML
SAP
MainFrames
Data Warehousing
Testing
MySQL
SQL Server
Oracle
Javascript/VB Script
Others
Login
 
 
 
 
 Forgot password
 Contact Us   Terms Of use   Share your knowledge