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 #2K

18 Posted Topics

Member Avatar for nivasmaran

You can use Css in your ASP.Net by using either inline css or css file. If you need help you can be more explicit on the challenge you are having.

Member Avatar for Sodabread
0
83
Member Avatar for culebrin

I once had a similar challenge. The TextBox is not aware of the change you made because it is a server control and the change was not made on the server but on the client side.I Corrected the situation by changing my control to an html control. I hope this …

Member Avatar for ja3_bhende
0
2K
Member Avatar for ema005

I built a window control as activex and i intend using it on the web page (i.e aspx page), but is not displaying on my browser. I added the activex to the page by inserting [icode]<object id="mycontrol" classid="ValupayActivex.dll#ValupayActivex.FileUplodX"></object>[/icode] into my html page. I had also added my project url to …

0
55
Member Avatar for shakatra

This error happens because the .\sqlexpress in your connection specified that the database engine you are trying to connect to resides on the local machine from where your application is runing. change the dot to the name of the machine where the database resides and make sure you enable remote …

Member Avatar for shakatra
0
103
Member Avatar for akkkk

In addition to snake reply, you need to instantiate the class in the file where you want to use the method like this [icode] string_split split=new string_split(inputstring) [/icode] because this method happen to be the constructor.

Member Avatar for akkkk
0
5K
Member Avatar for ema005

Hi all, I have a CheckBox in a datagrid called DataFinAdjust. The Autopostback properties of the checkbox is set to true. At each post back i want to be able to do an update using other columns of the datagrid as unique identifiers. The challenge i have is that the …

Member Avatar for ema005
0
97
Member Avatar for S2009

I have just run your code using [icode] Server.Transfer [/icode] and [icode]Response.Redirect [/icode] both worked well. The only thing you need to do is to write your url without space as follows: [code] Server.Transfer("Default2.aspx?name=roseline&password=pass@123");[/code] or [code] Response.Redirect("Default2.aspx?name=roseline&password=pass@123"); [/code] If this is helpful please mark this post as solved.

Member Avatar for ebookfinder
0
515
Member Avatar for 666kennedy
Member Avatar for Nuela

If the applicaion is a web applicaion check to confirm that you are rebinding to the checkboxlist at every postback.

Member Avatar for ema005
0
127
Member Avatar for pete08
Member Avatar for ginger182

If you know VB.net, then C# become simpler for you to learn. Some of the things you are used to doing in VB using the .Net frame work are still available in c# only the syntaxes are different. I have converted your code to C# for you so that you …

Member Avatar for dnanetwork
0
105
Member Avatar for nccsbim071

The scope of the struct is private therefore you cannot access its' fields in another class. Write public struct card instead.

Member Avatar for nccsbim071
0
266
Member Avatar for laghaterohan

When binding to the grid try and have a unique identifier on the grid. For instance let us say that on the grid column 4 contains the identifier and column 1 contains the checkbox. The follow code should be sufficient. [code=C#] private void cmddelete_Click(object sender, EventArgs e) { string data …

Member Avatar for laghaterohan
0
351
Member Avatar for Derice

User is a keyword in sql database make use of another variable or put squre bracket around it like this [User]. Change the Code as follows: [code] Private Function ValidateLogin(ByVal username As String, ByVal password As String) As Boolean Dim boolReturn As Boolean = False Dim conStr As SqlConnection = …

Member Avatar for ema005
0
350
Member Avatar for pranav_jog

Check the Code behind file of the Aspx file to see if the Autowireup attribute is set to true. If it is true change it to false. I propose this solution bearing in mind that you are using vs below 2005.

Member Avatar for greeny_1984
0
2K
Member Avatar for mdubose

Check to see that the connection string in the web.config is correct. From what i can see from your post sever name and database are not specify and that will definitely raise an error.

Member Avatar for ema005
0
244
Member Avatar for harcaype

Before calling the update() method of the data Adapter call the acceptchanges of the datatable type dTable.AcceptChanges(); i.e [code=C#] myConn.Open(); dTable = new DataTable("Records"); dTable = this.ds.Tables[0]; int i = this.iRowIndex; dTable.Rows[i].Delete(); dTable.AcceptChanges(); this.da.Update(dTable); [/code] hope this help.

Member Avatar for harcaype
0
164
Member Avatar for Dilan123

For you to send an sms through your application website you will need a gateway (that exposed an API) through which send your message

Member Avatar for ema005
0
66

The End.