Quantcast
Channel: Visual Studio and Visual Web Developer Express
Viewing all 3509 articles
Browse latest View live

RTL all the solution

$
0
0

Hello

I created a new web project using VS Express 2013 for Web

it still clean , I did not change any thing in the CSS files

I want to make it all RTL

what changes should I make in the site.css and bootstrap.css or any other files?

Thank you


Not able to run visual studio express. Showing license expire

$
0
0

Dear All,

First I  installed visual studio ultimate trial version in my machine. After trial period expires, I am trying to install express edition of visual studio 2013 for Web. But I am receiving message as license expires whenever I try to open visual studio express edition and it exit immediately than after.

I also tried with repair option but it did not help. I uninstalled and reinstalled the express edition without any luck.

As I am running internet using proxy server. I am also not able to login with different id.

Please guide how can I use express edition

Thank you.

Create custom project type (*.myproj)

$
0
0

I want to create a custom project type (*.myproj) which should inherit most properties of *.csproj type (minor customization is needed). I couldn't find any tutorials to achieve my requirement. Most of the tutorials are related to creating custom project type as console application. As mentioned in those tutorials it seems we have to define all the properties and functionalities on our own instead of inheriting using the existing project type. So i'm afraid it is not possible.

Appreciate your help.

Thanks,

Krishna

Fill object in Masterpage with value of Clientpage

$
0
0

All,
I tried a lot but somehow it does not display the value at the masterpage's object nor does it throw me an error.

At client page I got this:

<asp:Content ID="CP_Usr_Zn" ContentPlaceHolderID="MP_00_ContentPlaceHolder1"  Runat="Server"><script type="text/javascript">
        var WinNetwork = new ActiveXObject("WScript.Network");
        var control = "<%= Page.Master.FindControl("MP_00_form").FindControl("MP_00_UsrIdContainer").ClientID%>";
        document.getElementById(control).value = WinNetwork.UserName;</script>

and at masterpage:

...<body><form id="MP_00_form" runat="server"><div id="top02_Content"><asp:Label ID="CpxPlnYr" runat="server" Text="2099"  Height="60px"  Width="1570px" BackColor="White" ForeColor="#000066" style="text-align:center" BorderStyle="inSet" BorderWidth="1px" TabIndex="1" Font-Bold="True" Font-Size="16px" /> <br><br>&nbsp;&nbsp;&nbsp;<asp:Label ID="Wlcm" runat="server" Text="Welcome " Width="20" BackColor="White" ForeColor="#000066" style="text-align:center" BorderStyle="None" BorderWidth="1px"></asp:Label> &nbsp;<asp:Label ID="MP_00_UsrIdContainer" runat="server" Text=""  Width="167" BackColor="White" ForeColor="#000066" style="text-align:center" BorderStyle="inSet" BorderWidth="1px" TabIndex="1" /> &nbsp;</div>

...


Any help appriciated,
thx in advance
lucio

 

How to avoid hideen required filed validator to submit form.

$
0
0

Hi friends,

I designed a page in ".aspx" format, on that page I have a radio button list that is used to hide and display some more fields on that page: -

<head><script src="js/jquery-1.11.1.min.js" type="text/javascript"></script>  <script type="text/javascript">
    function ShowMe() {
        //Code to get the selected value from RadioButtonList
        var selectedvalue = $('#<%= rbExperience.ClientID %> input:checked').val();
        //var x = document.getElementById("rbExperience").value;
        if (selectedvalue == "Yes") {
            // Show the div$("#Experience_Detail").show(1000);
        }
        else {
            //Hide the div$("#Experience_Detail").hide(1000);            
        }
    }</script></head><body><form id="form1" runat="server"><div style="width:700px;overflow:hidden;"><div class="divTable" style="width:400px;">Do You Have Professional Experience</div><div class="divTable"><asp:RadioButtonList ID="rbExperience" runat="server" RepeatDirection="Horizontal"  onchange="ShowMe()"><asp:ListItem Enabled="true" Text="Yes" Value="Yes"></asp:ListItem><asp:ListItem Enabled="true" Text="No" Value="No"></asp:ListItem></asp:RadioButtonList></div></div><div style="width:90%;height:280px; overflow:hidden;display:none;" id="Experience_Detail"><div class="divTable">Total Months of Experience</div></div><div class="divTable"><asp:Button ID="btnSubmit" class="myButton" Text="Submit" runat="server" OnClick="btnSubmit_Click" /></div><div class="divTable"><asp:Label ID="lblMessage" Text="hello!" runat="server"></asp:Label></div></form></body></html>

In this page when I click "Radio Button List" On "Yes" it displays "Experience_Detail" div, on "No" it hides "Experience_Detail" div.

The main issue is that when clicking on "No" the Javascrpit is working smartly to hide "Experience_Detail" div, but all the text boxes inside the Experience_Detail div are 'required' so My page is not being submitted.

I want to submit the page even with required property on hidden text boxes.

Please suggest some remedy for this issue.

Thank You in advance.

Build fails on ONE MVC project that is based on INTRANET template

$
0
0

Hi all,

I have a weird one... the build is reporting "1 failed" but with NO OUTPUT in the output and no errors are being reported.

there are two MVC web applications in this solution and there are a number of other assemblies... everything seems to be fine except for these two things I've noticed.

1) no DLL for the failing project is appearing in the \bin\ directory although all the other DLLs appear to be there and none of the dependent assemblies appear to be failing

2) this WAS working and I don't think any code changes have been made since the last successful build to the offending project, however there MIGHT have been some changes to Views and/or helperthings... is there a way to PRECOMPILE(is that even the correct term?!) the "view application" in an MVC project to see if you can find errors there...?

recently I have added SSDT and several otehr "optional extras" to the VS2013... I am going to repair this install now, and if that doesn't do anything I will try uninstalling everything (except SSDT...)

any help appreciated

Project tech: vs2013 update 4, SSDT, EF6.1, MVC 4, TFS lite, Unity, EntLib LoggingBlock


UPDATE: okay I think this is probably a bug "somewhere", I've tried this same project on another box with VS2013 update 3 and it builds fine... not sure what it is about the webproject or the specific setup of the machine with VS2013 and update 4, but its not happy about it and wont build the web app DLL now on that machine, but works fine on (a) the other VS2013 installation, and (b) our build server appears to be fine...

Exporting data to CSV from Gridview which is populated by dropdownlists

$
0
0

I'm struggling to know how to accomplish the following;

I have a gridview which is populated depending on choices from two drop down lists. This aspect works fine and the gridview displays the data and refreshes if a different values are chosen, however I'm struggling to then export whatever is currently displaying in the gridview. Currently an export to csv is simply blank. Now I'm pretty sure this is because the button event is tagged to the page load which means the gridview is empty at that point but I'm unsure how to adapt the following VB.net code to bound it to the current bound data in the gridview when the button event occurs.

Protected Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click
        Response.Clear()
        Response.Buffer = True
        Response.AddHeader("content-disposition","attachment;filename=GridViewExport.csv")
        Response.Charset = ""
        Response.ContentType = "application/text"

        GridView1.AllowPaging = True
        GridView1.DataBind()

        Dim sb As New StringBuilder()
        For k As Integer = 0 To GridView1.Columns.Count - 1
            'add separator
            sb.Append(GridView1.Columns(k).HeaderText + ","c)
        Next
        'append new line
        sb.Append(vbCr & vbLf)
        For i As Integer = 0 To GridView1.Rows.Count - 1
            For k As Integer = 0 To GridView1.Columns.Count - 1
                'add separator
                sb.Append(GridView1.Rows(i).Cells(k).Text + ","c)
            Next
            'append new line
            sb.Append(vbCr & vbLf)
        Next
        Response.Output.Write(sb.ToString())
        Response.Flush()
        Response.End()
    End Sub

Any pointers or guidance would be much appreciated.

Thanks, Paul.

Intellisense

$
0
0

i've just downloaded the visual web developer... but the intellisense  is not working when i'm trying to write a class...can anybody help me out about how can i enable intellisense in Visual Web Developer 2005...[:$]

Thanx[6]

Sumit


Administer Website will not launch

$
0
0
I'm creating a web site using Visual Web Developer Beta 2 and am having a problem with the "Administer Website" option. When I add the login control to my page and click the "Administer Website" link from the smart tags, I receive the following message:

Error invoking 'Administer Website'. Details: Exception has been thrown by the target of an invocation.

Anyone have any ideas?

Hyperlink Text

$
0
0

Im making a website ( first time in visual studios) and its an online library. I have a book info page which shows more information about the book. The problem is that when i search for books how can i make it possible for the book to have a hyperlink to navigate towards the book info page. What i am doing right now is using a drop down list and i have a value assigned to each book(1-n) and have the person choose the number of the book and then click enter which navigates to the books more info page. I just want to be able to click on the title and navigate straight to it my other page( BookInfo.aspx).

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;

namespace BookStoreOnline
{
    
    
    public partial class WebForm2 : System.Web.UI.Page
    {
        private static string test;
        private static string testInfo;
        private static List<Book> resultList;
        private static List<Image> imageList;

protected void Page_Load(object sender, EventArgs e)
        {
            User.Text += (Session["UserName"]+""); 
        }

   protected void Button1_Click(object sender, EventArgs e)
        {
            // if box is filled
            // check criteria selected
            // initiate search based on criteria
            // display results

            if (SearchBox.Text != "")
            {
                resultList = new List<Book>();

   
                
                test = SearchCriteria.SelectedItem.Text;
                testInfo = SearchBox.Text;

                switch (test)
                {
                    case "ISBN":
                        resultList = ((Database)Session["Database"]).SearchISBN(testInfo);
                        break;
                    case "Title":
                        resultList = ((Database)Session["Database"]).SearchTitle(testInfo);
                        break;
                    case "Author":
                        resultList = ((Database)Session["Database"]).SearchAuthor(testInfo);
                        break;
                    case "Semester":
                        resultList = ((Database)Session["Database"]).SearchSemester(testInfo);
                        break;
                    case "Course":
                        resultList = ((Database)Session["Database"]).SearchCourse(testInfo);
                        break;
                    case "Section":
                        resultList = ((Database)Session["Database"]).SearchSection(testInfo);
                        break;
                    case "Professor":
                        resultList = ((Database)Session["Database"]).SearchProfessor(testInfo);
                        break;
                    case "CRN":
                        resultList = ((Database)Session["Database"]).SearchCRN(testInfo);
                        break;
                }

     if (resultList.Count == 0)
                {
             NoResults.Text = "No results were found.";
                }
                else
                {
              Results.Text = "";
                }
           for (int i = 0; i < resultList.Count; i++)
                {
                   int j = i + 1;

          ListItem bookIndex = new ListItem(j.ToString());

  Results.Text += "<pre>" + j + ". Title: " + resultList[i].Title + "<br>" + "Author: " + resultList[i].Author + "<br><br>" + "</pre>";
 MoreInfoIndex.Items.Add(bookIndex); 
    //MoreInfoIndex.Items.Add(bookIndex); is what i am using to navigate to the book info page                    
                }
            }
        }

        protected void MoreInfoButton_Click(object sender, EventArgs e)
        {
            int k = Convert.ToInt32(MoreInfoIndex.SelectedItem.Text) - 1;
            
            Session.Add("Book", resultList[k]);
            //Session["Book"] = resultList[k];
            Response.Redirect("BookInfo.aspx");
        }
    }
}

 

ASP Chart and displaying TOPN (EG 5) y values labels in a series.

$
0
0

First off my ASP/VB.net skills are severely lacking so I am primarily using the GUI tools to generate most of the code for me, although I have managed to dabble a little. However I am struggling to understand how or whether or not it's even possible to represent only the top 5 or 10 or whatever y value labels for a series. For example I have a sqldatasource which pulls 3 series of data to show usage over a period of time as per the below;

My aim to only show the labels for the TOP 5 max y values for a series (combined). For instance I want ti display a value over each of the peaks. Below is the code which generates the above chart from the sqldatasource. I initially thought this could be achieved via setting a specific data point within the series but I have no idea how to set it to show multiple TOP #MAX points and/or with a label.

<asp:Chart ID="Chart4" runat="server" DataSourceID="SqlDataSource1" 
        Width="1200px"><Series><asp:Series ChartType="Area" Name="Combined" XValueMember="Time" 
               YValueMembers="All" Legend="Legend2" ToolTip="(#VALX)-#SERIESNAME(#VALY)"></asp:Series><asp:Series ChartType="Spline" Name="UK usage" XValueMember="Time" 
                YValueMembers="UK" Legend="Legend2" ToolTip="(#VALX)-#SERIESNAME(#VALY)"></asp:Series><asp:Series ChartType="Spline" Name="US usage" XValueMember="Time" 
                YValueMembers="US" Legend="Legend2" ToolTip="(#VALX)-#SERIESNAME(#VALY)"></asp:Series></Series><ChartAreas><asp:ChartArea Name="ChartArea4"><AxisX Interval="2" IsLabelAutoFit="True" 
                        LabelAutoFitStyle="LabelsAngleStep45"><LabelStyle Angle="40" Font="Microsoft Sans Serif, 7pt" /></AxisX><Area3DStyle Enable3D="True" Inclination="10" WallWidth="1" LightStyle="Realistic" /></asp:ChartArea></ChartAreas><Legends><asp:Legend Name="Legend2"></asp:Legend></Legends></asp:Chart>

Any help or pointers would be greatly appreciated.

I am currently using Web Developer 2010 (I know a little outdated!).

TIA, Paul.

It gets a lot of time to start an ASP.NET MVC 5 project from Visual Studio 2015

$
0
0

I'm working with Visual Studio 2012 Premium. My project is an ASP.NET MVC 5 web app and Web Api.

When I start the project from Visual Studio I gets too long to start three minutes or more. It is not a very complex app.

I start having this problem I have started add CSS and JS files.

Any idea about how to fix this problem?

It gets ten minutes from F5 to start the app showing these messages on results window:

 'iisexpress.exe' (Administrado (v4.0.30319)): se cargó 'C:\windows\Microsoft.Net\assembly\GAC_32\mscorlib\v4.0_4.0.0.0__b77a5c561934e089\mscorlib.dll', se omitió la carga de símbolos. Se optimizó el módulo y se habilitó la opción 'Solo mi código'.
    'iisexpress.exe' (Administrado (v4.0.30319)): se cargó 'C:\windows\Microsoft.Net\assembly\GAC_32\System.Web\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Web.dll'
    'iisexpress.exe' (Administrado (v4.0.30319)): se cargó 'C:\windows\Microsoft.Net\assembly\GAC_MSIL\System\v4.0_4.0.0.0__b77a5c561934e089\System.dll', se omitió la carga de símbolos. Se optimizó el módulo y se habilitó la opción 'Solo mi código'.
    'iisexpress.exe' (Administrado (v4.0.30319)): se cargó 'C:\windows\Microsoft.Net\assembly\GAC_MSIL\System.Web.ApplicationServices\v4.0_4.0.0.0__31bf3856ad364e35\System.Web.ApplicationServices.dll'
    'iisexpress.exe' (Administrado (v4.0.30319)): se cargó 'C:\windows\Microsoft.Net\assembly\GAC_MSIL\System.Configuration\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Configuration.dll', se omitió la carga de símbolos. Se optimizó el módulo y se habilitó la opción 'Solo mi código'.
    'iisexpress.exe' (Administrado (v4.0.30319)): se cargó 'C:\windows\Microsoft.Net\assembly\GAC_MSIL\System.Core\v4.0_4.0.0.0__b77a5c561934e089\System.Core.dll', se omitió la carga de símbolos. Se optimizó el módulo y se habilitó la opción 'Solo mi código'.
    'iisexpress.exe' (Administrado (v4.0.30319)): se cargó 'C:\windows\Microsoft.Net\assembly\GAC_MSIL\System.Xml\v4.0_4.0.0.0__b77a5c561934e089\System.Xml.dll', se omitió la carga de símbolos. Se optimizó el módulo y se habilitó la opción 'Solo mi código'.
    El subproceso '<Sin nombre>' (0x18cc) terminó con código 0 (0x0).
    El subproceso '<Sin nombre>' (0x18e8) terminó con código 0 (0x0).
    El subproceso '<Sin nombre>' (0x18ec) terminó con código 0 (0x0).
    El subproceso '<Sin nombre>' (0x18dc) terminó con código 0 (0x0).
    El subproceso '<Sin nombre>' (0x18d8) terminó con código 0 (0x0).
    El subproceso '<Sin nombre>' (0x18f0) terminó con código 0 (0x0).
    El subproceso '<Sin nombre>' (0x18e0) terminó con código 0 (0x0).
    El subproceso '<Sin nombre>' (0x1b80) terminó con código 0 (0x0).
    El subproceso '<Sin nombre>' (0x1b7c) terminó con código 0 (0x0).
    El subproceso '<Sin nombre>' (0x1b8c) terminó con código 0 (0x0).
    El subproceso '<Sin nombre>' (0x17c4) terminó con código 0 (0x0).
    El subproceso '<Sin nombre>' (0x1b84) terminó con código 0 (0x0).
    El subproceso '<Sin nombre>' (0x18e4) terminó con código 0 (0x0).
    El subproceso '<Sin nombre>' (0x1b90) terminó con código 0 (0x0).
    El subproceso '<Sin nombre>' (0x10dc) terminó con código 0 (0x0).
    El subproceso '<Sin nombre>' (0x1a90) terminó con código 0 (0x0).
    El subproceso '<Sin nombre>' (0x128c) terminó con código 0 (0x0).
    El subproceso '<Sin nombre>' (0x978) terminó con código 0 (0x0).
    El subproceso '<Sin nombre>' (0x1920) terminó con código 0 (0x0).
    El subproceso '<Sin nombre>' (0x6b0) terminó con código 0 (0x0).
    El subproceso '<Sin nombre>' (0x1700) terminó con código 0 (0x0).
    El subproceso '<Sin nombre>' (0xc58) terminó con código 0 (0x0).
    El subproceso '<Sin nombre>' (0x1bd8) terminó con código 0 (0x0).
    El subproceso '<Sin nombre>' (0x1668) terminó con código 0 (0x0).
    El subproceso '<Sin nombre>' (0x1b98) terminó con código 0 (0x0).
    El subproceso '<Sin nombre>' (0x12b0) terminó con código 0 (0x0).
    El subproceso '<Sin nombre>' (0xf64) terminó con código 0 (0x0).
    El subproceso '<Sin nombre>' (0x12fc) terminó con código 0 (0x0).
    El subproceso '<Sin nombre>' (0x1aa0) terminó con código 0 (0x0).
    El subproceso '<Sin nombre>' (0x1b1c) terminó con código 0 (0x0).
    El subproceso '<Sin nombre>' (0x1934) terminó con código 0 (0x0).
    El subproceso '<Sin nombre>' (0x14c4) terminó con código 0 (0x0).
    El subproceso '<Sin nombre>' (0x1534) terminó con código 0 (0x0).
    El subproceso '<Sin nombre>' (0x11fc) terminó con código 0 (0x0).
    El subproceso '<Sin nombre>' (0x1324) terminó con código 0 (0x0).
    El subproceso '<Sin nombre>' (0x1bf8) terminó con código 0 (0x0).
    El subproceso '<Sin nombre>' (0x1370) terminó con código 0 (0x0).
    El subproceso '<Sin nombre>' (0x1848) terminó con código 0 (0x0).
    El subproceso '<Sin nombre>' (0x19e4) terminó con código 0 (0x0).
    El subproceso '<Sin nombre>' (0x3dc) terminó con código 0 (0x0).
    El subproceso '<Sin nombre>' (0x1588) terminó con código 0 (0x0).
    'iisexpress.exe' (Administrado (v4.0.30319)): se cargó 'C:\windows\Microsoft.Net\assembly\GAC_MSIL\System.Runtime.Caching\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Runtime.Caching.dll', se omitió la carga de símbolos. Se optimizó el módulo y se habilitó la opción 'Solo mi código'.
    'iisexpress.exe' (Administrado (v4.0.30319)): se cargó 'C:\windows\Microsoft.Net\assembly\GAC_MSIL\mscorlib.resources\v4.0_4.0.0.0_es_b77a5c561934e089\mscorlib.resources.dll'
    'iisexpress.exe' (Administrado (v4.0.30319)): se cargó 'C:\windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.Build.Utilities.v4.0\v4.0_4.0.0.0__b03f5f7f11d50a3a\Microsoft.Build.Utilities.v4.0.dll', se omitió la carga de símbolos. Se optimizó el módulo y se habilitó la opción 'Solo mi código'.
    'iisexpress.exe' (Administrado (v4.0.30319)): se cargó 'C:\windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.JScript\v4.0_10.0.0.0__b03f5f7f11d50a3a\Microsoft.JScript.dll', se omitió la carga de símbolos. Se optimizó el módulo y se habilitó la opción 'Solo mi código'.
    'iisexpress.exe' (Administrado (v4.0.30319)): se cargó 'C:\Users\Uic18.IC\AppData\Local\Temp\Temporary ASP.NET Files\vs\ef02c987\dbd5285d\assembly\dl3\2701212e\44318f32_9468d001\System.Web.WebPages.Razor.dll'
    'iisexpress.exe' (Administrado (v4.0.30319)): se cargó 'C:\Users\Uic18.IC\AppData\Local\Temp\Temporary ASP.NET Files\vs\ef02c987\dbd5285d\assembly\dl3\fe5b5890\e6cf8c32_9468d001\System.Web.WebPages.Deployment.dll'
    'iisexpress.exe' (Administrado (v4.0.30319)): se cargó 'C:\Users\Uic18.IC\AppData\Local\Temp\Temporary ASP.NET Files\vs\ef02c987\dbd5285d\assembly\dl3\c967a939\e6cf8c32_9468d001\System.Web.WebPages.dll'
    'iisexpress.exe' (Administrado (v4.0.30319)): se cargó 'C:\windows\Microsoft.Net\assembly\GAC_MSIL\System.Web.WebPages.Deployment\v4.0_2.0.0.0__31bf3856ad364e35\System.Web.WebPages.Deployment.dll'
    'iisexpress.exe' (Administrado (v4.0.30319)): se cargó 'C:\windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.VisualStudio.Web.PageInspector.Loader\v4.0_1.0.0.0__b03f5f7f11d50a3a\Microsoft.VisualStudio.Web.PageInspector.Loader.dll'
    'iisexpress.exe' (Administrado (v4.0.30319)): se cargó 'C:\windows\Microsoft.Net\assembly\GAC_MSIL\System.Web.WebPages.Deployment\v4.0_1.0.0.0__31bf3856ad364e35\System.Web.WebPages.Deployment.dll'
    'iisexpress.exe' (Administrado (v4.0.30319)): se cargó 'C:\Users\Uic18.IC\AppData\Local\Temp\Temporary ASP.NET Files\vs\ef02c987\dbd5285d\assembly\dl3\2e9ccefa\8ee38d33_9468d001\WebActivatorEx.dll'
    'iisexpress.exe' (Administrado (v4.0.30319)): se cargó 'C:\Users\Uic18.IC\AppData\Local\Temp\Temporary ASP.NET Files\vs\ef02c987\dbd5285d\assembly\dl3\79fc58cb\ccfc5431_9468d001\System.Web.Mvc.dll'
    'iisexpress.exe' (Administrado (v4.0.30319)): se cargó 'C:\Users\Uic18.IC\AppData\Local\Temp\Temporary ASP.NET Files\vs\ef02c987\dbd5285d\assembly\dl3\28993618\620fad31_9468d001\System.Web.Optimization.dll'
    'iisexpress.exe' (Administrado (v4.0.30319)): se cargó 'C:\windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.VisualStudio.Web.PageInspector.Runtime\v4.0_1.3.0.0__b03f5f7f11d50a3a\Microsoft.VisualStudio.Web.PageInspector.Runtime.dll'
    'iisexpress.exe' (Administrado (v4.0.30319)): se cargó 'C:\windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.Web.Infrastructure\v4.0_1.0.0.0__31bf3856ad364e35\Microsoft.Web.Infrastructure.dll'
    'iisexpress.exe' (Administrado (v4.0.30319)): se cargó 'C:\Users\Uic18.IC\AppData\Local\Temp\Temporary ASP.NET Files\vs\ef02c987\dbd5285d\assembly\dl3\2f51f27c\2aaf2630_9468d001\Antlr3.Runtime.dll', símbolos cargados.
    'iisexpress.exe' (Administrado (v4.0.30319)): se cargó 'C:\Users\Uic18.IC\AppData\Local\Temp\Temporary ASP.NET Files\vs\ef02c987\dbd5285d\assembly\dl3\d4d179a6\a0e43634_9468d001\EntityFramework.dll', se omitió la carga de símbolos. Se optimizó el módulo y se habilitó la opción 'Solo mi código'.
    'iisexpress.exe' (Administrado (v4.0.30319)): se cargó 'C:\Users\Uic18.IC\AppData\Local\Temp\Temporary ASP.NET Files\vs\ef02c987\dbd5285d\assembly\dl3\2007e2f6\fe453934_9468d001\EntityFramework.SqlServer.dll', se omitió la carga de símbolos. Se optimizó el módulo y se habilitó la opción 'Solo mi código'.
    'iisexpress.exe' (Administrado (v4.0.30319)): se cargó 'C:\Users\Uic18.IC\AppData\Local\Temp\Temporary ASP.NET Files\vs\ef02c987\dbd5285d\assembly\dl3\ad2ca3aa\114a89c2_dd78d001\Invescontrol.Trazabilidad.China.dll', símbolos cargados.
    'iisexpress.exe' (Administrado (v4.0.30319)): se cargó 'C:\Users\Uic18.IC\AppData\Local\Temp\Temporary ASP.NET Files\vs\ef02c987\dbd5285d\assembly\dl3\1b55a4b2\facf5f30_9468d001\Ionic.Zip.dll'
    'iisexpress.exe' (Administrado (v4.0.30319)): se cargó 'C:\Users\Uic18.IC\AppData\Local\Temp\Temporary ASP.NET Files\vs\ef02c987\dbd5285d\assembly\dl3\b42fca30\060b3631_9468d001\log4net.dll'
    'iisexpress.exe' (Administrado (v4.0.30319)): se cargó 'C:\Users\Uic18.IC\AppData\Local\Temp\Temporary ASP.NET Files\vs\ef02c987\dbd5285d\assembly\dl3\d0b2cd19\0e8cf532_9468d001\Newtonsoft.Json.dll'
    'iisexpress.exe' (Administrado (v4.0.30319)): se cargó 'C:\Users\Uic18.IC\AppData\Local\Temp\Temporary ASP.NET Files\vs\ef02c987\dbd5285d\assembly\dl3\9bc872ef\8a7a4633_9468d001\Ninject.dll'
    'iisexpress.exe' (Administrado (v4.0.30319)): se cargó 'C:\Users\Uic18.IC\AppData\Local\Temp\Temporary ASP.NET Files\vs\ef02c987\dbd5285d\assembly\dl3\1ac4aa3c\84b47333_9468d001\Ninject.Web.Common.dll'
    'iisexpress.exe' (Administrado (v4.0.30319)): se cargó 'C:\Users\Uic18.IC\AppData\Local\Temp\Temporary ASP.NET Files\vs\ef02c987\dbd5285d\assembly\dl3\b173aabf\94a96033_9468d001\Ninject.Web.Mvc.dll'
    'iisexpress.exe' (Administrado (v4.0.30319)): se cargó 'C:\Users\Uic18.IC\AppData\Local\Temp\Temporary ASP.NET Files\vs\ef02c987\dbd5285d\assembly\dl3\7ec47f06\eef2ea31_9468d001\System.Net.Http.Formatting.dll'
    'iisexpress.exe' (Administrado (v4.0.30319)): se cargó 'C:\Users\Uic18.IC\AppData\Local\Temp\Temporary ASP.NET Files\vs\ef02c987\dbd5285d\assembly\dl3\252c81d8\886e8a32_9468d001\System.Web.Helpers.dll'
    'iisexpress.exe' (Administrado (v4.0.30319)): se cargó 'C:\Users\Uic18.IC\AppData\Local\Temp\Temporary ASP.NET Files\vs\ef02c987\dbd5285d\assembly\dl3\557ec146\7ad62832_9468d001\System.Web.Http.dll'
    'iisexpress.exe' (Administrado (v4.0.30319)): se cargó 'C:\Users\Uic18.IC\AppData\Local\Temp\Temporary ASP.NET Files\vs\ef02c987\dbd5285d\assembly\dl3\c940b70c\b84d5132_9468d001\System.Web.Http.WebHost.dll'
    'iisexpress.exe' (Administrado (v4.0.30319)): se cargó 'C:\Users\Uic18.IC\AppData\Local\Temp\Temporary ASP.NET Files\vs\ef02c987\dbd5285d\assembly\dl3\33f8290b\92ee7331_9468d001\System.Web.Razor.dll'
    'iisexpress.exe' (Administrado (v4.0.30319)): se cargó 'C:\Users\Uic18.IC\AppData\Local\Temp\Temporary ASP.NET Files\vs\ef02c987\dbd5285d\assembly\dl3\841976e7\61b55cc5_dd78d001\TRZF.Common.dll', símbolos cargados.
    'iisexpress.exe' (Administrado (v4.0.30319)): se cargó 'C:\Users\Uic18.IC\AppData\Local\Temp\Temporary ASP.NET Files\vs\ef02c987\dbd5285d\assembly\dl3\51580d11\b1c063c2_dd78d001\TRZF.Data.dll', símbolos cargados.
    'iisexpress.exe' (Administrado (v4.0.30319)): se cargó 'C:\Users\Uic18.IC\AppData\Local\Temp\Temporary ASP.NET Files\vs\ef02c987\dbd5285d\assembly\dl3\5104e612\d14e71c5_dd78d001\TRZF.Data.SqlServer.dll', símbolos cargados.
    'iisexpress.exe' (Administrado (v4.0.30319)): se cargó 'C:\Users\Uic18.IC\AppData\Local\Temp\Temporary ASP.NET Files\vs\ef02c987\dbd5285d\assembly\dl3\a3d24447\48f07f89_e078d001\TRZF.Web.API.dll', símbolos cargados.
    'iisexpress.exe' (Administrado (v4.0.30319)): se cargó 'C:\Users\Uic18.IC\AppData\Local\Temp\Temporary ASP.NET Files\vs\ef02c987\dbd5285d\assembly\dl3\df1156f2\e183d4c2_dd78d001\TRZF.Web.API.Models.dll', símbolos cargados.
    'iisexpress.exe' (Administrado (v4.0.30319)): se cargó 'C:\Users\Uic18.IC\AppData\Local\Temp\Temporary ASP.NET Files\vs\ef02c987\dbd5285d\assembly\dl3\3c756b2f\a11567c5_dd78d001\TRZF.Web.Common.dll', símbolos cargados.
    'iisexpress.exe' (Administrado (v4.0.30319)): se cargó 'C:\Users\Uic18.IC\AppData\Local\Temp\Temporary ASP.NET Files\vs\ef02c987\dbd5285d\assembly\dl3\5409e797\cc5ab633_9468d001\WebGrease.dll'
    'iisexpress.exe' (Administrado (v4.0.30319)): se cargó 'C:\windows\Microsoft.Net\assembly\GAC_32\System.Data\v4.0_4.0.0.0__b77a5c561934e089\System.Data.dll', se omitió la carga de símbolos. Se optimizó el módulo y se habilitó la opción 'Solo mi código'.
    'iisexpress.exe' (Administrado (v4.0.30319)): se cargó 'C:\windows\Microsoft.Net\assembly\GAC_MSIL\System.Net.Http\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Net.Http.dll', se omitió la carga de símbolos. Se optimizó el módulo y se habilitó la opción 'Solo mi código'.
    'iisexpress.exe' (Administrado (v4.0.30319)): se cargó 'C:\windows\Microsoft.Net\assembly\GAC_MSIL\System.Runtime.Serialization\v4.0_4.0.0.0__b77a5c561934e089\System.Runtime.Serialization.dll', se omitió la carga de símbolos. Se optimizó el módulo y se habilitó la opción 'Solo mi código'.
    'iisexpress.exe' (Administrado (v4.0.30319)): se cargó 'C:\windows\Microsoft.Net\assembly\GAC_MSIL\SMDiagnostics\v4.0_4.0.0.0__b77a5c561934e089\SMDiagnostics.dll', se omitió la carga de símbolos. Se optimizó el módulo y se habilitó la opción 'Solo mi código'.
    'iisexpress.exe' (Administrado (v4.0.30319)): se cargó 'C:\windows\Microsoft.Net\assembly\GAC_MSIL\System.ComponentModel.DataAnnotations\v4.0_4.0.0.0__31bf3856ad364e35\System.ComponentModel.DataAnnotations.dll', se omitió la carga de símbolos. Se optimizó el módulo y se habilitó la opción 'Solo mi código'.
    'iisexpress.exe' (Administrado (v4.0.30319)): se cargó 'Anonymously Hosted DynamicMethods Assembly'
    'iisexpress.exe' (Administrado (v4.0.30319)): se cargó 'C:\Users\Uic18.IC\AppData\Local\Temp\Temporary ASP.NET Files\vs\ef02c987\dbd5285d\App_global.asax.2lftm7dd.dll', símbolos cargados.
    'iisexpress.exe' (Administrado (v4.0.30319)): se cargó 'C:\windows\Microsoft.Net\assembly\GAC_MSIL\System.ServiceModel.Activation\v4.0_4.0.0.0__31bf3856ad364e35\System.ServiceModel.Activation.dll'
    'iisexpress.exe' (Administrado (v4.0.30319)): se cargó 'C:\windows\Microsoft.Net\assembly\GAC_MSIL\System.Web.Extensions\v4.0_4.0.0.0__31bf3856ad364e35\System.Web.Extensions.dll'
    'iisexpress.exe' (Administrado (v4.0.30319)): se cargó 'C:\windows\Microsoft.Net\assembly\GAC_MSIL\System.Drawing\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Drawing.dll', se omitió la carga de símbolos. Se optimizó el módulo y se habilitó la opción 'Solo mi código'.
    'iisexpress.exe' (Administrado (v4.0.30319)): se cargó 'C:\windows\Microsoft.Net\assembly\GAC_MSIL\System.Web.resources\v4.0_4.0.0.0_es_b03f5f7f11d50a3a\System.Web.resources.dll'
    'iisexpress.exe' (Administrado (v4.0.30319)): se cargó 'C:\windows\Microsoft.Net\assembly\GAC_MSIL\System.ServiceModel.Internals\v4.0_4.0.0.0__31bf3856ad364e35\System.ServiceModel.Internals.dll', se omitió la carga de símbolos. Se optimizó el módulo y se habilitó la opción 'Solo mi código'.
    'iisexpress.exe' (Administrado (v4.0.30319)): se cargó 'C:\windows\Microsoft.Net\assembly\GAC_MSIL\System.Xml.Linq\v4.0_4.0.0.0__b77a5c561934e089\System.Xml.Linq.dll', se omitió la carga de símbolos. Se optimizó el módulo y se habilitó la opción 'Solo mi código'.
    'iisexpress.exe' (Administrado (v4.0.30319)): se cargó 'C:\windows\Microsoft.Net\assembly\GAC_MSIL\System.ServiceModel\v4.0_4.0.0.0__b77a5c561934e089\System.ServiceModel.dll'
    'iisexpress.exe' (Administrado (v4.0.30319)): se cargó 'C:\windows\Microsoft.Net\assembly\GAC_MSIL\System.Web.Mobile\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Web.Mobile.dll'
    'iisexpress.exe' (Administrado (v4.0.30319)): se cargó 'C:\windows\Microsoft.Net\assembly\GAC_MSIL\System.Web.RegularExpressions\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Web.RegularExpressions.dll', se omitió la carga de símbolos. Se optimizó el módulo y se habilitó la opción 'Solo mi código'.
    'iexplore.exe' (Script): 'Código de script (Windows Internet Explorer)' cargado.
    El subproceso '<Sin nombre>' (0x14f4) terminó con código 0 (0x0).

I have installed Productivity Power Tools. But, it was installed at the first time and I'm getting this problem after I have started adding css and js to my views

  

More modular approach to ASP.NET web development?

$
0
0

I have developed an internal web site which has taken on a life of it's own. It used to be just a handful of semi-related pages but has grown to encompass over a dozen separate pages (and growing, rapidly) doing (mostly) unrelated functions.

Right now it's a big monolithic mess, all of the pages stored within a single project in a single solution (Because 1: In the beginning it was supposed to be a single purpose site and, 2: I was just getting started with visual studio development and didn't know any better at the time)

I would like to move to a more modular model, with a master section containing the launch page, master pages, code common across all pages (e.g. authentication) and have individual pages or collections of related pages separated in to separate modules that can be updated individually.

I'm sure that this is possible, but I have no idea as to how to do it. Any suggestions?

Thanks.

VS 2013 Crash When open Nuget Package Manager

$
0
0

 Hi 

Have a Nice day !

I had problem in VS 2013 ,when I try to open nuget package manager and try to find packages through the internet it get crash after sometime ,I try to reinstall this package but still it may occurred please help me someone know the reason. :)

Thanks

 

cant install EFPowerTools.vsix


Problem opening EModelViewer

$
0
0

I'm using Visual Web Developer 2010 Express with SQL Server 2008 Express, VB.

The routine below should be opening EModelViewer.exe and does but with one problem.

Imports System.IO
Imports System.Data
Imports System.Drawing
Imports System.Data.SqlClient
Imports System.Configuration
Imports System.Text
Imports System.Collections.Generic
Imports System.Linq
Imports System.Web
Imports System.Web.UI
Imports System.Web.UI.Control
Imports System.Diagnostics
Imports System.Runtime.InteropServices

Partial Class Test
    Inherits System.Web.UI.Page

    Protected Sub Button1_Click(sender As Object, e As System.EventArgs) Handles Button1.Click

        Dim Pdwg As String = "C:\bruce\allegro\circuitworks library\SOIC14.sldprt"
        Response.Clear()
        Response.ContentType = "emodelviewer.exe"
        Response.AddHeader("Content-Disposition", Pdwg)
        Response.Equals("C:\Program Files\Common Files\eDrawings2010\EModelViewer.exe")
        Response.End()

    End Sub

End Class

It seems like this tries to open the actual program (Test.aspx) rather than the intended drawing (SOIC14.sldprt).  Does anybody know how to transmit the drawing name rather then the routine name with the response command?

Thanks!

can't test website

$
0
0

i downloaded visual studio and made a website using an unedited template and i wanted to know what the template looked like so i pressed the green arrow that says google chrome next to it and it worked! but i tried it again and it hasn't worked

Cannot debugging project in Visual Studio 2012

$
0
0

I'm using Visual STudio 2012. I want to debugging my project. Either console application or web application, it can't start to debug.
In output window showed error like this : The program '[11376] WebDev.WebServer40.EXE: Program Trace' has exited with code 0 (0x0).

I already tried to restart VS. Or create new project and tried to debug it. Even re-installed my VS. But nothing worked.
I still can't debug my project. :(

I'll appreciate your help :)

Visual Studio 2012: Is there a way to style the way web.sitemap appears in VS when I am editing the file?

$
0
0

I frequently edit my web.sitemap file manually with Visual Studio. My file is rather large. While I can use whitespace to make it easier to find my place visually, I was hoping it might be possible to create a stylesheet so that the title appears in a different forecolor (and maybe back color?), Roles in a second color, and URL in a third.

Is something like this even supported in Visual Studio?

To clarify, I am trying to style my view of the file when editing it with Visual Studio -- this has nothing to do with the way how the sitemap appears in my webpage treeviews.

Thank you

Data Details View- SQL Server Connection String

$
0
0

 I would appreciate if  anybody help on this.   I have created a details view and connected to SQL server Table views.  When I enter data and click on "New", I get error message following error:

_________________________________________

Server Error in '/Sec8QC' Application.


Inserting is not supported by data source 'SqlDataSource1' unless InsertCommand is specified.

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: Inserting is not supported by data source 'SqlDataSource1' unless InsertCommand is specified.

Source Error: 

An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below.


Stack Trace: 

[NotSupportedException: Inserting is not supported by data source 'SqlDataSource1' unless InsertCommand is specified.]
   System.Web.UI.WebControls.SqlDataSourceView.ExecuteInsert(IDictionary values) +3325679
   System.Web.UI.DataSourceView.Insert(IDictionary values, DataSourceViewOperationCallback callback) +3434125
   System.Web.UI.WebControls.DetailsView.HandleEvent(EventArgs e, Boolean causesValidation, String validationGroup) +678
   System.Web.UI.WebControls.DetailsViewRow.OnBubbleEvent(Object source, EventArgs e) +148
   System.Web.UI.Control.RaiseBubbleEvent(Object source, EventArgs args) +84
   System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +3804

 


Version Information: Microsoft .NET Framework Version:4.0.30319; ASP.NET Version:4.0.30319.34

___________________________________________

MY Codes are below.......................................

<%@ Page Language="C#" AutoEventWireup="true" CodeFile="QC.aspx.cs" Inherits="QC" %>

 

<!DOCTYPE html>

 

<html xmlns="http://www.w3.org/1999/xhtml">

<head runat="server">

    <title></title>

    <style type="text/css">

        #form1 {

            height: 78px;

            width: 218px;

            margin-left: 0px;

            margin-bottom: 0px;

        }

    </style>

</head>

<body>

    <form id="form1" runat="server">

        <asp:DetailsView ID="DetailsView1" runat="server" AutoGenerateRows="False" BackColor="White" BorderColor="#3366CC" BorderStyle="None" BorderWidth="1px" CellPadding="4" DataKeyNames="TenantID" DataSourceID="SqlDataSource1" Height="87px" Width="145px" style="margin-top: 2px">

            <EditRowStyle BackColor="#009999" Font-Bold="True" ForeColor="#CCFF99" />

            <Fields>

                <asp:BoundField DataField="Name" HeaderText="Name" SortExpression="Name" />

                <asp:BoundField DataField="DistircManager" HeaderText="DistircManager" SortExpression="DistircManager" />

                <asp:BoundField DataField="AuditorName" HeaderText="AuditorName" SortExpression="AuditorName" />

                <asp:BoundField DataField="AssistantDirector" HeaderText="AssistantDirector" SortExpression="AssistantDirector" />

                <asp:BoundField DataField="MoveInDate" HeaderText="MoveInDate" SortExpression="MoveInDate" />

                <asp:BoundField DataField="TransferDate" HeaderText="TransferDate" SortExpression="TransferDate" />

                <asp:CheckBoxField DataField="DOB/SSN" HeaderText="DOB/SSN" SortExpression="DOB/SSN" />

                <asp:CheckBoxField DataField="FamilyMembersListed" HeaderText="FamilyMembersListed" SortExpression="FamilyMembersListed" />

                <asp:CommandField ButtonType="Button" ShowInsertButton="True" />

            </Fields>

            <FooterStyle BackColor="#99CCCC" ForeColor="#003399" />

            <HeaderStyle BackColor="#003399" Font-Bold="True" ForeColor="#CCCCFF" />

            <PagerStyle BackColor="#99CCCC" ForeColor="#003399" HorizontalAlign="Left" />

            <RowStyle BackColor="White" ForeColor="#003399" />

        </asp:DetailsView>

        <asp:SqlDataSource ID="SqlDataSource1" runat="server" ConnectionString="<%$ ConnectionStrings:PtsConnectionString %>"

            SelectCommand="SELECT * FROM [VLQC]"></asp:SqlDataSource>

    </form>

</body>

</html>

Viewing all 3509 articles
Browse latest View live




Latest Images