Hi, Thanks for replying. my issue is I am working on web application in which i'm showing a pop up dialog as modal box. but when application is ideal for some time a lockscreen modal dialog appears. Thus I cannot access html page but i can access popup modal box which should not happen. lock screen is also a modalbox. So i want to handle two modalbox. please suggest if any alternative for this. Thnaks in advance.
absprogrammer
Posts
-
is it possible two modalbox in html page -
is it possible two modalbox in html pageHi, I am using following code for modalbox. window.showModalDialog but i want handle two modal boxes at a time. I want know is it possible two modalbox for a HTML page, IE6.0. If yes how to handle them. Thanks in advance.
-
connect oracle without oracle clienthi, Is it possible to connect oracle without 'tnsname.ora' in VB.NET I want to use tnsname.ora entry in connection string Eg. CONNECTSTRING=(DESCRIPTION=" & _ "(ADDRESS=(PROTOCOL=TCP)" & _ "(HOST=mysrv)(PORT=7001))" & _ "(CONNECT_DATA=(SERVICE_NAME=MYDB))); uid=read;pwd=read;"
-
how to access file at server side and print -
open file at server side and print -
how to handlw datagrid keypressevent -
pop up calender ?Can i give yearwise scroll criteria to ? thanks in advance.
-
URL validationhow to validate any url ? eg. http:\\www.sample.net.in or www.gt.com or any genral pattarn od url
-
Cint method return valueThanks for clarifying my doublts.
-
How to access TextBox value of the Parent Page from the child page in server sidewhatever u told is ok. but it is possible by storing textbox's value in session or using 'shared veriable' in Global.asax What do u think?
-
authandication problem for remote excel gnatt charthi, i'm openin MS excel and genrating gnatt chart using code as below. gnatt charts are open on server machine properly. but it does not open excel(only page refresh) on client machine. But when it open at client machine it always ask username,password windows. I want to open it without username,password window Can anybody knows what is solve problem?:confused: Sub excelgnattchart(ByVal stringWrite) Try Dim ExcellProcess() As System.Diagnostics.Process = System.Diagnostics.Process.GetProcessesByName("EXCEL") Dim a As Int32 = ExcellProcess.Length() Dim b As Int32 = 0 If (a > 0) Then While a > b ExcellProcess(b).Kill() b = b + 1 End While End If Catch ex As Exception End Try Dim oExcel As New Excel.ApplicationClass Dim oBook As Excel.WorkbookClass Dim oBooks As Excel.Workbooks Dim fname As String = "c:\chart.xls" Try Dim file As New FileInfo(fname) Dim sWriter As TextWriter = file.CreateText() sWriter.WriteLine(stringWrite.ToString) sWriter.Flush() sWriter.Close() oExcel.Visible = True oBooks = oExcel.Workbooks oBook = oBooks.Open(fname, , True) oExcel.Cells.Select() oExcel.Charts.Add() oExcel.ActiveChart.ChartType = Excel.XlChartType.xlColumnClustered oExcel.ActiveChart.Location(Excel.XlChartLocation.xlLocationAsNewSheet) oExcel.ActiveChart.HasTitle = False oExcel.Charts.Move() oBook.Close(False) System.Runtime.InteropServices.Marshal.ReleaseComObject(oBook) oBook = Nothing System.Runtime.InteropServices.Marshal.ReleaseComObject(oExcel) oExcel = Nothing System.GC.Collect() GC.WaitForPendingFinalizers() file.Delete() Catch ex As Exception Console.Write("Exception :" & ex.Message) End Try
-
How to access TextBox value of the Parent Page from the child page in server sideyou can use global veriable in global.asax i think this will help u
-
Cint method return valuecint(2.5) = 2 but cint(3.5) = 4 i check it for even odd values and i found that for only odd it give next number. why this happen? :confused:
-
excel charts in asp.net applicationhi I need some help on how exactly to display the excel graph control directly on the screen of ASP.NET application. Thanks in advance
-
Page refresh problem.thanx server side onclick event
-
Page refresh problem.here code -------------------- Private Sub ImageButton1_Click(ByVal sender As System.Object, ByVal e As System.Web.UI.ImageClickEventArgs) Handles ImageButton1.Click upload_mail() End If Sub upload_mail() Dim query As String = "select client_email_id from n_client_info where id = " & Request.QueryString("clientkey_id") Dim strScript As String = "window.location =" & "'mailto:financial@ibhsolves.com'" & ";" & "</" + "script>" RegisterClientScriptBlock("anything", strScript) End Sub </x-turndown>
-
Page refresh problem.hi, I am using imagebutton. On clickevent of imagebutton i am opening a popup window. but problem is that when i click imagebutton first time, then i close popup window. but after that if i refresh page that popup is again open. which i dont want. And this is happen with all of my imagebutton. can anybody help me?:confused: thanx in advance.
-
how to set value to htmlinput control(type = file)thanx. i'm using asp.net using lang=vb.net then does any control/component available in asp.net ?
-
how to set value to htmlinput control(type = file)hi, i've browse option using if i write code txtoutputpath.value = "c:\aspfile.txt" then compiler give error but i want set a value to 'txtoutputpath' but i cant do it . how can set value to 'txtoutputpath' thnks in advance
-
validator problemhi, i want to compare date(> or < ) contain in two textboxes. after i enter invalid date. validator gives correct result. but after that if i enter correct date range still it give same message. can anybody help me thanks in advance.