You can use threads to fetch data for the different grids. Threads were independently and you can use ajax to show busy indicator.
S Kumar
You can use threads to fetch data for the different grids. Threads were independently and you can use ajax to show busy indicator.
S Kumar
i'm not using AJAX...by using javascript how can it is possible..?
S Kumar
IS there anyway to update database by simply clicking a link on email ... it has to be done with out open any web page...
Please post your question little bit clear... and as per my understand you want to fetch only one record from your table, for that, you have to write a query to fetch the particular one record according to your requirement...and bind it to your gridview... Cheers:rose:
S Kumar
What is the error you are getting?
S Kumar
Yes,it is possible... Exactly what do you want?
Hi, CHeck the below code... Response.Clear() Response.Charset = "" 'set the response mime type for excel Response.ContentType = "application/vnd.ms-excel" Response.Charset = "iso-8859-1" 'create a string writer Dim stringWrite As New System.IO.StringWriter 'create an htmltextwriter which uses the stringwriter Dim htmlWrite As New System.Web.UI.HtmlTextWriter(stringWrite) dg.DataSource = ds 'bind the datagrid dg.DataBind() 'tell the datagrid to render itself to our htmltextwriter dg.RenderControl(htmlWrite) Dim strStyle As String = "<style>.text { mso-number-format:\@; } </style>" **Response.Write(strStyle + stringWrite.ToString) Response.AddHeader("Content-Disposition", "attachment")** Response.End() Protected Sub dg_RowDataBound(ByVal sender As Object, ByVal e As System.Web.UI.WebControls.GridViewRowEventArgs) Handles dg.RowDataBound If e.Row.RowType = DataControlRowType.DataRow Then e.Row.Cells(1).Attributes.Add("class", "text") End If End Sub
and just change the code in response.write line according to above... Cheers:rose:
S Kumar
modified on Thursday, July 9, 2009 4:35 AM
Hi, By using Response.Redirect("ur URL") and server.transfer("ur URL")
S Kumar
By using javascript ,you can disable back/history button
modified on Thursday, April 2, 2009 5:51 AM
You Can set the Row hight property also ....
What do you want exactly...
What is the exact problem...?
Hi, Only one seesion value will be created
Hi, You can assign your string value to a label and assign style sheet for that label ,... hope this will help u...
HI, What was error it was showing..?
Hi, You have to give the ip address or server name provided by your service provider in the connection string...,with out this you can not establish the connection to the server
Hi, please post the proper question with proper description..
HI, Use Templatecolumns for placing radio buttons in gridview and after that by using javascript or server side code you can hide/visble the rows ...
Hi, By using javascript also you can set the access for different user's
Hi, you can also use different connections at the runtime ,just you have to declare your connection string at runtime ie; in .vb or .cs file
S Kumar