Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #3K
~8K People Reached

34 Posted Topics

Member Avatar for jtodd
Member Avatar for arkulin

Are u binding the Datalist in page load ? If yes then put your binding code in Not IsPostback condition. Or it can be EnableViewState problem.

Member Avatar for sebastian3
0
222
Member Avatar for varoluscu_prens

I guess you r just showing the data in grid.Is it not showing when refreshed.Can u elaborate the problem.

Member Avatar for sebastian3
0
213
Member Avatar for mancode1007

Line No 4 is causing error i guess. Dim gender As Integer = Convert.ToInt32(e.Row.Cells(5).Text) Thats because e.Row.Cells(5).Text will have null value as it is not binded. You can do it in two ways : 1.Insert direct inline code in aspx upon the condition like this : <ItemTemplate> <%# (Convert.ToInt32(Eval("gender"))=="1"?"Male": "Female") …

Member Avatar for Ramesh S
0
211
Member Avatar for sebastian3

Hi all, I have a issue in writing excel worksheet through OLEDB/Excel 8.0 provider where an apostrophe is coming in every cell before the value. When the excel worksheet is created through provider,cells are not getting as Text format and remaining as General even though I have denoted it as …

Member Avatar for sebastian3
0
139
Member Avatar for jazz1011
Member Avatar for sebastian3

Can anybody tell me why the Application_Start in global.asax in not firing under any conditions.Can any1 still tell me the conditions to fire it

Member Avatar for xyzsoft
0
710
Member Avatar for sebastian3

Hi all, I have problem connecting to remote MS Access DB using asp.net. The MS Access DB i have URL , local path and write access. I have used the following connectionstring : [CODE] //con.ConnectionString = "Provider=MS Remote; Remote Server=http://X.X.X.X; Remote Provider=Microsoft.Jet.OLEDB.4.0; Data Source=c:\\yy\\XXX.mdb;Persist Security Info=False"; [/CODE] Error is : …

Member Avatar for kvprajapati
0
101
Member Avatar for born star

Actually dr.read() function moves the pointer of the datareader to the next record and also returns true if it exists.Initially, the reader does not point to anything. It is only after you call dr.read() that is points to the first record and then you can read the data. Without calling …

Member Avatar for sebastian3
0
81
Member Avatar for inAweofOOP

I guess u have tested the deletion case in debug mode.For that the file remained open for deletion first time and did't close, so the file access error. Do run the code with a fresh file after freshly starting the application. Frankly speaking, i too had similar file denied problems …

Member Avatar for rohand
0
1K
Member Avatar for sebastian3

Hi buddies, Can anybody help in RBS WorldPay Payment Gateway Integration in Asp.NET. Any Code/DLL/component can be great help. I really can't make up their Documentation. Thanks in advance.

0
59
Member Avatar for thirumca

You have to download a free plugin for that. Follow this link : [URL="http://www.fckeditor.net/forums/viewtopic.php?f=5&t=10262"]http://www.fckeditor.net/forums/viewtopic.php?f=5&t=10262[/URL]

Member Avatar for thirumca
0
102
Member Avatar for shireesha1

Follow this example : [ICODE] <asp:GridView ID="gvStates" AutoGenerateColumns="false" runat="server" OnRowCreated="gvStates_RowCreated"> <Columns> <asp:BoundField HeaderText="State" DataField="Name" /> <asp:TemplateField HeaderText="Cities"> <ItemTemplate> <asp:DropDownList ID="ddlCities" AutoPostBack="true" runat="server" > </asp:DropDownList> </ItemTemplate> </asp:TemplateField> </Columns> </asp:GridView> protected void Page_Load(object sender, EventArgs e) { if (!IsPostBack) { // Create states array and bind it to Grid ArrayList states = …

Member Avatar for shireesha1
0
332
Member Avatar for kals4u

There are lots of players in the web. You can try this [URL="http://www.flvplayer4free.com/"]http://www.flvplayer4free.com/[/URL] Please clarify the problem in playing flv files

Member Avatar for sebastian3
0
60
Member Avatar for erictheking1

Do it in Javascript. Function is given below : [ICODE] function checkEmail (emailStr) { var emailPat=/^(.+)@(.+)$/ var specialChars="\\(\\)<>@,;:\\\\\\\"\\.\\[\\]" var validChars="\[^\\s" + specialChars + "\]" var quotedUser="(\"[^\"]*\")" var ipDomainPat=/^\[(\d{1,3})\.(\d{1,3})\.(\d{1,3})\.(\d{1,3})\]$/ var atom=validChars + '+' var word="(" + atom + "|" + quotedUser + ")" var userPat=new RegExp("^" + word + "(\\." + …

Member Avatar for sebastian3
0
161
Member Avatar for sebastian3

Does anybody know to import Gmail contacts. I have downloaded a useful tutorial at : [EMAIL="http://johnvey.com/features/gmailapi/"]http://johnvey.com/features/gmailapi/[/EMAIL] which is the only one available in search engines. But it is not working !!

Member Avatar for sebastian3
0
293
Member Avatar for sebastian3

Hi everyone, hope ur all. After a long time i m posting here. M in a problem abt. dataview.rowfilter. Matter is i have to create datareader from dataset, thats ok. The dataset is being filled up,no probs. After that i m applying rowfilter which is not working : [ICODE] da.Fill(s); …

0
75
Member Avatar for sebastian3

dear all, can u help me in image uploading withing updatepanel in ajax. i think its not supported. can anyone give any alternate option. thanx

0
52
Member Avatar for sebastian3

hi everybody, i need to ask here abt a how can i add both numeric paging and prev/next in gridview.

0
71
Member Avatar for sebastian3

Hi all, i m using gridview which has checkboxes(select row) and need to hold the values during pagination. I think it is not automatically supported in ASP.NET n so has to be done manually.Can anyone supply me the code or the logic. thnx all.

Member Avatar for Kusno
0
84
Member Avatar for sebastian3
Member Avatar for sebastian3
0
110
Member Avatar for rk1
Member Avatar for nandhinijp

Firstly upload the video file to a folder in the server by : [CODE=asp]if (flUpload.PostedFile.ContentLength > 0) { String strPath = Server.MapPath("../") + "UploadedFiles/Folder"; flUpload.PostedFile.SaveAs(strPath + "/" + this.flUploadBrief.FileName.ToString()); }[/CODE] where [ICODE]<asp:FileUpload runat="server" ID="flUploadBrief" />[/ICODE] is the FileUpload Control. And save the name of the File in database. Then u …

Member Avatar for nandhinijp
0
435
Member Avatar for Techbee

For storing Image try this : [ICODE] //UPLOAD FILE if (this.flBSmallImage.PostedFile.ContentLength > 0) { if (strOldBSmallImage.Length > 0) { System.IO.File.Delete(Server.MapPath("../") + "UploadedFiles\\ManagementImage\\" + strOldBSmallImage.ToString()); } String strPath = Server.MapPath("../") + "UploadedFiles/ManagementImage"; flBSmallImage.PostedFile.SaveAs(strPath + "/" + strBSmallImage); } [/ICODE] For viewing the Image, bind the Datgrid in backend and in aspx …

Member Avatar for sebastian3
0
232
Member Avatar for themailsian

Cant comment without viewing the Connect() function. Check whether the function is returning where u have given the Return 1 statement without calling the finally block. You can check whether any Datareaders remains unclosed.

Member Avatar for ericstenson
0
298
Member Avatar for anoop_love007

Dear Buddy, building a Media Player is quite a difficult task. You can play the MediaFile in Windows/Real Media Players thats ok. You can take this : [url]http://steveorr.net/articles/StreamingMedia.aspx[/url]

Member Avatar for sebastian3
0
36
Member Avatar for DATABASE

I think datatype conversion problem. Try this : [ICODE]cost1 = Decimal.Parse(Convert.ToString(ddlProducts.SelectedItem.Value))[/ICODE] or [ICODE]cost1 = Decimal.Parse(ddlProducts.SelectedItem.Text)[/ICODE]

Member Avatar for sebastian3
0
88
Member Avatar for sebastian3

Hi all, i m having the following problem. I have a Datagrid within Datalist. I m populating the Datagrid in Datalist ItemDataBound, no problems with that. But in the Datagrid RowdataBound i cant access the Datagrid directly, as because the Datagrid is within Datalist. Morover i cant do findcontrol because …

0
56
Member Avatar for sireesha.c
Member Avatar for sebastian3
0
108
Member Avatar for sankar62

It needs to use third party websites which allow to send sms by paying. Otherwise by coding u have to link a GSM modem to your server. And sending sms by webservices are restricted to particular networks of the country not to all mobile networks u can send. Try this …

Member Avatar for sebastian3
0
23
Member Avatar for abhay_pundir

Try this link : [url]http://www.w3schools.com/dotnetmobile/default.asp[/url]

Member Avatar for sebastian3
0
82
Member Avatar for sapamtiken

Try this code : Its in C# / Convert it into VB [ICODE] using System.Net.Mail; try { String strFromAddress ="[email protected]"; String strToAddress ="[email protected]"; String strSubject = " FeedBack "; String strMessageBody = ""; String strMailHostIP = "localhost"; strSubject = "Test "; strMessageBody = strMessageBody + " Dear Sir,\n"; strMessageBody = …

Member Avatar for sebastian3
0
120
Member Avatar for ABDUL HAYEE

I think the problem might be in converting Converting to String [ICODE]Dim Conn As String = Convert.ToString(ConfigurationManager.AppSettings["xyz"]) Dim objConnection As New SqlConnection(Conn) objConnectiopn.Open()[/ICODE] It should work. If it doesn't then check your connection string properties.

Member Avatar for sierrainfo
0
64
Member Avatar for u4umang2001

I think there is no ready made solution. Try this link [url]http://www.aspnettutorials.com/tutorials/advanced/cut-string-csharp.aspx[/url]

Member Avatar for sebastian3
0
75

The End.