Create An IE Shortcut And Load The Website?
Aug 3, 2010I have a requirement, where I will have to write a code to create a shortcut for IE on desktop. When the user clicks on this shortcut, It should open up a specific website.
View 4 RepliesI have a requirement, where I will have to write a code to create a shortcut for IE on desktop. When the user clicks on this shortcut, It should open up a specific website.
View 4 RepliesI need to give the shortcut file (like exe) to the client machine. if they click that file i should open my website screen directly.
View 3 RepliesAt begining after releasing a new asp.net app, I just tell users to create a shortcut to point the URL.
For example, one shortcut for http://webserver/order/, another for http://webserver/finance/...
Since more and more apps were released, I want to create a easy way for user to create a shortcut with different icon file.
Doing so user can create a shortcut with the same icon.
Which way is the best to do it, batch file, asp.net installation?
For enterprise intranet web application, is there any way to create a desktop shortcut of web application on user's desktop? I'm looking for functionality similar to Google Gears, but without installing Google Gears. I'm looking to give user's a link on web application that says "Click here to install desktop shortcut", when they click on it, a desktop shortcut is installed with the custom icon for our application. Is there a way to do it using javascript or any other client side technologies? I don't want to run any exe on user's machines. Even though it's intranet, I have to jump through lot of corporate hoops, compliance approvals, etc to run exe on their machine. We are trying to avoid that, due to time constraints. User machines are windows XP with IE6 installed. They may all upgrade within next year's time to Windows 7 with IE8. Intranet web application in question is developed using asp.net 3.5, c#.
View 3 RepliesIs there any way that I can get the list of All the available shortcut key options listed from within IDE itself in Visual Studio 2008/2010? Because every time I used to bing and find on web for that.
View 5 Replieshow to check performance of sql server query with load ,also wants to create load by any tolls like load runner,if any url for download load runner or any other tolls by which we can create load please give me some idea related to it.
View 1 RepliesI am trying to create a progress bar for page load as it takes long to load. I need help to resolve jscript error 'null' is null or not an object on line $get("btn").click();
[Code]....
so this is alittle bit obscure and I'm not sure its the best way of doing what I'm trying to do but here goes.
Basically I have a Presentation Layer Dll in my web site which handles the Model View Presenter classes. The presentation layer also handles login for my website and then calls off to a web service. Currently whenever the presentation layer calls to a model it verifies the users details and if they are invalid it calls to a loginHandler which redirects the user to the login page. However I cannot dynamically load a new istance of the Login Page in my website from within my Presentation layer.
I've tried to use reflection to dynamically load the class but Since the method call is in the presentation assembly it is only looking within that assembly while the page I want to load is in the website.
heres the reflection code that loads the View:
public ILoginView LoadView()
{
string viewName = ConfigurationManager.AppSettings["LoginView"].ToString();
Type type = Type.GetType(viewName, true);
object newInstance = Activator.CreateInstance(type);
return newInstance as ILoginView;
}
how to search within the website assembly? Ideal I don't want to tie this implementation into the website specifically as the presentation layer is also used in a WPF application.
I'm currently creating a web application.
I had Administrator, Teachers, Students roles.
I wanting to create a function where Administrator able to change username of the users that login to my web application or delete that user.
The users are created from asp.net web site administrator tools (security tab)..
I have a asp.net website in the IIS which is available on internet as www.xyz.com now I have been asked to prepare another website which will be accessed via www.xyz.com/abc.
For this, do I need to create a virtual directory under the website folder XYZ in IIS? or is there any other way to achieve this.
I am creating a web site through command line. I am able to create a web site with single host address. But i want multiple host address for a website. this is the command I am using iisweb /create D:Test Test.com /d [URL]
View 6 RepliesI have an internet explorer shortcut on my desktop that I am trying to copy to other machines. I am getting a file does not exist error (source file). I know the source file is there, but I still get the error. Here is the line of code where I am getting the error. I have tried with lnk and without lnk extension.
File.Copy("C:Documents and SettingsadminDesktopEmergencyBreakDow... strPath, True)
I have created one application where user has to submit data. I want to give the shortcut to button.
For Example if user click A1 it should save the data
i am using one linkbutton here i did used accesskey is "S" when did i click on that key on keyboard focus is going there but no action is not working.. ....
i want to give one key like Alt + S the action was performed.... casusvalidation property is not working..
I am working on asp.net (newbie) and I am trying to understand what it means to do "load balancing" for the web site. The website will be used by multiple users and resources (database, web service,..).
View 7 RepliesI really like coding in VB and i have built a few windows forms and messed around a bit so recently i dove into the web forms and website coding aspect of my VB 2010 studio. i watched a the tutorials and i've been all over this forum but i can't get my webpage to load in my browser. the top line of code, that comes with the default ASP.NET website:
<%@
Page
Title="Home Page"
Language="VB"
MasterPageFile="~/Site.Master"
AutoEventWireup="false"
CodeFile="Default.aspx.vb"
Inherits="_Default"
%>
I am using asp.net menu control. In window application we assign shortcut key through '&' sign for accessing menu item but in asp.net this is not working and there is not any property like access key for menu items.
View 5 RepliesWhen you are entering an attribute value, what is the shortcut to jump out of the quoatation marks? It's a lot like hitting enter after you select an enum value for, say, a color or anything like that, that is also in quatations marks. When you hit enter, it fills in the value, jumps outside the quotes and lets you happily continue coding on your way. However, in instances where you are filling out, say, an id value, there is no Intellisense and hitting enter, tab, or whatever will not jump out of the quotes.
View 1 RepliesI wanted to execute some code, when we press Alt+o key.I tried it by button. I took one button and set Access-Key to 'o' . And also added code I need to execute in button click event.
Now when button is visible then I can access code by Alt+o.But when I hide that button then code is not getting executed.
In short I wanted to execute some code by Alt+o key press.
shortcut key is not working in child form .I have created windows form application and creating shortcut for ctrl+o,ctrl+s,ctrl+p ...the shortcut key's are working fine in parent form but i am opening one child form inside parent formthe shortcut keys are not working. Actually i have set showshortcutkey property to true.
View 1 RepliesI am building an ASP.NET 3.5 application in which I have a page which loads another page in a different domain in an iframe. Below is the for Default.aspx page:
<asp:Content ID="Content1" ContentPlaceHolderID="mainContent" runat="server">
<iframe src="isite.aspx" runat="server" width="100%" height="100%" scrolling="auto">
</iframe>
</asp:Content>
Below is the iframe page isite.aspx:
<html xmlns="http://www.w3.org/1999/xhtml">
<head id="Head1" runat="server">
<title>Untitled Page</title> [code]....
Added the following line of code to the Page_Init and Page_Load events
HttpContext.Current.Response.AddHeader("p3p", "CP="IDC DSP COR ADM DEVi TAIi PSA PSD IVAi IVDi CONi HIS OUR IND CNT"");
None of these solutions worked for me. What am I missing?
How to assign shortcut keys for menu item of asp.net menu control e.g. i have one menu which open like this Trouble Ticket -->Trouble Ticket --> Add or Update or Edit so i wnat when i will press CTRL + TA for Add , CTRL + TU for update , CTRL + TE for edit.
View 2 RepliesIm using Ajax calender extender in my asp.net page on clicking asp.net button it show calender popup on selecting date its binding on textbox all are working fine,
what i need is i need to set shortcut for todays day.. on clicking button its show calender on press some keyboard it bind todays date in textbox..
I wanted to disable browser backbutton shortcut(Backspace) to fire browser
back button evbt.
so how can i disable browser back button shortcut Backspace?
There is no way I'm the only one who thinks that I'm missing such a shortcut in Visual Studio.In the markup (aspx) I begin writing the event name "On..." then choose the event I need. What I'm looking for now is functionality for auto-inserting the event name and the delegate method in the codebehined exactly as it's done from the Design view.It's a simple and very helpful functionality that's obviously missing - or I havn't been able to localize it yet.Does any one know if it can be done in VS? Maybe using ReSharper?
View 2 Replies