Hyperlink To New Window, Problems With Internet Explorer

Mar 28, 2008

I have a report in which I have a link like:





Code Snippet

="javascript:void(window.open('<myURL>', '_blank'))"
Now I have two problems:



This link doesn't work in IE7, it does simply nothing... (In IE6 a new window is opened, it works as expected)
I've deployed the report on another reporting server and this time in IE6 a new window is opened but the URL is equals to "javascript:void....." so IE displays an error message ("unable to display page...."). Is there something to configure on the server?Thanks in advance

View 2 Replies


ADVERTISEMENT

Opening Hyperlink Url In New Window

May 3, 2007

Hello,



I have areport with a text box. The text box is hyperlinked to another report url. The report opens in a new page when previewed with RS 2005 but when deployed the report opens in teh same page from where it is referenced.



How can I set a property with the texbox to always open in a new page the hyperlinked report.



Thanks in advance

'Kiran.

View 1 Replies View Related

Internet Explorer Is Block

Dec 17, 2007



Help! On my desktop some security warning came up and my friend clicked "ok" when it said "block". Apparently it was warning her that internet explorer was trying to contact the internet. So...now internet explorer cannot display anything and it is the only browser I have on my computer. I am so frustrated I can't figure out what on earth I can change to fix this. Please...someone help me figure out why I can't contact the internet? My internet connection is fine, and the troubleshooting feature in explorer keeps telling me so.



Thanks!

View 1 Replies View Related

Internet Explorer Page Not Found

Jun 11, 2007

Greetings All,

I installed SQL 2000 with SP4 on a 2003 Server. I added a NT Group to the Server and created 2 users exactly the same in the SQL Server Enterprise Manager.

My issuse is with the other user I created. When I go to a database in the Server Enterprise Manager and right click on tables, and select New Table with my user, the New Table window pops up with no problem. When the other user follows the exact same steps, Internet Explorer opens up and says page not found.

Is this an SQL Issue or maybe an IIS issue?

Thanks in advance.

View 9 Replies View Related

Document Map Not Appears When Using Internet Explorer 7

Sep 4, 2007

Hey,



I'm trying to enter reports using Internet Explorer 7, but it shows me an empty Document map.

When I'm trying to enter the same reports from other computer using Internet Explorer 6, the Document map is filled.

I compared the security options on both machines, and also added the URL of the server to the Trusted sites, but the problem still exists.



The server environment is:
WINDOWS 2003 R2 (SP2)

MSSQL 2000 (SP4) + REPORTING SERVICES



I'm trying to access the report using Windows XP (SP2)



Anyone ever handled this issue?

Any ideas how to solve it?



Thanks in advanced,


Ravid

View 7 Replies View Related

Performance Issue On Internet Explorer 6.0....

Aug 3, 2006

Dear Sir / Madam,

Sub: Performance Issue on Internet Explorer
6.0



System
Properties:
O/S: Windows XP 5.1
SP2
Browser: I.E 6.0 SP 2

My Name is Rajesh. I
have got an Issue on I.E 6.0. I need your assistance. I have Two Multiple
Selected Drop-Down List (DDL) on an HTML Page. One DDL contains around 3000
Rows(values). If I am transffering All values from one DDL to another DLL
through For-Loop by using Javascript it takes around 1 Minute in I.E 6.0 whereas same
Logic works not more than 1 Second in
Mozilla/FireFox.

Could you please guide me to solve the
above mentioned issue in I.E. Here below i have attached the functionality part
also...

strSelSource, strSelTarget are two Drop-Down List
for(var
i=0;i<document.getElementById(strSelSource).options.length;i++)

{
intTempLen =
document.getElementById(strSelTarget).options.length


document.getElementById(strSelTarget).options[intTempLen] = new
Option(document.getElementById(strSelSource).options.text,document.getElementById(strSelSource).options.value)


document.getElementById(strSelSource).options = null;


i--;
}

Above Loop takes around 1 Minute in I.E 6.0 but not more than 1 Second
in Mozilla/FireFox.

I am eagerly waiting for your
response.

Regards

View 3 Replies View Related

Does Internet Explorer Generate Logs.

Jan 23, 2007

Hi,



I have an query.

Does Internet Explorer generate logs files. If so where does the files get generated.



Thanks in advance.

View 1 Replies View Related

Internet Explorer Script Error Message

Oct 10, 2000

When I try to view a database information in the Enterprise Manager by just clicking on the database. I get an internet explorer script error:
" An error has occurred in the script on this page.
Line: 350
Char: 1
Error: 'CON_MENUPAGE' is undefined
Code: 0
URL: file://C:MSSQL7HTMLdatabase.htm ".

I try to replace the database.htm and when it didn't work, tried to install sql7.0 again but it also didn't work.

Any advise.

View 1 Replies View Related

How Do I Hide Internet Explorer Menu And Tool Bar

Aug 21, 2007

How can I hide the Internet Explorer Menu and Tool Bar in SQL Reporting.

View 7 Replies View Related

Internet Explorer Prompts For Password After 300 Seconds

Jan 5, 2008



I am running a report which takes a long time to render. It has 500K rows in it that need to be summed and grouped. After 5 minutes IE prompts for a password. I set the report time out to 15 min just to see if it would make a difference. I even set the IIS timeout to an to 15 min as well.

I know that its bad to run a report this big, but I'm just curious why it prompts for a password. In case a user runs the report. Report uses dates so its possible they could go way back and not realize its 500K rows. I am assuming it is an IE issue with the browser and found a registry edit, but I don't really want to edit registries on my users' computers.

View 1 Replies View Related

Sorting The Packages In The Solution Explorer Window

Jun 14, 2006

Hello all,

A simple one: How can I sort the packages in my project (in the solution explorer) in an alphabetical sort?



Thanks,

Liran

View 1 Replies View Related

Stored Procedure Won't List In 'Object Explorer' Window

Mar 25, 2008

I saved a stored procedure (see below) and I'm not seeing listed within the 'Databases' / 'Remote_Serials' (DB name) / 'Programmability' / 'Stored Procedures' folder within the 'Object Explorer' window.

I'm trying to perform a simple add-info-from-form-into-DB process.

Is it because of the way I put together the procedure? I have a feeling that it is (was going off a video demo, which created it within VB.NET 2008 Express, but I'm not able to connect to the DB from there; it says the file is open, when I completely closed out of SQL Management Studio Express).



Code Snippet
ALTER PROCEDURE dbo.spInsertSerialInfo
@EmployeeID as nchar(10),
@First_Name as nvarchar(50),
@Last_Name as nvarchar(50),
@HAddress as nvarchar(50),
@City as nvarchar(30),
@HState as nvarchar(2),
@Zip as nvarchar(10),
@Phone_Home as nchar(15),
@Phone_Cell as nchar(15),
@Monitor1 as nvarchar(50),
@Monitor2 as nvarchar(50),
@PIX_ASA_Box as nvarchar(50),
@System_Case as nvarchar(50),
@Batt_APC as nvarchar(50),
@current_count as int OUTPUT

AS

INSERT RemSerials (EmployeeID,
First_Name,
Last_Name,
HAddress,
City,
HState,
Zip,
Phone_Home,
Phone_Cell,
Monitor1,
Monitor2,
PIX_ASA_Box,
System_Case,
Batt_APC)

VALUES (@EmployeeID,
@First_Name,
@Last_Name,
@HAddress,
@City,
@HState,
@Zip,
@Phone_Home,
@Phone_Cell,
@Monitor1,
@Monitor2,
@PIX_ASA_Box,
@System_Case,
@Batt_APC)

SELECT @current_count = Count(*) From RemSerials






When trying to access the stored procedure from VB.NET 2008 Express, it says, "Could not find stored procedure 'spInsertSerialInfo'."

I'm listing the code as below.



Code Snippet
cmd.CommandText = "spInsertSerialInfo"
cmd.CommandType = CommandType.StoredProcedure
cmd.Connection = con


cmd.Parameters.Add("@EmployeeID", SqlDbType.NChar, 10).Value = txtEmployeeID.Text





If I change the 'CommandType.StoreProcedure' to 'CommandType.Text' it seems to find it, but then I get another error saying that the @EmployeeID variable has already been delcared and that I need to have a unique variable.

Any help would be greatly apreciated

View 1 Replies View Related

SQL Server 2000 - Open Internet Explorer ByStored Procedure?

Mar 4, 2008

Can I open a Internet Explorer web page by Stored Procedure?

View 14 Replies View Related

SSRS And ASP.Net And Windows Integrated Authentication Failure In Internet Explorer

Jun 1, 2006

I have a very confusing problem that I'm going to attempt to relay concisely:

I have a LAN on which I'm running an Intranet web site built in ASP.Net 2.0 and using SSRS / Sql Server 2005 on the same server.

The name of the box is "warehouse" or "warehouse.mydomain.us." When I ping "warehouse," I get a response from 137.86.166.8, as I should. Likewise, I get a response from 137.86.166.8 when I ping "warehouse.mydomain.us." If I do a "ping -a" on 137.86.166.8, it correctly resolves to "warehouse.mydomain.us." Based on the facts presented in this paragraph, I believe that my DNS is working as expected.

Using IE (6.0.2900.2180.xpsp_sp2_gdr.050301-1519) with "low" security settings, I navigate to http://warehouse.mydomain.us/lex/ (Lex is the name of the app) and it authenticates me to the index page (which calls the SSRS web service to get and display a list of available reports), except that I get the login prompt three times. If I hit F5 (refresh), I get three more login prompts and then I get a 401.1 error. From this point, no matter what I do, I can not see the index page again without closing and restarting IE.

I know that IE only passes credentials to certain sites, so I add my domain (http://warehouse.mydomain.us/) to the Local Intranet list ( Tools->Internet Options->Security->Local Intranet->Advanced) and then I can refresh and see my index page once, but I still get 3 login attempts and then the same thing happens -- I refresh and go through 3 logins and then get a 401.1.

If I now change my address bar to read http://137.86.166.8/lex, I get a single login and it works like a champ. This makes me think that there's a DNS problem, so I open up Mozilla Firefox and wouldn't you know it -- Firefox works like a champ all around -- one single sign-in, it keep credentials between Lex and SSRS, and it appears to use the DNS correctly. However, I can't use Firefox because I can't get any of the SSRS reports to look like they're supposed to in Mozilla-based browsers.

Argh.

I have set my IE securtiy settings to "Low." I have added the primary domain to the Local Intranet list and also to the Trusted Sites list (but you can't do both at the same time). I have even added the internal IP to my "hosts" file.

Does anyone know anything that might be a help to me in getting this figured out?

Other notes of interest:

My machine is an XP machine, but is not on the domain, but I do have a valid domain login that I use and it works in Firefox without problem.

View 6 Replies View Related

How Can I Return A Database From The DataBase Explorer Of VB 2005 Express To The Object Explorer Of SQL Server Management Studio

Mar 3, 2008

Hi all,

I just realized recently that a database "XYZ" in the Object Explorer of my SQL Server Management Studio Express (SSMSE) is put in the Database Explorer of my VB 2005 Express for processing a Stored Procedure in executing the SELECT statements (not by using Input and/or Output Parameters) during the ADO.NET 2.0-VB 2005 Express programming, then the content of the database "XYZ" is not in the SSMSE. How can I return the database "XYZ" from the DataBase Explorer of VB 2005 Express back to the Object Explorer of SQL Server Management Studio Express (SSMSE) safely? Please help and advise.

Thanks in advance,
Scott Chang

View 6 Replies View Related

How To Connect To Sql Server As Other's Window Login Rather Than User's Window Login Thorugh ASP.NET.

Dec 14, 2006

Dear members,

In MSDN, it says that it is recommended to use windows authentication to connect to SQL Server rather than use mixed authentication.

I create user deltasqluser on windows OS, and I specify in my webform ASP.NET script below :

protected System.Web.UI.WebControls.Label Label1;
private string _connString = @"data source=deltasql2000;initial catalog=northwind;integrated security=false;user id=deltasqluser";
/*
comment : I login to my windows as deltakoronx, and I want to every user (including me), connected to sql server through IIS, will be identified as deltasqluser not as user's login (impersonate)
*/
private void Page_Load(object sender, System.EventArgs e)
{
SqlConnection conn = new SqlConnection(_connString);
SqlCommand cmd = new SqlCommand();
cmd.Connection = conn;
cmd.CommandType = CommandType.Text;
cmd.CommandText = "select suser_sname()";

conn.Open();


string userName = cmd.ExecuteScalar() as string;
conn.Close();
conn.Close();
Label1.Text = userName;
}


at web.config, I add :
<identity impersonate="false" userName="deltasqluser" password="" />


at IIS webApplication1's properties, tab "Directory Security", at "Authentication and access control" section, I checked "enable anonymous access" with user : DELTAIUSR_DELTA and checked "Integrated Windows Authentication",


at query analyzer, I login as "sa" and execute script below :
exec sp_grantdbaccess 'deltasqluser','northwind'


when I run the ASP.NET script, error at conn.Open(); with error message :
Login failed for user 'NT AUTHORITYNETWORK SERVICE'.


What should I do so that IIS login to SQL Server as user deltasqluser not as "NT AUTHORITYNETWORK SERVICE" ?

Regards,

Koronx

View 1 Replies View Related

Open Report In New Window: Window.open Method Gives Error

Jun 26, 2006



Hi,

I am using SSRS Microsoft SQL Server Reporting Services Designers
Version 9.00.1399.00. I want to open linked report in new window.

I tried whats mentioned in http://forums.microsoft.com/MSDN/ShowPost.aspx?PostID=240172&SiteID=1 but i get an error on Window.Open method.

How do I solve the problem?

Thanks

View 1 Replies View Related

Object Explorer And Object Explorer Details

Apr 23, 2008

SQL server 2005:
How to view or open tables under object explorer details, when i double click an object under object explorer.

thats how the default settings used to be.

now when i double click any object or try to open query analyzer it is open in the same left side pane on top of Object explorer window.

i did something to my explorer and explorer details panes since then both are separated, they are not getting synchronized.

Thanks for your help.

View 1 Replies View Related

Hyperlink

Jun 7, 2004

I have another question about my Access/SqL Database. one of my tables is going to have 2 or 3 hyperlinks and I was wondering can that be done through sql or would I be better off doing it through access?? (the database consist of sQL tables but the gui for the users is access)

thank you

View 5 Replies View Related

Sql/hyperlink

Jun 14, 2004

Hi everyone I have 3 tables (SQL table) one is the employees table and the other two are link tables for documents the tables have a one to many relationship. everything is running smoothly accept in my in my access form (which is the gui for my users) I can get the field names to look like a hyperlink but I cant insert the address. Since they are sql server tables thats not an option. Can someone help me out pls. I attached a pic of the drop down box to give you a visual of what I'm talking about
is there a TRIGGER OR STORED PROCEDURE I could create for this maybe?? Do know VB so wsa wondering if there is a way I could bo it by using sql instead??

View 5 Replies View Related

Hyperlink

Sep 30, 2005

Dear friends,

How we can insert hyperlink column in a sql table? Is there is any datatype?


graceson

View 2 Replies View Related

Hyperlink

Aug 8, 2007

Hi everyone, I am trying to hyperlink a file to the report. We are running visual and in one of the fields, we have a pdf file linked to it. When I tried making a report that pulls that information so we can click on it and be linked directly to the file, but all it gives me is the path to the file. Is it possible to link it that way??? I notice under properties, there are option for linking but its just for a report, bookmark, and URL. but none for direct files. Please help.

Thanks

abz

View 6 Replies View Related

Need Help With Hyperlink

Oct 10, 2007

In between a sentence can I add hyperlink in reporting services?

Example: Microsoft reporting services is a nice tool but it needs more feature.

How can I add hyperlink to "Reporting Services".

View 1 Replies View Related

Hyperlink Alt

May 31, 2007

Is it possible to put an Alt attribute on a hyperlink?

View 3 Replies View Related

Creating A Hyperlink In SRS

Jan 3, 2008

Hello,

I have created an SRS Report, that contains a list of Account Names.

On my reports, I need to create hyperlinks for the Account Names field. So I tried the following;

- In Layout mode, selected appropriate field (AccountidName)
- Right mouse clicked and selected Properties
- Selected Jump to URL
- From field list, selected AccountId
- Clicked OK

How do I get the URL to work?

Any help would be appreciated.

View 1 Replies View Related

Hyperlink As Popup

Jun 21, 2007

Hi,



I'm trying to find a way to put in a hyperlink to a url so the url linked to comes up in a new popup window and leaves the original report visible. Any help greatly appreciated.

View 1 Replies View Related

Hyperlink Is Not Working

Aug 10, 2007

Dear all,

I would like to ask a question here about the hyperlink in reporting service.

I have programmed a report and it runs perfectly in my PC. Unfortunately when I deployed it to a server, the hyperlinks in that report can not be clicked. Is it because of the version at the server which is 9.00.2047.00? My development version is 9.00.3042.00.

Hope can hear from you soon. Thanks in advance.

View 3 Replies View Related

Code A Hyperlink

Aug 15, 2007



Hi
I have developed a report using microsoft reporting services with certain fields
In my report the user enters name (which is a parameter) and the report is displayed

Inside my report. I have a field studentID which should be a link which when clicked should take me to a new report which is a report in extranet.
Currently I dont have access to that rdl and for certain reasons, I am asked to link to that report by
coding a hyperlink in development

I know that in the text box under action properties I need to give the url , but its not working
Should i specify the student id anywhere .
What and where should I code??

Thanks

View 3 Replies View Related

SQL Data In A Hyperlink

Aug 29, 2006

I was wondering if it would be possible to put report data in a hyperlink. For instance I have a report that pulls up a UPS tracking number and I want to be able to put it in the hyperlink to check the status from the UPS website.

I.E. http://www.upstracking.com/myhsk?<sql-data>jkhaskd

View 7 Replies View Related

Image Hyperlink In Sql Database

Aug 17, 2006

Hi,
I want to store an image hyperlink in a sql database but don't seem to be able to do it..is this do-able?
I can store a hyperlink in text format, no problem, but how do I do the same with an image?
I want to use images in my images folder. I can create an image field and set the required options to display images all that is pretty straight forward but trying to display the image as a hyperlink ( actually it's a mailto: link I want to use) seems not to be an option.
The purpose of this is to allow users to upload an image together with their email address and when other users click on the image it fires up their email app. I do not want to have to use a text link.
Thanks

View 2 Replies View Related

Problem With Hyperlink Display

Mar 15, 2008

I have a web control which produces a drop down list of items that are stored in my database.  The problem is that my SQL call is not properly displaying the hyperlink in .aspx please see my screen shot and code below.  I also have ensured the link table in access is set to hyperlink.  Any thoughts would be helpful as this is driving me nuts.  Thanks in advance.

 1 <asp:SqlDataSource ID="ctrlIdData" runat="server"
2 ProviderName="System.Data.OleDb"
3 ConnectionString="Provider=Microsoft.Jet.OLEDB.4.0; Data Source=e:ectserverxxxxxxDataBaseSecurity.mdb"
4
5 SelectCommand="SELECT [TermID], [Term], [Genre], [Description], [Link]
6 FROM [Terms]" >
7 </asp:SqlDataSource>
8
9 <asp:SqlDataSource ID="ctrlDetailData" runat="server"
10 ProviderName="System.Data.OleDb"
11 ConnectionString="Provider=Microsoft.Jet.OLEDB.4.0; Data Source=e:ectserverxxxxxxDataBaseSecurity.mdb"
12 SelectCommand="SELECT * FROM [Terms] WHERE [TermID]=@TermID" >
13
14 <SelectParameters>
15 <asp:ControlParameter ControlID="ctrlTermID" Name="TermID" />
16 </SelectParameters>
17 </asp:SqlDataSource>
 

View 3 Replies View Related

Hyperlink Datatype In SQL Server?!

Sep 23, 2004

Dear All,

I just want to know ,wheather there is any way to store 'hyperlink' in sql Table as in Ms Access.

or

What is the Procedure to store a Path of a file in SQL table and file should be able to retrieve through the query.


Thhank you


Graceson Mathew

View 1 Replies View Related

SQL Server -Hyperlink Column

Nov 29, 2004

Dear all,

I want to store a hyperlnk in the MS-SQL table as in MS Access.I could not find any datatype for storing the hyperlink in MS-Sql. So Kindly please help me to store hyperlink in the MS-SQL Table.


Graceson

View 9 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved