|
mehrdadc48 wrote: how can I print this byte array?
What is the content of this byte array? If it contains the report formatted with HTML tags, you can use Response.BinaryWrite(YourByteArray) . Then use RegisterClientScript() method and emit JS window.print which will print the window.
|
|
|
|
|
Hi
I have created my own browser in Visual Studio (in other words it is an instance of IE), but what I am looking for advice and assistance is how can you create a control which if the user isn't using the browser that it closes down.
This is a browser that will be sitting on an Intranet not the Internet, though!
Thanks
|
|
|
|
|
AndyASPVB wrote: but what I am looking for advice and assistance is how can you create a control which if the user isn't using the browser that it closes down.
Closes the control? If yes you have some understanding problem of how ASP.NET works. If you just have to logout the user upon inactivity, try the following steps
1 - Record users last request time.
2 - Use JS setTimeOut[^] method and call a method which request a ASPX page which returns you the last request time of the current user.
3 - Compare this time, and call the logout page if necessary.
|
|
|
|
|
hi
im doing an asp.net website with a login system for its users. i used a table in sql to maintain a record of user details.when a user logs in , i set a flag to 1 and when they click the logout button , the flag is set back to 0. my problem is if the user closes the browser window or for some reason the system crashes , that user still remains logged in. i have 2 go to the database and set the flag. please suggest some way to solve my prob. thanx
|
|
|
|
|
There are many ways to do this.
1 - Handle the session_end event and reset the DB flag there. This event gets fired when session timed out and will happen even user closes browser (not immediately). Works only on InProc session mode.
2 - Create a new column in table which has the user's last request time. Write a SQL job which runs frequently, checks the last request time and update the flag if necessary.
n
|
|
|
|
|
thanx a lot, will try the 1st option.
|
|
|
|
|
Hi
You excuse my ignorance on this, but I am looking for someone to help me with the Object Tag or Active X to put it another way!
What I am trying to do is to display a word doc in ASP.Net, but I am unable to do and none of the examples I have found on the Internet work. So, can someone kindly assist me by talking me through what to do? Is there some other control that I need to install or plug in I need?
Thank you
|
|
|
|
|
My compny inted to create an online library for showing some books in term of PDF to the users of site,but this showing is only readable and isn't able to save or download.
for instance:www.scridb.com site is a good example of this ,butuser can create PDF file in term of flash whieh can be saved.
www.vuzit.com is for upload book that it's script can be useful ,but my company does'nt want to be these information on the others server.
we need to a script which embed the PDF file to the web site ,but it shouldn,t be able to save like the library of www.google.com
would you please introduce me such a script or useful link in this case?
eve ,this copany is tending to buy this script compeletly.
|
|
|
|
|
AFAIK, you can use crystal report viewer. It supports PDF.
|
|
|
|
|
i want to display company icon in address bar
Er. Jagwinder Singh
|
|
|
|
|
<link rel="shortcut icon" href="/favicon.ico" type="image/ico"></link>
add this line in the head section.
The icon file should be present in the root dir, with name favicon.ico
because the above line has the icon filenme as follows ...
/favicon.ico
Apurv
“Never trust a computer you can’t throw out a window.”
(Steve Wozniak)
“There are only two industries that refer to their customers as ‘users’.”
(Edward Tufte)
|
|
|
|
|
hi everybody
I have a textbox in Datagrid
<asp:templatecolumn headertext="ForeName" xmlns:asp="#unknown">
<itemtemplate>
<asp:textbox id="TxtForeName" runat="server" autopostback="false" text="<%# " forename")="" %>"="">
>
and i want to get text from this textbox
foreach(DataGridItem xItem in DGUpdateStudents.Items)
{
clsobj.StudentId = DGUpdateStudents.DataKeyField[xItem.ItemIndex];
clsobj.ForeName=(String) ((TextBox)xItem.FindControl("TxtForeName")).Text;
}
no error but doesnot return text from textbox like if enter name like John it returns me "" empty strings.
thanks in adv for help.
|
|
|
|
|
Are you binding the grid in page_load and binding without checking IsPostBack ?
Learner520 wrote: (String) ((TextBox)xItem.FindControl("TxtForeName")).Text;
This is bad practice. If your item can't be found, this code will crash. First find the control, do NULL checking and ensure you have a valid object before you access Text property on it.
|
|
|
|
|
hi
i have 3 textboxes when i press button i want to show the errormessage as well as i want to change the color of textbox which is blank. this is possible with single customvalidator if is possible tell me
Regards
D.V.Mallikarjun
|
|
|
|
|
Hi,
I want to develop a stored procedure in which I have to apply different modifications to the Query. Finally after undergoing all the changes to the query I have to execute the final query and get the resultant table.For example:
Create Procedure [dbo].[Test]
@Flg1 bit,
@Flg2 bit,
@Flg3 bit,
AS
BEGIN
SET NOCOUNT ON;
Declare @Query varchar(max)
if(@Flg1<>0)
Begin
Set @Query='Select * from emplayee where empId=1"
End
if(@Flg2<>0)
Begin
Set @Query=@Query+'and empId=2'
End
if(@Flg3<>0)
Begin
Set @Query=@Query+'and empId=3'
End
Exec sp_executesql(@Query);
End
As shown above my Query conditions will change according to the parameters. But here I am not able to get the resultant table. Please reply me if anyone know how to get the resultant Table. Also please tell me whether the above procedure is correct or not.
Thanks in advance.
|
|
|
|
|
Hi,
You have mistakes ...
Nekkantidivya wrote: Set @Query='Select * from emplayee where empId=1"
You have ended up with double quotes.
Nekkantidivya wrote: Declare @Query varchar(max)
Replace 'max' with some number like 200 as your string cant go over this.
Correct it n then check.
modified on Saturday, April 18, 2009 7:24 AM
|
|
|
|
|
Create Procedure [dbo].[Test]
@EmpID Int
as
AS
BEGIN
SET NOCOUNT ON
Select * from emplayee where empId <= @EmpID
END
You better ask these question in the SQL part of this forum. They'll give you more proper answers.
In Word you can only store 2 bytes. That is why I use Writer.
|
|
|
|
|
i placed a print button in the aspx page and i clicked on print button then in print javascript i wrote window.print ..the print page is comming correctly but the page is comming with along the buttons that exits in the page ..how to get only text of the page for the print
|
|
|
|
|
Hi,
I have created on virtual direcory pointing to one test appliation.When i try to acess that application i am getting the following error. if anybody will give reply it would be helpful for me
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.Web.Hosting.HostingEnvironmentException: Failed to access IIS metabase.
with regards,
Kiran
|
|
|
|
|
|
Hi,
I have repaired installed asp.net. now it is working thanks for givining solution.
with regards,
Kiran
|
|
|
|
|
Please forgive the expressin error in this message, I am not good at English
I must get the instance reference of a running MS WORD progress in my asp.net webform, I tried
to use Marshal.GetActiveObject() like below,But it throws a exception like "....UNAVAILABE"
----------------------------------
Object wordApp = Marshal.GetActiveObject( "Word.Application" );
----------------------------------
I have found by google a discuss thread below for a same question like me, but it seemed not give an answer at last.
http://www.developmentnow.com/g/16_2005_1_0_0_47728/Marshal-GetActiveObject-throws-an-exception-in-a-C-webservice-but.htm[^]
Any reply will be great appreciated!
modified on Saturday, April 18, 2009 6:14 AM
|
|
|
|
|
Michael Tang wrote: I must get the instance reference of a running MS WORD progress in my asp.net webform
Your question is not clear. Are you trying to get a process handle of MsWord? If yes, is this process running on server?
|
|
|
|
|
N a v a n e e t h,
Thank you very much for your help and sorry for my not clear question
The MsWord process is running on server and it has openned some doc file, and now I'am try to interact with the MsWord process in my ASP.NET application. So I tried to use GetActiveObject to get a objec reference to the MsWord process. But it just throwed a exception.
And the GetActiveObject()can work well in a C# WINFORM application, while not in an ASP.NET application.
I think the discuss thread I mentioned above in my question may gave the possible reason of this quesion. Here is the abstract of the post:
---------------------------------------------
Hello,
Based on my research, GetActiveObject obtains a running instance of an
object from the running object table (ROT). Each WinStation has it's own
ROT. The interactive desktop is one WinStation and has it's own ROT and
that is where the desktop application will have registered the running
object. The ASP.NET process is running under a seperate account and exists
in a non-interactive WinStation with its own ROT. That is why it fails.
I think the only way for this to work would be to launch the third party
application process from ASP.NET so it exists in the same WinStation. Of
course the application will then not be visible and the user cannot
interact with it.
--------------------------------------------
Thanks a lot 
|
|
|
|
|
sorry, I think I didn't express myself clear again at the end of my last post just now ----
I think the discuss thread I mentioned above in my question may gave the possible reason of this quesion, but it didn't give a way to solve the problem

|
|
|
|