No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
18 Posted Topics
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.
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 …
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 …
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 …
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.
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 …
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.
go ahead and mark this post as solved.
If the applicaion is a web applicaion check to confirm that you are rebinding to the checkboxlist at every postback.
please post your code.
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 …
The scope of the struct is private therefore you cannot access its' fields in another class. Write public struct card instead.
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 …
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 = …
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.
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.
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.
For you to send an sms through your application website you will need a gateway (that exposed an API) through which send your message
The End.
ema005