|
What exactly do you want to happen? A change in web pages? Uploading information to the website?
|
|
|
|
|
Thanx,
That worked perfect for me.
Yibi
|
|
|
|
|
Hi i have created a div element & attach a onkepress event on it as
<div onkeydown="alert('Hi');" width="125px">uyiyuihgfhgfhgyu </div>
onkeydown event fires on IE & opera but not on mozilla. can any one help me in this regards?
|
|
|
|
|
r u sure it is working in IE 7 ?
i doubt
Ashish Sehajpal
|
|
|
|
|
100%. Its working on IE 7.0.5730.13
|
|
|
|
|
I am using fck editor in my forum site. and I am using editor in a page with hidden DIV. After page post back the editor becomes hang,
Can Any one give the solution of this
|
|
|
|
|
what is the version of editor you are using ?
Ashish Sehajpal
|
|
|
|
|
hai,
currently i m using ASP.NET with C#
(.net 2005, 2.0 framework)
By mistakely i deleted the "Microsoft Visual Studio Solution" file.
so i cant open my project.
how to recover the solution file or re-generate solution file?
how to achieve it? - KARAN
|
|
|
|
|
Start VS, open the project then save: it'll prompt you to save the solution thusly recreating the .sln file.
|
|
|
|
|
thanks digital man...
but the thing, in .net 2003, even we delete the solution file, by opening the Project file, the solution file will re-generate automatically.but in .net 2005, there is no Project file..... Y?
|
|
|
|
|
Hello....
I have developed some pages in asp.net2.0 when i install on system then it throw Following error message..
"setup require iis 4.0 or higher and windows nt 4.0 , windows 2000 or higher.this setup cannot be installed on windows 95,98,windows me . please Install Internet Information server and run this setup again.."
This message thrown by system..
So please suggest me. how to deploy in asp.net2.0 and which configuration has been required for install on client System.
|
|
|
|
|
it sounds like you dont have IIS installed properly, or that you need a newer version of IIS
What version are you using?
What os are you installling them on?
|
|
|
|
|
plz inform me why script callBack in Asp.net2.0 not work in mozilla and what to do so that it work
|
|
|
|
|
check this out:
http://weblogs.asp.net/despos/archive/2005/06/15/412852.aspx
http://www.eggheadcafe.com/community/aspnet/6/10014220/firefox-callbacks-dont-w.aspx
|
|
|
|
|
Hi,
I am creating table like structure in which I generate input box.
Code is written in .cs file to generate the inputbox.
I want to get value of inputbox dynamically.
string qtyval = "txt" + dr["idproduct"];
by using the above string generated input box get the name that is assign by qtyval (e.g. txt0001 given to 1st input box)
Now I want value which is enter in that inputbox.
Thanks
modified on Friday, April 18, 2008 8:53 AM
|
|
|
|
|
ok bit confused, dont you just want something like this
string stringname = inputbox1.text
|
|
|
|
|
thanks for information
but in string value of inputbox saved like this
i.e. txt0001.text
Because inputbox name is also generated dynamically while generating input box control.
|
|
|
|
|
((TextBox)container.FindControl("txt0001")).Text
|
|
|
|
|
Hi friends,
Iam facing problem in opening excel file without saving into disk,
Iam exporting gridview data into excel file it working file , when i open file it given missing file error,
Here is the error details , can pls give suggesition why it is happening, i understood that it is because of fully qulified path missing for .CSS file in application.
missing file: c\path\style.css like.
here is code that i was written by me
Private Sub ExportToExcel(ByVal gvInput As GridView)
Dim Counter As Integer
Dim dtExcel As New DataTable
'Dim dr As DataRow
Dim ColNameArray As New ArrayList
Dim ColPosArray As New ArrayList
For Counter = 0 To gvInput.Columns.Count - 1
If gvInput.Columns(Counter).Visible Then
ColNameArray.Add(gvInput.Columns(Counter).HeaderText)
ColPosArray.Add(Counter)
End If
Next
For Counter = 0 To ColNameArray.Count - 1
dtExcel.Columns.Add(ColNameArray(Counter))
Next
Dim gvRow As GridViewRow
Dim dr As DataRow
For Each gvRow In gvInput.Rows
dr = dtExcel.NewRow
For Counter = 0 To ColNameArray.Count - 1
'gvRow.
If gvRow.Cells(ColPosArray(Counter)).HasControls Then
dr(ColNameArray(Counter)) = CType(gvRow.Cells(ColPosArray(Counter)).Controls(0), LinkButton).Text
Else
dr(ColNameArray(Counter)) = gvRow.Cells(ColPosArray(Counter)).Text
End If
Next
dtExcel.Rows.Add(dr)
Next
Dim gvExportExcel As New GridView
gvExportExcel.DataSource = dtExcel
gvExportExcel.DataBind()
Response.Clear()
Response.Buffer = True
Response.ContentType = "application/vnd.ms-excel"
Response.AddHeader("Content-Disposition", "attachment; filename=" & Now() & ".xls")
Response.Charset = ""
Me.EnableViewState = False
Dim oStringWriter As New System.IO.StringWriter()
Dim oHtmlTextWriter As New System.Web.UI.HtmlTextWriter(oStringWriter)
'Me.ClearControls(gv)
gvExportExcel.RenderControl(oHtmlTextWriter)
Response.Write(oStringWriter.ToString())
Response.End()
End Sub
Thanks in Advance,
|
|
|
|
|
hi,
anyone help give some idea about saving incoming mails from mail inbox to locally... i am unable to find example coding for that... i think pop3 will be very helpful... but i am not familiar in connection of pop3 server..
|
|
|
|
|
|
how to make the Set up of windows Services
Please Help me
Thanku
Piyush Vardhan Singh
p_vardhan14@rediffmail.com
http://holyschoolofvaranasi.blogspot.com
http://holytravelsofvaranasi.blogspot.com
|
|
|
|
|
|
it also install services atumatic when setup install
Piyush Vardhan Singh
p_vardhan14@rediffmail.com
http://holyschoolofvaranasi.blogspot.com
http://holytravelsofvaranasi.blogspot.com
|
|
|
|
|
What i understand, When you run the Setup then Service will install automatically ?
Yes, Then it need to start manually.
Parwej Ahamad
|
|
|
|